/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/ |
D | AEADParameters.java | 9 private byte[] nonce; field in AEADParameters 20 public AEADParameters(KeyParameter key, int macSize, byte[] nonce) in AEADParameters() 33 public AEADParameters(KeyParameter key, int macSize, byte[] nonce, byte[] associatedText) in AEADParameters()
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/cms/ |
D | GCMParameters.java | 25 private byte[] nonce; field in GCMParameters 72 byte[] nonce, in GCMParameters()
|
/external/jetty/src/java/org/eclipse/jetty/security/authentication/ |
D | DigestAuthenticator.java | 73 public Nonce(String nonce, long ts, int size) in Nonce() 263 Nonce nonce; in newNonce() local 288 Nonce nonce=_nonceQueue.peek(); in checkNonce() local 326 String nonce = ""; field in DigestAuthenticator.Digest
|
/external/wpa_supplicant_8/src/crypto/ |
D | aes-ccm.c | 28 static void aes_ccm_auth_start(void *aes, size_t M, size_t L, const u8 *nonce, in aes_ccm_auth_start() 84 static void aes_ccm_encr_start(size_t L, const u8 *nonce, u8 *a) in aes_ccm_encr_start() 148 int aes_ccm_ae(const u8 *key, size_t key_len, const u8 *nonce, in aes_ccm_ae() 178 int aes_ccm_ad(const u8 *key, size_t key_len, const u8 *nonce, in aes_ccm_ad()
|
D | aes-eax.c | 28 int aes_128_eax_encrypt(const u8 *key, const u8 *nonce, size_t nonce_len, in aes_128_eax_encrypt() 92 int aes_128_eax_decrypt(const u8 *key, const u8 *nonce, size_t nonce_len, in aes_128_eax_decrypt()
|
D | aes-ctr.c | 24 int aes_128_ctr_encrypt(const u8 *key, const u8 *nonce, in aes_128_ctr_encrypt()
|
/external/google-tv-pairing-protocol/cpp/src/polo/pairing/ |
D | polochallengeresponse.cc | 118 Nonce* nonce = new Nonce(gamma.size() / 2); in ExtractNonce() local 125 const Nonce* nonce = ExtractNonce(gamma); in CheckGamma() local
|
D | pairingsession.h | 161 const Nonce* nonce() const { return nonce_; } in nonce() function
|
/external/google-tv-pairing-protocol/java/src/com/google/polo/pairing/ |
D | PoloChallengeResponse.java | 83 public byte[] getAlpha(byte[] nonce) throws PoloException { in getAlpha() 148 public byte[] getGamma(byte[] nonce) throws PoloException { in getGamma()
|
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/x509/tsp/ |
D | TimeStampReqTest.java | 43 BigInteger nonce = BigInteger.valueOf(1234567890L); in testTimeStampReq() local
|
D | TSTInfoTest.java | 49 BigInteger nonce = BigInteger.valueOf(1234567890L); in testGetEncoded() local
|
D | TimeStampRespTest.java | 64 BigInteger nonce = BigInteger.valueOf(1234567890L); in testGetEncoded() local
|
/external/boringssl/src/crypto/cipher/ |
D | aead.c | 98 size_t max_out_len, const uint8_t *nonce, in EVP_AEAD_CTX_seal() 127 size_t max_out_len, const uint8_t *nonce, in EVP_AEAD_CTX_open()
|
D | e_chacha20poly1305.c | 94 const uint8_t *nonce, size_t nonce_len, in aead_chacha20_poly1305_seal() 148 const uint8_t *nonce, size_t nonce_len, in aead_chacha20_poly1305_open()
|
D | e_rc4.c | 174 const uint8_t *nonce, size_t nonce_len, in aead_rc4_md5_tls_seal() 274 const uint8_t *nonce, size_t nonce_len, in aead_rc4_md5_tls_open()
|
D | e_aes.c | 1103 const uint8_t *nonce, size_t nonce_len, in aead_aes_gcm_seal() 1145 const uint8_t *nonce, size_t nonce_len, in aead_aes_gcm_open() 1282 const uint8_t *nonce, size_t nonce_len, in aead_aes_key_wrap_seal() 1377 const uint8_t *nonce, size_t nonce_len, in aead_aes_key_wrap_open() 1605 const uint8_t *nonce, const uint8_t *ciphertext, in hmac_calculate() 1636 const uint8_t *in, size_t len, const uint8_t *nonce) { in aead_aes_ctr_hmac_sha256_crypt() 1660 const uint8_t *nonce, size_t nonce_len, in aead_aes_ctr_hmac_sha256_seal() 1699 const uint8_t *nonce, size_t nonce_len, in aead_aes_ctr_hmac_sha256_open()
|
/external/boringssl/src/ssl/ |
D | ssl_aead_ctx.c | 174 uint8_t nonce[EVP_AEAD_MAX_NONCE_LENGTH]; in SSL_AEAD_CTX_open() local 217 uint8_t nonce[EVP_AEAD_MAX_NONCE_LENGTH]; in SSL_AEAD_CTX_seal() local
|
/external/boringssl/src/crypto/modes/ |
D | gcm_test.c | 64 const char *nonce; member 316 *nonce = NULL, *ciphertext = NULL, *tag = NULL, *out = NULL; in run_test_case() local
|
/external/srtp/crypto/test/ |
D | stat_driver.c | 46 v128_t nonce; in main() local
|
/external/apache-http/android/src/android/net/http/ |
D | RequestHandle.java | 239 String nonce, in setupDigestAuthResponse() 303 String nonce, in computeDigestAuthResponse() 365 String A1, String A2, String nonce, String QOP, String nc, String cnonce) { in computeDigest()
|
/external/apache-http/src/org/apache/http/impl/auth/ |
D | DigestScheme.java | 269 String nonce = getParameter("nonce"); in createDigest() local 400 String nonce = getParameter("nonce"); in createDigestHeader() local
|
/external/google-tv-pairing-protocol/cpp/tests/polo/pairing/ |
D | pairingsessiontest.cc | 203 Nonce nonce(5, 0x2); in TEST_F() local 233 Nonce nonce(5, 0x2); in TEST_F() local
|
D | polochallengeresponsetest.cc | 98 Nonce nonce; member in polo::pairing::PoloChallengeResponseTest
|
/external/srtp/crypto/cipher/ |
D | cipher.c | 381 v128_t nonce; in cipher_bits_per_second() local
|
/external/tcpdump/ |
D | print-babel.c | 347 u_short nonce, interval; in babel_print_v2() local 361 u_short nonce; in babel_print_v2() local
|