Lines Matching +full:36 +full:h
29 #include <err.h>
30 #include <fcntl.h>
31 #include <stdio.h>
32 #include <string.h>
33 #include <unistd.h>
35 #include <sys/ioctl.h>
36 #include <sys/time.h>
38 #include <crypto/cryptodev.h>
44 * 36-byte (ie, unpadded) operations.
50 unsigned char key[36]; /* Includes 32-bit nonce */
52 unsigned char plaintx[36];
53 unsigned char ciphertx[36];
83 /* Test Vector #3: Encrypting 36 octets using AES-CTR w/ 128-bit key */
84 /* { 36, 20,
131 /* Test Vector #6: Encrypting 36 octets using AES-CTR w/ 192-bit key */
133 { 36, 28,
152 { 16, 36,
166 { 32, 36,
183 /* Test Vector #9: Encrypting 36 octets using AES-CTR w/ 256-bit key */
185 { 36, 36,
213 unsigned char buf[36]; in main()