Home
last modified time | relevance | path

Searched refs:raw_cipher (Results 1 – 2 of 2) sorted by relevance

/external/syslinux/gpxe/src/crypto/
Dcbc.c62 struct cipher_algorithm *raw_cipher, void *cbc_ctx ) { in cbc_encrypt() argument
63 size_t blocksize = raw_cipher->blocksize; in cbc_encrypt()
69 cipher_encrypt ( raw_cipher, ctx, cbc_ctx, dst, blocksize ); in cbc_encrypt()
88 struct cipher_algorithm *raw_cipher, void *cbc_ctx ) { in cbc_decrypt() argument
89 size_t blocksize = raw_cipher->blocksize; in cbc_decrypt()
94 cipher_decrypt ( raw_cipher, ctx, src, dst, blocksize ); in cbc_decrypt()
/external/syslinux/gpxe/src/include/gpxe/
Dcbc.h25 struct cipher_algorithm *raw_cipher, in cbc_setkey() argument
28 return cipher_setkey ( raw_cipher, ctx, key, keylen ); in cbc_setkey()
40 struct cipher_algorithm *raw_cipher, in cbc_setiv() argument
42 memcpy ( cbc_ctx, iv, raw_cipher->blocksize ); in cbc_setiv()
46 size_t len, struct cipher_algorithm *raw_cipher,
49 size_t len, struct cipher_algorithm *raw_cipher,