Lines Matching refs:AES_KEY

360 static inline void AES_ecb_encrypt_blks(block* blks, unsigned nblks, AES_KEY* key) {  in AES_ecb_encrypt_blks()
367 static inline void AES_ecb_decrypt_blks(block* blks, unsigned nblks, AES_KEY* key) { in AES_ecb_decrypt_blks()
385 } AES_KEY; typedef
398 typedef struct { uint32_t rd_key[OCB_KEY_LEN + 28]; } AES_KEY; typedef
406 static void AES_ecb_encrypt_blks(block* blks, unsigned nblks, AES_KEY* key) { in AES_ecb_encrypt_blks()
413 void AES_ecb_decrypt_blks(block* blks, unsigned nblks, AES_KEY* key) { in AES_ecb_decrypt_blks()
432 } AES_KEY; typedef
435 typedef struct { __m128i rd_key[7 + OCB_KEY_LEN / 4]; } AES_KEY; typedef
532 static int AES_set_encrypt_key(const unsigned char* userKey, const int bits, AES_KEY* key) { in AES_set_encrypt_key()
546 static void AES_set_decrypt_key_fast(AES_KEY* dkey, const AES_KEY* ekey) { in AES_set_decrypt_key_fast()
558 static int AES_set_decrypt_key(const unsigned char* userKey, const int bits, AES_KEY* key) { in AES_set_decrypt_key()
559 AES_KEY temp_key; in AES_set_decrypt_key()
565 static inline void AES_encrypt(const unsigned char* in, unsigned char* out, const AES_KEY* key) { in AES_encrypt()
576 static inline void AES_decrypt(const unsigned char* in, unsigned char* out, const AES_KEY* key) { in AES_decrypt()
587 static inline void AES_ecb_encrypt_blks(block* blks, unsigned nblks, AES_KEY* key) { in AES_ecb_encrypt_blks()
599 static inline void AES_ecb_decrypt_blks(block* blks, unsigned nblks, AES_KEY* key) { in AES_ecb_decrypt_blks()
642 AES_KEY decrypt_key;
643 AES_KEY encrypt_key;