| /src/crypto/external/bsd/openssl.old/dist/demos/evp/ |
| aesgcm.c | 20 static const unsigned char gcm_key[] = { variable 64 EVP_EncryptInit_ex(ctx, NULL, NULL, gcm_key, gcm_iv); 96 EVP_DecryptInit_ex(ctx, NULL, NULL, gcm_key, gcm_iv);
|
| /src/crypto/external/apache2/openssl/dist/demos/cipher/ |
| aesgcm.c | 24 static const unsigned char gcm_key[] = { variable 106 if (!EVP_EncryptInit_ex2(ctx, cipher, gcm_key, gcm_iv, params)) 178 if (!EVP_DecryptInit_ex2(ctx, cipher, gcm_key, gcm_iv, params))
|
| /src/crypto/external/apache2/openssl/dist/test/ |
| aesgcmtest.c | 13 static const unsigned char gcm_key[] = { variable 51 && TEST_true(EVP_EncryptInit_ex(ctx, NULL, NULL, gcm_key, 84 && TEST_true(EVP_DecryptInit_ex(ctx, NULL, NULL, gcm_key, iv) > 0)
|
| evp_extra_test.c | 6220 static int aes_gcm_encrypt(const unsigned char *gcm_key, size_t gcm_key_s, 6244 if (!TEST_true(EVP_EncryptInit_ex2(ctx, cipher, gcm_key, gcm_iv, params)) 6269 static int aes_gcm_decrypt(const unsigned char *gcm_key, size_t gcm_key_s, 6294 if (!TEST_true(EVP_DecryptInit_ex2(ctx, cipher, gcm_key, gcm_iv, params)) 6321 static const unsigned char gcm_key[] = { local 6352 return aes_gcm_encrypt(gcm_key, sizeof(gcm_key), gcm_iv, sizeof(gcm_iv), 6355 && aes_gcm_decrypt(gcm_key, sizeof(gcm_key), gcm_iv, sizeof(gcm_iv),
|
| /src/crypto/external/bsd/openssl/dist/demos/cipher/ |
| aesgcm.c | 24 static const unsigned char gcm_key[] = { variable 106 if (!EVP_EncryptInit_ex2(ctx, cipher, gcm_key, gcm_iv, params)) 178 if (!EVP_DecryptInit_ex2(ctx, cipher, gcm_key, gcm_iv, params))
|
| /src/crypto/external/bsd/openssl/dist/test/ |
| aesgcmtest.c | 13 static const unsigned char gcm_key[] = { variable 50 && TEST_true(EVP_EncryptInit_ex(ctx, NULL, NULL, gcm_key, 78 && TEST_true(EVP_DecryptInit_ex(ctx, NULL, NULL, gcm_key, iv) > 0)
|
| evp_extra_test.c | 5107 static int aes_gcm_encrypt(const unsigned char *gcm_key, size_t gcm_key_s, 5131 if (!TEST_true(EVP_EncryptInit_ex2(ctx, cipher, gcm_key, gcm_iv, params)) 5156 static int aes_gcm_decrypt(const unsigned char *gcm_key, size_t gcm_key_s, 5181 if (!TEST_true(EVP_DecryptInit_ex2(ctx, cipher, gcm_key, gcm_iv, params)) 5208 static const unsigned char gcm_key[] = { local 5239 return aes_gcm_encrypt(gcm_key, sizeof(gcm_key), gcm_iv, sizeof(gcm_iv), 5242 && aes_gcm_decrypt(gcm_key, sizeof(gcm_key), gcm_iv, sizeof(gcm_iv),
|