Lines Matching refs:nblks
348 static inline void AES_ecb_encrypt_blks(block* blks, unsigned nblks, AES_KEY* key) { in AES_ecb_encrypt_blks() argument
349 while (nblks) { in AES_ecb_encrypt_blks()
350 --nblks; in AES_ecb_encrypt_blks()
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
356 while (nblks) { in AES_ecb_decrypt_blks()
357 --nblks; in AES_ecb_decrypt_blks()
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
395 while (nblks) { in AES_ecb_encrypt_blks()
396 --nblks; in AES_ecb_encrypt_blks()
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
402 while (nblks) { in AES_ecb_decrypt_blks()
403 --nblks; in AES_ecb_decrypt_blks()
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
578 for (i = 0; i < nblks; ++i) in AES_ecb_encrypt_blks()
581 for (i = 0; i < nblks; ++i) in AES_ecb_encrypt_blks()
583 for (i = 0; i < nblks; ++i) 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
590 for (i = 0; i < nblks; ++i) in AES_ecb_decrypt_blks()
593 for (i = 0; i < nblks; ++i) in AES_ecb_decrypt_blks()
595 for (i = 0; i < nblks; ++i) in AES_ecb_decrypt_blks()