Lines Matching refs:nblks
349 static inline void AES_ecb_encrypt_blks(block* blks, unsigned nblks, AES_KEY* key) { in AES_ecb_encrypt_blks() argument
350 while (nblks) { in AES_ecb_encrypt_blks()
351 --nblks; in AES_ecb_encrypt_blks()
352 AES_encrypt((unsigned char*)(blks + nblks), (unsigned char*)(blks + nblks), key); in AES_ecb_encrypt_blks()
356 static inline void AES_ecb_decrypt_blks(block* blks, unsigned nblks, AES_KEY* key) { in AES_ecb_decrypt_blks() argument
357 while (nblks) { in AES_ecb_decrypt_blks()
358 --nblks; in AES_ecb_decrypt_blks()
359 AES_decrypt((unsigned char*)(blks + nblks), (unsigned char*)(blks + nblks), key); in AES_ecb_decrypt_blks()
395 static void AES_ecb_encrypt_blks(block* blks, unsigned nblks, AES_KEY* key) { in AES_ecb_encrypt_blks() argument
396 while (nblks) { in AES_ecb_encrypt_blks()
397 --nblks; in AES_ecb_encrypt_blks()
398 AES_encrypt((unsigned char*)(blks + nblks), (unsigned char*)(blks + nblks), key); in AES_ecb_encrypt_blks()
402 void AES_ecb_decrypt_blks(block* blks, unsigned nblks, AES_KEY* key) { in AES_ecb_decrypt_blks() argument
403 while (nblks) { in AES_ecb_decrypt_blks()
404 --nblks; in AES_ecb_decrypt_blks()
405 AES_decrypt((unsigned char*)(blks + nblks), (unsigned char*)(blks + nblks), key); in AES_ecb_decrypt_blks()
576 static inline void AES_ecb_encrypt_blks(block* blks, unsigned nblks, AES_KEY* key) { in AES_ecb_encrypt_blks() argument
579 for (i = 0; i < nblks; ++i) in AES_ecb_encrypt_blks()
582 for (i = 0; i < nblks; ++i) in AES_ecb_encrypt_blks()
584 for (i = 0; i < nblks; ++i) in AES_ecb_encrypt_blks()
588 static inline void AES_ecb_decrypt_blks(block* blks, unsigned nblks, AES_KEY* key) { in AES_ecb_decrypt_blks() argument
591 for (i = 0; i < nblks; ++i) in AES_ecb_decrypt_blks()
594 for (i = 0; i < nblks; ++i) in AES_ecb_decrypt_blks()
596 for (i = 0; i < nblks; ++i) in AES_ecb_decrypt_blks()