HomeSort by relevance Sort by last modified time
    Searched full:num_rounds (Results 1 - 25 of 36) sorted by null

1 2

  /external/dropbear/libtomcrypt/src/modes/ecb/
ecb_start.c 26 @param num_rounds Number of rounds in the cipher desired (0 for default)
30 int ecb_start(int cipher, const unsigned char *key, int keylen, int num_rounds, symmetric_ECB *ecb)
41 return cipher_descriptor[cipher].setup(key, keylen, num_rounds, &ecb->key);
  /external/dropbear/libtomcrypt/src/modes/cbc/
cbc_start.c 26 @param num_rounds Number of rounds in the cipher desired (0 for default)
31 int keylen, int num_rounds, symmetric_CBC *cbc)
45 if ((err = cipher_descriptor[cipher].setup(key, keylen, num_rounds, &cbc->key)) != CRYPT_OK) {
  /external/dropbear/libtomcrypt/src/modes/cfb/
cfb_start.c 27 @param num_rounds Number of rounds in the cipher desired (0 for default)
32 int keylen, int num_rounds, symmetric_CFB *cfb)
52 if ((err = cipher_descriptor[cipher].setup(key, keylen, num_rounds, &cfb->key)) != CRYPT_OK) {
  /external/dropbear/libtomcrypt/src/modes/ofb/
ofb_start.c 27 @param num_rounds Number of rounds in the cipher desired (0 for default)
32 int keylen, int num_rounds, symmetric_OFB *ofb)
53 return cipher_descriptor[cipher].setup(key, keylen, num_rounds, &ofb->key);