HomeSort by: relevance | last modified time | path
    Searched refs:aes_key (Results 1 - 8 of 8) sorted by relevancy

  /src/crypto/external/bsd/heimdal/dist/lib/hcrypto/
aes.h 59 typedef struct aes_key { struct
62 } AES_KEY;
68 int AES_set_encrypt_key(const unsigned char *, const int, AES_KEY *);
69 int AES_set_decrypt_key(const unsigned char *, const int, AES_KEY *);
71 void AES_encrypt(const unsigned char *, unsigned char *, const AES_KEY *);
72 void AES_decrypt(const unsigned char *, unsigned char *, const AES_KEY *);
75 unsigned long, const AES_KEY *,
78 unsigned long, const AES_KEY *,
  /src/crypto/external/apache2/openssl/dist/providers/implementations/ciphers/
cipher_aes_gcm_hw_armv8.inc 18 AES_KEY *aes_key = (AES_KEY *)key;
21 switch(aes_key->rounds) {
50 AES_KEY *aes_key = (AES_KEY *)key;
53 switch(aes_key->rounds) {
83 AES_KEY *ks = &actx->ks.ks;
  /src/crypto/external/bsd/openssl/dist/providers/implementations/ciphers/
cipher_aes_gcm_hw_armv8.inc 21 AES_KEY *aes_key = (AES_KEY *)key;
23 switch(aes_key->rounds) {
43 AES_KEY *aes_key = (AES_KEY *)key;
45 switch(aes_key->rounds) {
63 AES_KEY *ks = &actx->ks.ks;
  /src/crypto/external/apache2/openssl/dist/test/
evp_skey_test.c 106 unsigned char aes_key[KEY_SIZE], aes_iv[IV_SIZE]; local
125 memset(aes_key, 1, KEY_SIZE);
134 skey = EVP_SKEY_import_raw_key(libctx, "AES-128", aes_key, KEY_SIZE, NULL);
139 || !TEST_mem_eq(aes_key, KEY_SIZE, export_key, export_length))
155 if (!TEST_int_gt(EVP_CipherInit_ex2(ctx, aes_cbc, aes_key, aes_iv, 1, NULL), 0)
  /src/tests/crypto/opencrypto/
h_ioctl.c 45 unsigned char aes_key[AES_KEY_LEN] = variable
109 cs->key = __UNCONST(&aes_key);
196 cs.key = __UNCONST(&aes_key);
297 cs.key = __UNCONST(&aes_key);
  /src/external/bsd/unbound/dist/util/
net_help.c 98 unsigned char *aes_key; member in struct:tls_session_ticket_key
1860 keys->aes_key = data + 16;
1904 if (EVP_EncryptInit_ex(evp_sctx, cipher, NULL, ticket_keys->aes_key, iv) != 1) {
1962 if (EVP_DecryptInit_ex(evp_sctx, cipher, NULL, key->aes_key, iv) != 1) {
  /src/crypto/external/apache2/openssl/dist/crypto/aes/asm/
aes-x86_64.pl 599 # void AES_encrypt (const void *inp,void *out,const AES_KEY *key);
1220 # void AES_decrypt (const void *inp,void *out,const AES_KEY *key);
1341 # AES_KEY *key)
1622 # AES_KEY *key)
1717 # size_t length, const AES_KEY *key,
1731 my $aes_key="80(%rsp)"; # copy of aes_key
1732 my $mark="80+240(%rsp)"; # copy of aes_key->rounds
1818 movl \$0,$mark # copy of aes_key->rounds = 0;
1837 lea $aes_key,%rd
    [all...]
aes-586.pl 1173 # void AES_encrypt (const void *inp,void *out,const AES_KEY *key);
1964 # void AES_decrypt (const void *inp,void *out,const AES_KEY *key);
2024 # size_t length, const AES_KEY *key,
2045 my $aes_key=&DWP(76,"esp"); # copy of aes_key
2046 my $mark=&DWP(76+240,"esp"); # copy of aes_key->rounds
2119 &mov ($mark,0); # copy of aes_key->rounds = 0;
2126 &lea ("edi",$aes_key);
2874 # AES_KEY *key)
2936 # AES_KEY *key
    [all...]

Completed in 87 milliseconds