Home | History | Annotate | Download | only in keymaster

Lines Matching defs:AES_KEY

348 static inline void AES_ecb_encrypt_blks(block* blks, unsigned nblks, AES_KEY* key) {
355 static inline void AES_ecb_decrypt_blks(block* blks, unsigned nblks, AES_KEY* key) {
373 } AES_KEY;
386 typedef struct { uint32_t rd_key[OCB_KEY_LEN + 28]; } AES_KEY;
394 static void AES_ecb_encrypt_blks(block* blks, unsigned nblks, AES_KEY* key) {
401 void AES_ecb_decrypt_blks(block* blks, unsigned nblks, AES_KEY* key) {
420 } AES_KEY;
423 typedef struct { __m128i rd_key[7 + OCB_KEY_LEN / 4]; } AES_KEY;
520 static int AES_set_encrypt_key(const unsigned char* userKey, const int bits, AES_KEY* key) {
534 static void AES_set_decrypt_key_fast(AES_KEY* dkey, const AES_KEY* ekey) {
546 static int AES_set_decrypt_key(const unsigned char* userKey, const int bits, AES_KEY* key) {
547 AES_KEY temp_key;
553 static inline void AES_encrypt(const unsigned char* in, unsigned char* out, const AES_KEY* key) {
564 static inline void AES_decrypt(const unsigned char* in, unsigned char* out, const AES_KEY* key) {
575 static inline void AES_ecb_encrypt_blks(block* blks, unsigned nblks, AES_KEY* key) {
587 static inline void AES_ecb_decrypt_blks(block* blks, unsigned nblks, AES_KEY* key) {
630 AES_KEY decrypt_key;
631 AES_KEY encrypt_key;