Home | History | Annotate | Download | only in cbc

Lines Matching refs:cbc

15    CBC implementation, start chain, Tom St Denis
21 Initialize a CBC context
27 @param cbc The CBC state to initialize
31 int keylen, int num_rounds, symmetric_CBC *cbc)
37 LTC_ARGCHK(cbc != NULL);
45 if ((err = cipher_descriptor[cipher].setup(key, keylen, num_rounds, &cbc->key)) != CRYPT_OK) {
50 cbc->blocklen = cipher_descriptor[cipher].block_length;
51 cbc->cipher = cipher;
52 for (x = 0; x < cbc->blocklen; x++) {
53 cbc->IV[x] = IV[x];
60 /* $Source: /cvs/libtom/libtomcrypt/src/modes/cbc/cbc_start.c,v $ */