Home
last modified time | relevance | path

Searched refs:crypto_onetimeauth_KEYBYTES (Results 1 – 25 of 43) sorted by relevance

12

/dports/multimedia/gstreamer1-plugins-rust/gst-plugins-rs-d0466b3eee114207f851b37cae0015c0e718f021/cargo-crates/libsodium-sys-0.2.7/libsodium/src/libsodium/crypto_onetimeauth/
H A Dcrypto_onetimeauth.c20 return crypto_onetimeauth_KEYBYTES; in crypto_onetimeauth_keybytes()
68 void crypto_onetimeauth_keygen(unsigned char k[crypto_onetimeauth_KEYBYTES]) in crypto_onetimeauth_keygen() argument
70 randombytes_buf(k, crypto_onetimeauth_KEYBYTES); in crypto_onetimeauth_keygen()
/dports/security/libsodium/libsodium-1.0.18/src/libsodium/crypto_onetimeauth/
H A Dcrypto_onetimeauth.c20 return crypto_onetimeauth_KEYBYTES; in crypto_onetimeauth_keybytes()
68 void crypto_onetimeauth_keygen(unsigned char k[crypto_onetimeauth_KEYBYTES]) in crypto_onetimeauth_keygen() argument
70 randombytes_buf(k, crypto_onetimeauth_KEYBYTES); in crypto_onetimeauth_keygen()
/dports/security/py-pynacl/PyNaCl-1.4.0/src/libsodium/src/libsodium/crypto_onetimeauth/
H A Dcrypto_onetimeauth.c20 return crypto_onetimeauth_KEYBYTES;
68 void crypto_onetimeauth_keygen(unsigned char k[crypto_onetimeauth_KEYBYTES])
70 randombytes_buf(k, crypto_onetimeauth_KEYBYTES);
/dports/devel/pijul/pijul-1.0.0.a55/cargo-crates/libsodium-sys-0.2.7/libsodium/src/libsodium/crypto_onetimeauth/
H A Dcrypto_onetimeauth.c20 return crypto_onetimeauth_KEYBYTES; in crypto_onetimeauth_keybytes()
68 void crypto_onetimeauth_keygen(unsigned char k[crypto_onetimeauth_KEYBYTES]) in crypto_onetimeauth_keygen() argument
70 randombytes_buf(k, crypto_onetimeauth_KEYBYTES); in crypto_onetimeauth_keygen()
/dports/net/cjdns/cjdns-cjdns-v21.1/node_build/dependencies/cnacl/crypto_onetimeauth/
H A Dmeasure.c17 const long long sizes[] = { crypto_onetimeauth_BYTES, crypto_onetimeauth_KEYBYTES };
36 k = alignedcalloc(crypto_onetimeauth_KEYBYTES); in allocate()
52 randombytes(k,crypto_onetimeauth_KEYBYTES); in measure()
H A Dtry.c33 k = alignedcalloc(crypto_onetimeauth_KEYBYTES); in allocate()
36 k2 = alignedcalloc(crypto_onetimeauth_KEYBYTES + crypto_onetimeauth_BYTES); in allocate()
58 long long klen = crypto_onetimeauth_KEYBYTES; in checksum_compute()
H A Dwrapper-auth.cpp7 if (k.size() != crypto_onetimeauth_KEYBYTES) throw "incorrect key length"; in crypto_onetimeauth()
H A Dwrapper-verify.cpp7 if (k.size() != crypto_onetimeauth_KEYBYTES) throw "incorrect key length"; in crypto_onetimeauth_verify()
/dports/multimedia/gstreamer1-plugins-rust/gst-plugins-rs-d0466b3eee114207f851b37cae0015c0e718f021/cargo-crates/libsodium-sys-0.2.7/libsodium/src/libsodium/include/sodium/
H A Dcrypto_onetimeauth.h25 #define crypto_onetimeauth_KEYBYTES crypto_onetimeauth_poly1305_KEYBYTES macro
58 void crypto_onetimeauth_keygen(unsigned char k[crypto_onetimeauth_KEYBYTES])
/dports/security/libsodium/libsodium-1.0.18/src/libsodium/include/sodium/
H A Dcrypto_onetimeauth.h25 #define crypto_onetimeauth_KEYBYTES crypto_onetimeauth_poly1305_KEYBYTES macro
58 void crypto_onetimeauth_keygen(unsigned char k[crypto_onetimeauth_KEYBYTES])
/dports/security/py-pynacl/PyNaCl-1.4.0/src/libsodium/src/libsodium/include/sodium/
H A Dcrypto_onetimeauth.h25 #define crypto_onetimeauth_KEYBYTES crypto_onetimeauth_poly1305_KEYBYTES macro
58 void crypto_onetimeauth_keygen(unsigned char k[crypto_onetimeauth_KEYBYTES])
/dports/devel/pijul/pijul-1.0.0.a55/cargo-crates/libsodium-sys-0.2.7/libsodium/src/libsodium/include/sodium/
H A Dcrypto_onetimeauth.h25 #define crypto_onetimeauth_KEYBYTES crypto_onetimeauth_poly1305_KEYBYTES macro
58 void crypto_onetimeauth_keygen(unsigned char k[crypto_onetimeauth_KEYBYTES])
/dports/security/py-libnacl/libnacl-1.6.1/tests/unit/
H A Dtest_auth_verify.py35 key1 = libnacl.randombytes(libnacl.crypto_onetimeauth_KEYBYTES)
36 key2 = libnacl.randombytes(libnacl.crypto_onetimeauth_KEYBYTES)
/dports/dns/encrypted-dns-server/encrypted-dns-server-0.9.1/cargo-crates/libsodium-sys-stable-1.19.19/tests/crypto/
H A Dcrypto_onetimeauth.rs13 assert!(unsafe { crypto_onetimeauth_keybytes() } == crypto_onetimeauth_KEYBYTES as usize) in test_crypto_onetimeauth_keybytes()
/dports/devel/pijul/pijul-1.0.0.a55/cargo-crates/libsodium-sys-0.2.7/tests/crypto/
H A Dcrypto_onetimeauth.rs13 assert!(unsafe { crypto_onetimeauth_keybytes() } == crypto_onetimeauth_KEYBYTES as usize) in test_crypto_onetimeauth_keybytes()
/dports/multimedia/gstreamer1-plugins-rust/gst-plugins-rs-d0466b3eee114207f851b37cae0015c0e718f021/cargo-crates/libsodium-sys-0.2.7/tests/crypto/
H A Dcrypto_onetimeauth.rs13 assert!(unsafe { crypto_onetimeauth_keybytes() } == crypto_onetimeauth_KEYBYTES as usize) in test_crypto_onetimeauth_keybytes()
/dports/net/cjdns/cjdns-cjdns-v21.1/node_build/dependencies/cnacl/
H A DMACROS24 crypto_onetimeauth_KEYBYTES
/dports/security/libsodium/libsodium-1.0.18/test/default/
H A Dkeygen.c22 { crypto_onetimeauth_keygen, crypto_onetimeauth_KEYBYTES }, in tv_keygen()
/dports/security/py-pynacl/PyNaCl-1.4.0/src/libsodium/test/default/
H A Dkeygen.c22 { crypto_onetimeauth_keygen, crypto_onetimeauth_KEYBYTES }, in tv_keygen()
/dports/devel/pijul/pijul-1.0.0.a55/cargo-crates/libsodium-sys-0.2.7/libsodium/test/default/
H A Dkeygen.c22 { crypto_onetimeauth_keygen, crypto_onetimeauth_KEYBYTES }, in tv_keygen()
/dports/multimedia/gstreamer1-plugins-rust/gst-plugins-rs-d0466b3eee114207f851b37cae0015c0e718f021/cargo-crates/libsodium-sys-0.2.7/libsodium/test/default/
H A Dkeygen.c22 { crypto_onetimeauth_keygen, crypto_onetimeauth_KEYBYTES }, in tv_keygen()
/dports/security/cryptopp/cryptopp-8.6.0/
H A Dnaclite.h85 CRYPTOPP_CONSTANT(crypto_onetimeauth_KEYBYTES = 32);
/dports/emulators/citra/citra-ac98458e0/externals/cryptopp/cryptopp/
H A Dnaclite.h85 CRYPTOPP_CONSTANT(crypto_onetimeauth_KEYBYTES = 32);
/dports/emulators/citra-qt5/citra-ac98458e0/externals/cryptopp/cryptopp/
H A Dnaclite.h85 CRYPTOPP_CONSTANT(crypto_onetimeauth_KEYBYTES = 32);
/dports/sysutils/fusefs-securefs/securefs-0.12.0/external/cryptopp/
H A Dnaclite.h85 CRYPTOPP_CONSTANT(crypto_onetimeauth_KEYBYTES = 32);

12