Home | History | Annotate | Download | only in keymaster

Lines Matching refs:AES_KEY

349 static inline void AES_ecb_encrypt_blks(block* blks, unsigned nblks, AES_KEY* key) {
356 static inline void AES_ecb_decrypt_blks(block* blks, unsigned nblks, AES_KEY* key) {
374 } AES_KEY;
387 typedef struct { uint32_t rd_key[OCB_KEY_LEN + 28]; } AES_KEY;
395 static void AES_ecb_encrypt_blks(block* blks, unsigned nblks, AES_KEY* key) {
402 void AES_ecb_decrypt_blks(block* blks, unsigned nblks, AES_KEY* key) {
421 } AES_KEY;
424 typedef struct { __m128i rd_key[7 + OCB_KEY_LEN / 4]; } AES_KEY;
521 static int AES_set_encrypt_key(const unsigned char* userKey, const int bits, AES_KEY* key) {
535 static void AES_set_decrypt_key_fast(AES_KEY* dkey, const AES_KEY* ekey) {
547 static int AES_set_decrypt_key(const unsigned char* userKey, const int bits, AES_KEY* key) {
548 AES_KEY temp_key;
554 static inline void AES_encrypt(const unsigned char* in, unsigned char* out, const AES_KEY* key) {
565 static inline void AES_decrypt(const unsigned char* in, unsigned char* out, const AES_KEY* key) {
576 static inline void AES_ecb_encrypt_blks(block* blks, unsigned nblks, AES_KEY* key) {
588 static inline void AES_ecb_decrypt_blks(block* blks, unsigned nblks, AES_KEY* key) {
631 AES_KEY decrypt_key;
632 AES_KEY encrypt_key;