• Home
  • Raw
  • Download

Lines Matching refs:blks

348 static inline void AES_ecb_encrypt_blks(block* blks, unsigned nblks, AES_KEY* key) {  in AES_ecb_encrypt_blks()  argument
351 AES_encrypt((unsigned char*)(blks + nblks), (unsigned char*)(blks + nblks), key); in AES_ecb_encrypt_blks()
355 static inline void AES_ecb_decrypt_blks(block* blks, unsigned nblks, AES_KEY* key) { in AES_ecb_decrypt_blks() argument
358 AES_decrypt((unsigned char*)(blks + nblks), (unsigned char*)(blks + nblks), key); in AES_ecb_decrypt_blks()
394 static void AES_ecb_encrypt_blks(block* blks, unsigned nblks, AES_KEY* key) { in AES_ecb_encrypt_blks() argument
397 AES_encrypt((unsigned char*)(blks + nblks), (unsigned char*)(blks + nblks), key); in AES_ecb_encrypt_blks()
401 void AES_ecb_decrypt_blks(block* blks, unsigned nblks, AES_KEY* key) { in AES_ecb_decrypt_blks() argument
404 AES_decrypt((unsigned char*)(blks + nblks), (unsigned char*)(blks + nblks), key); in AES_ecb_decrypt_blks()
575 static inline void AES_ecb_encrypt_blks(block* blks, unsigned nblks, AES_KEY* key) { in AES_ecb_encrypt_blks() argument
579 blks[i] = _mm_xor_si128(blks[i], sched[0]); in AES_ecb_encrypt_blks()
582 blks[i] = _mm_aesenc_si128(blks[i], sched[j]); in AES_ecb_encrypt_blks()
584 blks[i] = _mm_aesenclast_si128(blks[i], sched[j]); in AES_ecb_encrypt_blks()
587 static inline void AES_ecb_decrypt_blks(block* blks, unsigned nblks, AES_KEY* key) { in AES_ecb_decrypt_blks() argument
591 blks[i] = _mm_xor_si128(blks[i], sched[0]); in AES_ecb_decrypt_blks()
594 blks[i] = _mm_aesdec_si128(blks[i], sched[j]); in AES_ecb_decrypt_blks()
596 blks[i] = _mm_aesdeclast_si128(blks[i], sched[j]); in AES_ecb_decrypt_blks()