Home
last modified time | relevance | path

Searched defs:iv (Results 1 – 25 of 458) sorted by relevance

12345678910>>...19

/third_party/node/test/fixtures/
Daead-vectors.js4 iv: '583673497131313748307652', plain: 'Hello World!', property
9 iv: '583673497131313748307652', plain: 'Hello World!', property
14 iv: '583673497131313748307652', plain: 'Hello World!', property
19 iv: '36306950306836764a6f4561', plain: 'Hello node.js world!', property
24 iv: '36306950306836764a6f4561', plain: 'Hello node.js world!', property
29 iv: '0e1791e9db3bd21a9122c416', plain: 'Hello node.js world!', property
40 iv: '000000000000000000000000', property
49 iv: '000000000000000000000000', property
58 iv: 'cafebabefacedbaddecaf888', property
73 iv: 'cafebabefacedbaddecaf888', property
[all …]
/third_party/node/test/parallel/
Dtest-crypto-aes-wrap.js13 iv: '3fd838af4093d749', property
19 iv: '3fd838af', property
25 iv: '3fd838af4093d749', property
31 iv: '3fd838af', property
37 iv: '3fd838af4093d749', property
43 iv: '3fd838af', property
Dtest-webcrypto-encrypt-decrypt.js76 const iv = webcrypto.getRandomValues(new Uint8Array(16)); constant
85 { name: 'AES-CBC', iv }, key, buf, field
89 { name: 'AES-CBC', iv }, key, ciphertext, field
103 const iv = webcrypto.getRandomValues(new Uint8Array(12)); constant
112 { name: 'AES-GCM', iv }, key, buf, field
116 { name: 'AES-GCM', iv }, key, ciphertext, field
Dtest-crypto-cipheriv-decipheriv.js9 function testCipher1(key, iv) { argument
43 function testCipher2(key, iv) { argument
62 function testCipher3(key, iv) { argument
84 const iv = '12345678'; constant
117 const iv = '12345678'; constant
Dtest-crypto-subtle-zero-length.js22 iv: new Uint8Array(12), property
33 iv: new Uint8Array(12), property
Dtest-crypto-authenticated.js523 const iv = Buffer.from('7305220bca40d4c90e1791e9', 'hex'); constant
543 const iv = Buffer.from('579d9dfde9cd93d743da1ceaeebb86e4', 'hex'); constant
554 const iv = Buffer.from('112233445566778899aabb', 'hex'); constant
566 const iv = Buffer.from('0123456789ab', 'utf8'); constant
599 const iv = Buffer.from('0123456789ab', 'utf8'); constant
630 iv: '070000004041424344454647', property
672 const iv = Buffer.alloc(12); constant
691 const iv = Buffer.alloc(12); constant
707 const iv = Buffer.alloc(12); constant
762 const iv = Buffer.from(testCase.iv, 'hex'); constant
[all …]
/third_party/openssl/test/
Digetest.c39 const unsigned char iv[32]; member
83 const unsigned char iv[64]; member
154 unsigned char iv[AES_BLOCK_SIZE * 2]; in test_ige_vectors() local
226 unsigned char iv[AES_BLOCK_SIZE * 4]; in test_ige_enc_dec() local
244 unsigned char iv[AES_BLOCK_SIZE * 4]; in test_ige_enc_chaining() local
266 unsigned char iv[AES_BLOCK_SIZE * 4]; in test_ige_dec_chaining() local
292 unsigned char iv[AES_BLOCK_SIZE * 4]; in test_ige_garble_forwards() local
330 unsigned char iv[AES_BLOCK_SIZE * 4]; in test_bi_ige_enc_dec() local
351 unsigned char iv[AES_BLOCK_SIZE * 4]; in test_bi_ige_garble1() local
382 unsigned char iv[AES_BLOCK_SIZE * 4]; in test_bi_ige_garble2() local
[all …]
/third_party/rust/crates/rust-openssl/openssl/src/
Dsymm.rs809 let iv = [0u8; 16]; in test_stream_cipher_output() localVariable
871 let iv = [ in test_aes_256_cbc_decrypt() localVariable
906 let iv = Vec::from_hex(iv).unwrap(); in cipher_test() localVariable
930 let iv = Vec::from_hex(iv).unwrap(); in cipher_test_nopad() localVariable
965 let iv = ""; in test_rc4() localVariable
981 let iv = "db200efb7eaaa737dbdf40babb68953f"; in test_aes256_xts() localVariable
993 let iv = "F0F1F2F3F4F5F6F7F8F9FAFBFCFDFEFF"; in test_aes128_ctr() localVariable
1006 let iv = "000102030405060708090a0b0c0d0e0f"; in test_aes128_cfb1() localVariable
1017 let iv = "000102030405060708090a0b0c0d0e0f"; in test_aes128_cfb128() localVariable
1028 let iv = "000102030405060708090a0b0c0d0e0f"; in test_aes128_cfb8() localVariable
[all …]
Denvelope.rs34 iv: Option<Vec<u8>>, field
44 let mut iv = cipher.iv_len().map(|len| vec![0; len]); in new() localVariable
60 pub fn iv(&self) -> Option<&[u8]> { in iv() method
171 let iv = seal.iv(); in public_encrypt_private_decrypt() localVariable
/third_party/node/test/fixtures/crypto/
Daes_cbc.js90 algorithm: { name: 'AES-CBC', iv }, field
102 iv: iv.slice(0, 8) property
113 algorithm: { name: 'AES-CBC', iv: longIv }, property
136 algorithm: { name: 'AES-CBC', iv }, field
Daes_gcm.js97 algorithm: { name: 'AES-GCM', iv, additionalData, tagLength }, property
109 algorithm: { name: 'AES-GCM', iv, tagLength }, property
123 iv, property
/third_party/ffmpeg/libavutil/
Dxtea.c59 int decrypt, uint8_t *iv) in xtea_crypt_ecb()
179 int decrypt, uint8_t *iv) in xtea_le_crypt_ecb()
215 uint8_t *iv, int decrypt, in xtea_crypt()
244 uint8_t *iv, int decrypt) in av_xtea_crypt()
250 uint8_t *iv, int decrypt) in av_xtea_le_crypt()
Daes_ctr.c41 void av_aes_ctr_set_iv(struct AVAESCTR *a, const uint8_t* iv) in av_aes_ctr_set_iv()
48 void av_aes_ctr_set_full_iv(struct AVAESCTR *a, const uint8_t* iv) in av_aes_ctr_set_full_iv()
61 uint32_t iv[2]; in av_aes_ctr_set_random_iv() local
/third_party/node/deps/openssl/openssl/crypto/aes/
Daes_wrap.c20 int AES_wrap_key(AES_KEY *key, const unsigned char *iv, in AES_wrap_key()
27 int AES_unwrap_key(AES_KEY *key, const unsigned char *iv, in AES_unwrap_key()
/third_party/openssl/crypto/aes/
Daes_wrap.c20 int AES_wrap_key(AES_KEY *key, const unsigned char *iv, in AES_wrap_key()
27 int AES_unwrap_key(AES_KEY *key, const unsigned char *iv, in AES_unwrap_key()
/third_party/FreeBSD/sys/crypto/rijndael/
Drijndael-api-fst.c88 uint8_t block[16], iv[4][4]; in rijndael_blockEncrypt() local
204 uint8_t block[16], *iv, *cp; in rijndael_padEncrypt() local
268 uint8_t block[16], iv[4][4]; in rijndael_blockDecrypt() local
369 uint32_t iv[4]; in rijndael_padDecrypt() local
/third_party/node/test/fixtures/wpt/WebCryptoAPI/encrypt_decrypt/
Daes_gcm_vectors.js40 … algorithm: {name: "AES-GCM", iv: iv, additionalData: additionalData, tagLength: tagLength}, property
52 algorithm: {name: "AES-GCM", iv: iv, tagLength: tagLength}, property
68 … algorithm: {name: "AES-GCM", iv: iv, additionalData: additionalData, tagLength: badTagLength}, property
Daes_cbc_vectors.js209 algorithm: {name: "AES-CBC", iv: iv}, property
223 algorithm: {name: "AES-CBC", iv: shortIv}, property
235 algorithm: {name: "AES-CBC", iv: longIv}, property
253 algorithm: {name: "AES-CBC", iv: iv}, property
/third_party/ffmpeg/libavformat/
Dsrtp.c41 static void encrypt_counter(struct AVAES *aes, uint8_t *iv, uint8_t *outbuf, in encrypt_counter()
112 static void create_iv(uint8_t *iv, const uint8_t *salt, uint64_t index, in create_iv()
128 uint8_t iv[16] = { 0 }, hmac[20]; in ff_srtp_decrypt() local
241 uint8_t iv[16] = { 0 }, hmac[20]; in ff_srtp_encrypt() local
/third_party/benchmark/test/
Dargs_product_test.cc42 for (int64_t iv : v) { in ~ArgsProductFixture() local
50 for (int64_t iv : v) { in ~ArgsProductFixture() local
/third_party/mbedtls/programs/psa/
Dcrypto_examples.c98 uint8_t *iv, in cipher_encrypt()
129 const uint8_t *iv, in cipher_decrypt()
171 uint8_t iv[block_size]; in cipher_example_encrypt_decrypt_aes_cbc_nopad_1_block() local
221 uint8_t iv[block_size], input[input_size], in cipher_example_encrypt_decrypt_aes_cbc_pkcs7_multi() local
268 uint8_t iv[block_size], input[input_size], encrypt[input_size], in cipher_example_encrypt_decrypt_aes_ctr_multi() local
/third_party/node/deps/openssl/openssl/providers/implementations/ciphers/
Dcipher_tdes_common.c65 const unsigned char *iv, size_t ivlen, in tdes_init()
100 const unsigned char *iv, size_t ivlen, in ossl_tdes_einit()
107 const unsigned char *iv, size_t ivlen, in ossl_tdes_dinit()
/third_party/openssl/providers/implementations/ciphers/
Dcipher_tdes_common.c65 const unsigned char *iv, size_t ivlen, in tdes_init()
100 const unsigned char *iv, size_t ivlen, in ossl_tdes_einit()
107 const unsigned char *iv, size_t ivlen, in ossl_tdes_dinit()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/crypto/
Daes-cbc.c24 int aes_128_cbc_encrypt(const u8 *key, const u8 *iv, u8 *data, size_t data_len) in aes_128_cbc_encrypt()
60 int aes_128_cbc_decrypt(const u8 *key, const u8 *iv, u8 *data, size_t data_len) in aes_128_cbc_decrypt()
/third_party/ffmpeg/libavutil/tests/
Dtea.c63 const uint8_t *ref, int len, uint8_t *iv, int dir, in test_tea()
83 uint8_t buf[8], iv[8]; in main() local

12345678910>>...19