Searched refs:AES_BLOCK_SIZE (Results 1 - 10 of 10) sorted by relevance

/openbsd-current/lib/libcrypto/aes/
H A Daes_ige.c57 #define N_WORDS (AES_BLOCK_SIZE / sizeof(unsigned long))
73 #define load_block(d, s) memcpy((d).data, (s), AES_BLOCK_SIZE)
74 #define store_block(d, s) memcpy((d), (s).data, AES_BLOCK_SIZE)
86 OPENSSL_assert((length % AES_BLOCK_SIZE) == 0);
88 len = length / AES_BLOCK_SIZE;
95 aes_block_t *iv2p = (aes_block_t *)(ivec + AES_BLOCK_SIZE);
109 in += AES_BLOCK_SIZE;
110 out += AES_BLOCK_SIZE;
112 memmove(ivec, ivp->data, AES_BLOCK_SIZE);
113 memmove(ivec + AES_BLOCK_SIZE, iv2
[all...]
H A Daes.h69 #define AES_BLOCK_SIZE 16 macro
108 size_t length, const AES_KEY *key, unsigned char ivec[AES_BLOCK_SIZE],
109 unsigned char ecount_buf[AES_BLOCK_SIZE], unsigned int *num);
H A Daes.c124 size_t length, const AES_KEY *key, unsigned char ivec[AES_BLOCK_SIZE],
125 unsigned char ecount_buf[AES_BLOCK_SIZE], unsigned int *num)
/openbsd-current/usr.bin/ssh/
H A Dcipher-aesctr.h23 #define AES_BLOCK_SIZE 16 macro
28 u8 ctr[AES_BLOCK_SIZE]; /* counter */
H A Dcipher-aesctr.c61 memcpy(x->ctr, iv, AES_BLOCK_SIZE);
68 u8 buf[AES_BLOCK_SIZE];
73 aesctr_inc(x->ctr, AES_BLOCK_SIZE);
76 n = (n + 1) % AES_BLOCK_SIZE;
/openbsd-current/regress/lib/libcrypto/ige/
H A Digetest.c132 unsigned char iv[AES_BLOCK_SIZE*2];
185 unsigned char iv[AES_BLOCK_SIZE*4];
186 unsigned char saved_iv[AES_BLOCK_SIZE*4];
/openbsd-current/sbin/isakmpd/
H A Dcrypto.h75 #define MAXBLK AES_BLOCK_SIZE
H A Dcrypto.c74 AES_BLOCK_SIZE, 0,
/openbsd-current/usr.sbin/sasyncd/
H A Dnet.c66 #define AES_IV_LEN AES_BLOCK_SIZE
/openbsd-current/lib/libcrypto/evp/
H A De_aes.c138 const unsigned char ivec[AES_BLOCK_SIZE]);
1892 if (!out || !in || len < AES_BLOCK_SIZE)

Completed in 101 milliseconds