HomeSort by: relevance | last modified time | path
    Searched defs:nonce (Results 1 - 25 of 149) sorted by relevancy

1 2 3 4 5 6

  /src/sys/external/isc/libsodium/dist/test/default/
secretbox.c 11 static unsigned char nonce[24] = { 0x69, 0x69, 0x6e, 0xe9, 0x55, 0xb6, variable
41 crypto_secretbox(c, m, 163, nonce, firstkey);
50 crypto_secretbox(c, c, 163, nonce, firstkey);
58 assert(crypto_secretbox(c, c, 31, nonce, firstkey) == -1);
59 assert(crypto_secretbox(c, c, 12, nonce, firstkey) == -1);
60 assert(crypto_secretbox(c, c, 1, nonce, firstkey) == -1);
61 assert(crypto_secretbox(c, c, 0, nonce, firstkey) == -1);
secretbox2.c 11 static unsigned char nonce[24] = { 0x69, 0x69, 0x6e, 0xe9, 0x55, 0xb6, variable
41 if (crypto_secretbox_open(m, c, 163, nonce, firstkey) == 0) {
49 assert(crypto_secretbox_open(m, c, 31, nonce, firstkey) == -1);
50 assert(crypto_secretbox_open(m, c, 16, nonce, firstkey) == -1);
51 assert(crypto_secretbox_open(m, c, 1, nonce, firstkey) == -1);
52 assert(crypto_secretbox_open(m, c, 0, nonce, firstkey) == -1);
stream3.c 11 static unsigned char nonce[24] = { 0x69, 0x69, 0x6e, 0xe9, 0x55, 0xb6, variable
23 crypto_stream(rs, 32, nonce, firstkey);
stream4.c 11 static unsigned char nonce[24] = { 0x69, 0x69, 0x6e, 0xe9, 0x55, 0xb6, variable
40 crypto_stream_xor(c, m, 163, nonce, firstkey);
box_easy.c 17 static unsigned char nonce[24] = { 0x69, 0x69, 0x6e, 0xe9, 0x55, 0xb6, variable
44 ret = crypto_box_easy(c, m, 131, nonce, bobpk, alicesk);
53 ret = crypto_box_easy(c, c, 0, nonce, bobpk, alicesk);
60 crypto_box_open_easy(c, c, crypto_box_MACBYTES, nonce, bobpk, alicesk);
67 ret = crypto_box_open_easy(c, c, crypto_box_MACBYTES, nonce, bobpk, alicesk);
secretbox_easy.c 11 static unsigned char nonce[24] = { 0x69, 0x69, 0x6e, 0xe9, 0x55, 0xb6, variable
41 crypto_secretbox_easy(c, m, 131, nonce, firstkey);
47 crypto_secretbox_detached(c, mac, m, 131, nonce, firstkey);
59 crypto_secretbox_easy(c, c + 1, 131, nonce, firstkey);
66 crypto_secretbox_easy(c + 1, c, 131, nonce, firstkey);
73 crypto_secretbox_easy(c, c, 131, nonce, firstkey);
79 assert(crypto_secretbox_easy(c, m, 0, nonce, firstkey) == 0);
83 crypto_secretbox_easy(c, c, 0, nonce, firstkey);
88 if (crypto_secretbox_open_easy(c, c, crypto_secretbox_MACBYTES, nonce,
97 if (crypto_secretbox_open_easy(c, c, crypto_secretbox_MACBYTES, nonce,
    [all...]
secretbox_easy2.c 11 unsigned char *nonce; local
21 nonce = (unsigned char *) sodium_malloc(crypto_secretbox_NONCEBYTES);
26 randombytes_buf(nonce, crypto_secretbox_NONCEBYTES);
27 crypto_secretbox_easy(c, m, (unsigned long long) mlen, nonce, k);
29 m2, c, (unsigned long long) mlen + crypto_secretbox_MACBYTES, nonce,
36 if (crypto_secretbox_open_easy(m2, c, (unsigned long long) i, nonce,
42 crypto_secretbox_detached(c, mac, m, (unsigned long long) mlen, nonce, k);
44 nonce, k) != 0) {
48 nonce, k) != 0) {
54 crypto_secretbox_easy(c, c, (unsigned long long) mlen, nonce, k)
    [all...]
stream.c 11 static unsigned char nonce[24] = { 0x69, 0x69, 0x6e, 0xe9, 0x55, 0xb6, variable
27 crypto_stream(output, sizeof output, nonce, firstkey);
34 crypto_stream_xsalsa20_xor_ic(output, output, 4000, nonce, 0U, firstkey);
38 crypto_stream_xsalsa20_xor_ic(output, output, 4000, nonce, 1U, firstkey);
45 crypto_stream(output, (int) (i & 0xff), nonce, firstkey);
51 crypto_stream_xsalsa20_xor_ic(output, output, 192, nonce,
box.c 23 static const unsigned char nonce[24] = { 0x69, 0x69, 0x6e, 0xe9, 0x55, 0xb6, variable
55 ret = crypto_box(c, m, 163, nonce, bobpk, alicesk);
64 ret = crypto_box(c, m, 163, nonce, small_order_p, alicesk);
71 crypto_box_afternm(c, m, 163, nonce, k);
box2.c 23 static unsigned char nonce[24] = { 0x69, 0x69, 0x6e, 0xe9, 0x55, 0xb6, variable
55 if (crypto_box_open(m, c, 163, nonce, alicepk, bobsk) == 0) {
63 ret = crypto_box_open(m, c, 163, nonce, small_order_p, bobsk);
71 if (crypto_box_open_afternm(m, c, 163, nonce, k) == 0) {
chacha20.c 23 unsigned char nonce[crypto_stream_chacha20_NONCEBYTES]; local
35 sodium_hex2bin(nonce, sizeof nonce, tests[i].nonce_hex,
37 crypto_stream_chacha20(out, sizeof out, nonce, key);
42 crypto_stream_chacha20_xor(part, out, plen, nonce, key);
52 crypto_stream_chacha20(out, plen, nonce, key);
57 crypto_stream_chacha20(out, sizeof out, nonce, key);
61 assert(crypto_stream_chacha20(out, 0U, nonce, key) == 0);
62 assert(crypto_stream_chacha20_xor(out, out, 0U, nonce, key) == 0);
63 assert(crypto_stream_chacha20_xor(out, out, 0U, nonce, key) == 0)
110 unsigned char nonce[crypto_stream_chacha20_IETF_NONCEBYTES]; local
    [all...]
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_box/
crypto_box_seal.c 10 _crypto_box_seal_nonce(unsigned char *nonce,
18 crypto_generichash_final(&st, nonce, crypto_box_NONCEBYTES);
27 unsigned char nonce[crypto_box_NONCEBYTES]; local
36 _crypto_box_seal_nonce(nonce, epk, pk);
38 nonce, pk, esk);
41 sodium_memzero(nonce, sizeof nonce);
51 unsigned char nonce[crypto_box_NONCEBYTES]; local
56 _crypto_box_seal_nonce(nonce, c, pk);
61 nonce, c, sk)
    [all...]
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_box/curve25519xchacha20poly1305/
box_seal_curve25519xchacha20poly1305.c 10 _crypto_box_curve25519xchacha20poly1305_seal_nonce(unsigned char *nonce,
22 crypto_generichash_final(&st, nonce,
33 unsigned char nonce[crypto_box_curve25519xchacha20poly1305_NONCEBYTES]; local
42 _crypto_box_curve25519xchacha20poly1305_seal_nonce(nonce, epk, pk);
45 nonce, pk, esk);
48 sodium_memzero(nonce, sizeof nonce);
59 unsigned char nonce[crypto_box_curve25519xchacha20poly1305_NONCEBYTES]; local
64 _crypto_box_curve25519xchacha20poly1305_seal_nonce(nonce, c, pk);
72 nonce, c, sk)
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/crypto/poly1305/
poly1305_local.h 13 const unsigned int nonce[4]);
20 unsigned int nonce[4]; member in struct:poly1305_context
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_sign/ed25519/ref10/
sign.c 71 unsigned char nonce[64]; local
79 _crypto_sign_ed25519_synthetic_r_hv(&hs, nonce, az);
86 crypto_hash_sha512_final(&hs, nonce);
90 sc25519_reduce(nonce);
91 ge25519_scalarmult_base(&R, nonce);
101 sc25519_muladd(sig + 32, hram, az, nonce);
104 sodium_memzero(nonce, sizeof nonce);
  /src/sys/external/isc/libsodium/dist/src/libsodium/include/sodium/
crypto_secretstream_xchacha20poly1305.h 57 unsigned char nonce[crypto_stream_chacha20_ietf_NONCEBYTES]; member in struct:crypto_secretstream_xchacha20poly1305_state
  /src/crypto/external/apache2/openssl/dist/include/crypto/
poly1305.h 25 const unsigned int nonce[4]);
32 unsigned int nonce[4]; member in struct:poly1305_context
  /src/crypto/external/apache2/openssl/dist/providers/implementations/ciphers/
cipher_aes_ccm.h 36 } nonce; member in struct:prov_aes_ccm_ctx_st::__anon483::__anon485
  /src/crypto/external/bsd/openssl/dist/include/crypto/
poly1305.h 25 const unsigned int nonce[4]);
32 unsigned int nonce[4]; member in struct:poly1305_context
  /src/crypto/external/bsd/openssl/dist/providers/implementations/ciphers/
cipher_aes_ccm.h 36 } nonce; member in struct:prov_aes_ccm_ctx_st::__anon1552::__anon1554
  /src/crypto/external/cpl/trousers/dist/src/include/daa/
verifier.h 27 BYTE *nonce; member in struct:__anon2306
  /src/crypto/external/cpl/trousers/dist/src/tcs/rpc/tcstp/
rpc_tick.c 74 TPM_NONCE nonce; local
90 if (getData(TCSD_PACKET_TYPE_NONCE, 2, &nonce, 0, &data->comm))
101 result = TCSP_TickStampBlob_Internal(hContext, hKey, &nonce, &digest, pAuth, &sigSize, &sig,
  /src/crypto/external/cpl/trousers/dist/src/tcs/
tcs_caps.c 103 TCPA_NONCE nonce; local
114 result = TCSP_OIAP_Internal(InternalContext, &(handles[i]), &nonce);
  /src/crypto/external/cpl/trousers/dist/src/tspi/
tspi_maint.c 147 TCPA_NONCE nonce; local
157 (BYTE **)nonce.nonce)))
160 if (pValidationData->ulExternalDataLength < sizeof(nonce.nonce))
163 memcpy(&nonce.nonce, pValidationData->rgbExternalData, sizeof(nonce.nonce));
169 if ((result = TCS_API(tspContext)->LoadManuMaintPub(tspContext, nonce, pubBlobSize, pubBlob
214 TCPA_NONCE nonce; local
    [all...]
  /src/sys/crypto/chacha/
chacha_selftest.c 173 static const uint8_t nonce[24] = {
351 (*ci->ci_xchacha_stream)(c, 608, 0, nonce, k, 20);
364 (*ci->ci_xchacha_stream)(c, 607, 0, nonce, k, 20);
377 (*ci->ci_xchacha_stream)(c, 543, 0, nonce, k, 20);
390 (*ci->ci_xchacha_stream)(c, 511, 0, nonce, k, 20);
403 (*ci->ci_xchacha_stream)(c, 63, 0, nonce, k, 20);
416 (*ci->ci_xchacha_stream_xor)(c, p, 608, 0, nonce, k, 20);
424 (*ci->ci_xchacha_stream_xor)(c, p, 607, 0, nonce, k, 20);
432 (*ci->ci_xchacha_stream_xor)(c, p, 543, 0, nonce, k, 20);
440 (*ci->ci_xchacha_stream_xor)(c, p, 511, 0, nonce, k, 20)
168 static const uint8_t nonce[24] = { local
    [all...]

Completed in 48 milliseconds

1 2 3 4 5 6