/
usr
/
include
/
sodium
/
/usr/include/sodium
mkdir
upload
Name
Size
Mode
Actions
core.h
391
0644
edit
dl
rm
crypto_aead_aes256gcm.h
7980
0644
edit
dl
rm
crypto_aead_chacha20poly1305.h
8782
0644
edit
dl
rm
crypto_aead_xchacha20poly1305.h
4848
0644
edit
dl
rm
crypto_auth.h
1143
0644
edit
dl
rm
crypto_auth_hmacsha256.h
2136
0644
edit
dl
rm
crypto_auth_hmacsha512.h
2123
0644
edit
dl
rm
crypto_auth_hmacsha512256.h
2133
0644
edit
dl
rm
crypto_box.h
6838
0644
edit
dl
rm
crypto_box_curve25519xchacha20poly1305.h
7957
0644
edit
dl
rm
crypto_box_curve25519xsalsa20poly1305.h
4697
0644
edit
dl
rm
crypto_core_ed25519.h
2898
0644
edit
dl
rm
crypto_core_hchacha20.h
816
0644
edit
dl
rm
crypto_core_hsalsa20.h
804
0644
edit
dl
rm
crypto_core_ristretto255.h
3140
0644
edit
dl
rm
crypto_core_salsa20.h
792
0644
edit
dl
rm
crypto_core_salsa208.h
968
0644
edit
dl
rm
crypto_core_salsa2012.h
816
0644
edit
dl
rm
crypto_generichash.h
2495
0644
edit
dl
rm
crypto_generichash_blake2b.h
3963
0644
edit
dl
rm
crypto_hash.h
901
0644
edit
dl
rm
crypto_hash_sha256.h
1492
0644
edit
dl
rm
crypto_hash_sha512.h
1496
0644
edit
dl
rm
crypto_kdf.h
1308
0644
edit
dl
rm
crypto_kdf_blake2b.h
1071
0644
edit
dl
rm
crypto_kx.h
2201
0644
edit
dl
rm
crypto_onetimeauth.h
1912
0644
edit
dl
rm
crypto_onetimeauth_poly1305.h
2198
0644
edit
dl
rm
crypto_pwhash.h
4966
0644
edit
dl
rm
crypto_pwhash_argon2i.h
3919
0644
edit
dl
rm
crypto_pwhash_argon2id.h
3981
0644
edit
dl
rm
crypto_pwhash_scryptsalsa208sha256.h
4688
0644
edit
dl
rm
crypto_scalarmult.h
1184
0644
edit
dl
rm
crypto_scalarmult_curve25519.h
1098
0644
edit
dl
rm
crypto_scalarmult_ed25519.h
1406
0644
edit
dl
rm
crypto_scalarmult_ristretto255.h
1119
0644
edit
dl
rm
crypto_secretbox.h
3316
0644
edit
dl
rm
crypto_secretbox_xchacha20poly1305.h
2853
0644
edit
dl
rm
crypto_secretbox_xsalsa20poly1305.h
2419
0644
edit
dl
rm
crypto_secretstream_xchacha20poly1305.h
3832
0644
edit
dl
rm
crypto_shorthash.h
960
0644
edit
dl
rm
crypto_shorthash_siphash24.h
1236
0644
edit
dl
rm
crypto_sign.h
3353
0644
edit
dl
rm
crypto_sign_ed25519.h
4341
0644
edit
dl
rm
crypto_sign_edwards25519sha512batch.h
2053
0644
edit
dl
rm
crypto_stream.h
1606
0644
edit
dl
rm
crypto_stream_chacha20.h
3672
0644
edit
dl
rm
crypto_stream_salsa20.h
1836
0644
edit
dl
rm
crypto_stream_salsa208.h
1731
0644
edit
dl
rm
crypto_stream_salsa2012.h
1532
0644
edit
dl
rm
crypto_stream_xchacha20.h
1875
0644
edit
dl
rm
crypto_stream_xsalsa20.h
1856
0644
edit
dl
rm
crypto_verify_16.h
419
0644
edit
dl
rm
crypto_verify_32.h
419
0644
edit
dl
rm
crypto_verify_64.h
419
0644
edit
dl
rm
export.h
1347
0644
edit
dl
rm
randombytes.h
1847
0644
edit
dl
rm
randombytes_internal_random.h
427
0644
edit
dl
rm
randombytes_sysrandom.h
282
0644
edit
dl
rm
runtime.h
889
0644
edit
dl
rm
utils.h
6149
0644
edit
dl
rm
version.h
509
0644
edit
dl
rm
Edit:
/usr/include/sodium/crypto_pwhash_argon2id.h
(3981B)
#ifndef crypto_pwhash_argon2id_H #define crypto_pwhash_argon2id_H #include <limits.h> #include <stddef.h> #include <stdint.h> #include "export.h" #ifdef __cplusplus # ifdef __GNUC__ # pragma GCC diagnostic ignored "-Wlong-long" # endif extern "C" { #endif #define crypto_pwhash_argon2id_ALG_ARGON2ID13 2 SODIUM_EXPORT int crypto_pwhash_argon2id_alg_argon2id13(void); #define crypto_pwhash_argon2id_BYTES_MIN 16U SODIUM_EXPORT size_t crypto_pwhash_argon2id_bytes_min(void); #define crypto_pwhash_argon2id_BYTES_MAX SODIUM_MIN(SODIUM_SIZE_MAX, 4294967295U) SODIUM_EXPORT size_t crypto_pwhash_argon2id_bytes_max(void); #define crypto_pwhash_argon2id_PASSWD_MIN 0U SODIUM_EXPORT size_t crypto_pwhash_argon2id_passwd_min(void); #define crypto_pwhash_argon2id_PASSWD_MAX 4294967295U SODIUM_EXPORT size_t crypto_pwhash_argon2id_passwd_max(void); #define crypto_pwhash_argon2id_SALTBYTES 16U SODIUM_EXPORT size_t crypto_pwhash_argon2id_saltbytes(void); #define crypto_pwhash_argon2id_STRBYTES 128U SODIUM_EXPORT size_t crypto_pwhash_argon2id_strbytes(void); #define crypto_pwhash_argon2id_STRPREFIX "$argon2id$" SODIUM_EXPORT const char *crypto_pwhash_argon2id_strprefix(void); #define crypto_pwhash_argon2id_OPSLIMIT_MIN 1U SODIUM_EXPORT size_t crypto_pwhash_argon2id_opslimit_min(void); #define crypto_pwhash_argon2id_OPSLIMIT_MAX 4294967295U SODIUM_EXPORT size_t crypto_pwhash_argon2id_opslimit_max(void); #define crypto_pwhash_argon2id_MEMLIMIT_MIN 8192U SODIUM_EXPORT size_t crypto_pwhash_argon2id_memlimit_min(void); #define crypto_pwhash_argon2id_MEMLIMIT_MAX \ ((SIZE_MAX >= 4398046510080U) ? 4398046510080U : (SIZE_MAX >= 2147483648U) ? 2147483648U : 32768U) SODIUM_EXPORT size_t crypto_pwhash_argon2id_memlimit_max(void); #define crypto_pwhash_argon2id_OPSLIMIT_INTERACTIVE 2U SODIUM_EXPORT size_t crypto_pwhash_argon2id_opslimit_interactive(void); #define crypto_pwhash_argon2id_MEMLIMIT_INTERACTIVE 67108864U SODIUM_EXPORT size_t crypto_pwhash_argon2id_memlimit_interactive(void); #define crypto_pwhash_argon2id_OPSLIMIT_MODERATE 3U SODIUM_EXPORT size_t crypto_pwhash_argon2id_opslimit_moderate(void); #define crypto_pwhash_argon2id_MEMLIMIT_MODERATE 268435456U SODIUM_EXPORT size_t crypto_pwhash_argon2id_memlimit_moderate(void); #define crypto_pwhash_argon2id_OPSLIMIT_SENSITIVE 4U SODIUM_EXPORT size_t crypto_pwhash_argon2id_opslimit_sensitive(void); #define crypto_pwhash_argon2id_MEMLIMIT_SENSITIVE 1073741824U SODIUM_EXPORT size_t crypto_pwhash_argon2id_memlimit_sensitive(void); SODIUM_EXPORT int crypto_pwhash_argon2id(unsigned char * const out, unsigned long long outlen, const char * const passwd, unsigned long long passwdlen, const unsigned char * const salt, unsigned long long opslimit, size_t memlimit, int alg) __attribute__ ((warn_unused_result)) __attribute__ ((nonnull)); SODIUM_EXPORT int crypto_pwhash_argon2id_str(char out[crypto_pwhash_argon2id_STRBYTES], const char * const passwd, unsigned long long passwdlen, unsigned long long opslimit, size_t memlimit) __attribute__ ((warn_unused_result)) __attribute__ ((nonnull)); SODIUM_EXPORT int crypto_pwhash_argon2id_str_verify(const char str[crypto_pwhash_argon2id_STRBYTES], const char * const passwd, unsigned long long passwdlen) __attribute__ ((warn_unused_result)) __attribute__ ((nonnull)); SODIUM_EXPORT int crypto_pwhash_argon2id_str_needs_rehash(const char str[crypto_pwhash_argon2id_STRBYTES], unsigned long long opslimit, size_t memlimit) __attribute__ ((warn_unused_result)) __attribute__ ((nonnull)); #ifdef __cplusplus } #endif #endif
Save
cmd:
run