Home | History | Annotate | Download | only in headers

Lines Matching refs:cipher

191 /** A block cipher ECB structure */
193 /** The index of the cipher chosen */
194 int cipher,
195 /** The block size of the given cipher */
203 /** A block cipher CFB structure */
205 /** The index of the cipher chosen */
206 int cipher,
207 /** The block size of the given cipher */
221 /** A block cipher OFB structure */
223 /** The index of the cipher chosen */
224 int cipher,
225 /** The block size of the given cipher */
237 /** A block cipher CBC structure */
239 /** The index of the cipher chosen */
240 int cipher,
241 /** The block size of the given cipher */
252 /** A block cipher CTR structure */
254 /** The index of the cipher chosen */
255 int cipher,
256 /** The block size of the given cipher */
275 /** The index of the cipher chosen (must be a 128-bit block cipher) */
276 int cipher;
298 /** A block cipher F8 structure */
300 /** The index of the cipher chosen */
301 int cipher,
302 /** The block size of the given cipher */
317 /** cipher descriptor table, last entry has "name == NULL" to mark the end of table */
319 /** name of cipher */
331 /** Setup the cipher
353 /** Test the block cipher
736 int ecb_start(int cipher, const unsigned char *key,
744 int cfb_start(int cipher, const unsigned char *IV, const unsigned char *key,
754 int ofb_start(int cipher, const unsigned char *IV, const unsigned char *key,
764 int cbc_start(int cipher, const unsigned char *IV, const unsigned char *key,
779 int ctr_start( int cipher,
797 int lrw_start( int cipher,
815 int f8_start( int cipher, const unsigned char *IV,
831 int register_cipher(const struct ltc_cipher_descriptor *cipher);
832 int unregister_cipher(const struct ltc_cipher_descriptor *cipher);