Lines Matching refs:nblks

360 static inline void AES_ecb_encrypt_blks(block* blks, unsigned nblks, AES_KEY* key) {  in AES_ecb_encrypt_blks()  argument
361 while (nblks) { in AES_ecb_encrypt_blks()
362 --nblks; in AES_ecb_encrypt_blks()
363 AES_encrypt((unsigned char*)(blks + nblks), (unsigned char*)(blks + nblks), key); in AES_ecb_encrypt_blks()
367 static inline void AES_ecb_decrypt_blks(block* blks, unsigned nblks, AES_KEY* key) { in AES_ecb_decrypt_blks() argument
368 while (nblks) { in AES_ecb_decrypt_blks()
369 --nblks; in AES_ecb_decrypt_blks()
370 AES_decrypt((unsigned char*)(blks + nblks), (unsigned char*)(blks + nblks), key); in AES_ecb_decrypt_blks()
406 static void AES_ecb_encrypt_blks(block* blks, unsigned nblks, AES_KEY* key) { in AES_ecb_encrypt_blks() argument
407 while (nblks) { in AES_ecb_encrypt_blks()
408 --nblks; in AES_ecb_encrypt_blks()
409 AES_encrypt((unsigned char*)(blks + nblks), (unsigned char*)(blks + nblks), key); in AES_ecb_encrypt_blks()
413 void AES_ecb_decrypt_blks(block* blks, unsigned nblks, AES_KEY* key) { in AES_ecb_decrypt_blks() argument
414 while (nblks) { in AES_ecb_decrypt_blks()
415 --nblks; in AES_ecb_decrypt_blks()
416 AES_decrypt((unsigned char*)(blks + nblks), (unsigned char*)(blks + nblks), key); in AES_ecb_decrypt_blks()
587 static inline void AES_ecb_encrypt_blks(block* blks, unsigned nblks, AES_KEY* key) { in AES_ecb_encrypt_blks() argument
590 for (i = 0; i < nblks; ++i) in AES_ecb_encrypt_blks()
593 for (i = 0; i < nblks; ++i) in AES_ecb_encrypt_blks()
595 for (i = 0; i < nblks; ++i) in AES_ecb_encrypt_blks()
599 static inline void AES_ecb_decrypt_blks(block* blks, unsigned nblks, AES_KEY* key) { in AES_ecb_decrypt_blks() argument
602 for (i = 0; i < nblks; ++i) in AES_ecb_decrypt_blks()
605 for (i = 0; i < nblks; ++i) in AES_ecb_decrypt_blks()
607 for (i = 0; i < nblks; ++i) in AES_ecb_decrypt_blks()