Home | History | Annotate | Download | only in f8

Lines Matching refs:f8

15    F8 implementation, set IV, Tom St Denis
24 @param f8 The F8 state
27 int f8_setiv(const unsigned char *IV, unsigned long len, symmetric_F8 *f8)
32 LTC_ARGCHK(f8 != NULL);
34 if ((err = cipher_is_valid(f8->cipher)) != CRYPT_OK) {
38 if (len != (unsigned long)f8->blocklen) {
43 f8->padlen = 0;
44 return cipher_descriptor[f8->cipher].ecb_encrypt(IV, f8->IV, &f8->key);
50 /* $Source: /cvs/libtom/libtomcrypt/src/modes/f8/f8_setiv.c,v $ */