Home | History | Annotate | Download | only in ciphers

Lines Matching refs:num_rounds

890     @param num_rounds The number of rounds desired (0 for default)
895 static int _anubis_setup(const unsigned char *key, int keylen, int num_rounds, symmetric_key *skey)
897 int anubis_setup(const unsigned char *key, int keylen, int num_rounds, symmetric_key *skey)
925 if (num_rounds != 0 && num_rounds != skey->anubis.R) {
1029 int anubis_setup(const unsigned char *key, int keylen, int num_rounds, symmetric_key *skey)
1032 err = _anubis_setup(key, keylen, num_rounds, skey);