Searched defs:ivlen (Results 1 - 1 of 1) sorted by relevance
| /osnet-11/usr/src/grub/grub2/grub-core/lib/libgcrypt/cipher/ |
| H A D | cipher.c | 896 cipher_setiv( gcry_cipher_hd_t c, const byte *iv, unsigned ivlen ) 901 if (ivlen != c->cipher->blocksize) 903 log_info ("WARNING: cipher_setiv: ivlen=%u blklen=%u\n", 904 ivlen, (unsigned int)c->cipher->blocksize); 907 if (ivlen > c->cipher->blocksize) 908 ivlen = c->cipher->blocksize; 909 memcpy (c->u_iv.iv, iv, ivlen); 1610 _gcry_cipher_setiv (gcry_cipher_hd_t hd, const void *iv, size_t ivlen) 1612 cipher_setiv (hd, iv, ivlen); 1608 _gcry_cipher_setiv(gcry_cipher_hd_t hd, const void *iv, size_t ivlen) argument
|
Completed in 19 milliseconds