Searched refs:keyBits (Results 1 - 5 of 5) sorted by relevance

/freebsd-10.0-release/contrib/wpa/src/crypto/
H A Daes-internal-dec.c28 static int rijndaelKeySetupDec(u32 rk[], const u8 cipherKey[], int keyBits) argument
34 Nr = rijndaelKeySetupEnc(rk, cipherKey, keyBits);
H A Daes_i.h123 int rijndaelKeySetupEnc(u32 rk[], const u8 cipherKey[], int keyBits);
H A Daes-internal.c779 int rijndaelKeySetupEnc(u32 rk[], const u8 cipherKey[], int keyBits) argument
789 if (keyBits == 128) {
805 if (keyBits == 192) {
824 if (keyBits == 256) {
/freebsd-10.0-release/sys/crypto/rijndael/
H A Drijndael-alg-fst.c735 int rijndaelKeySetupEnc(u32 rk[/*4*(Nr + 1)*/], const u8 cipherKey[], int keyBits) { argument
739 KASSERT(keyBits == 128 || keyBits == 192 || keyBits == 256,
740 ("Invalid key size (%d).", keyBits));
745 if (keyBits == 128) {
765 if (keyBits == 192) {
787 if (keyBits == 256) {
823 int rijndaelKeySetupDec(u32 rk[/*4*(Nr + 1)*/], const u8 cipherKey[], int keyBits) { argument
828 Nr = rijndaelKeySetupEnc(rk, cipherKey, keyBits);
[all...]
/freebsd-10.0-release/crypto/openssh/
H A Drijndael.c727 static int rijndaelKeySetupEnc(u32 rk[/*4*(Nr + 1)*/], const u8 cipherKey[], int keyBits) { argument
735 if (keyBits == 128) {
755 if (keyBits == 192) {
777 if (keyBits == 256) {
813 rijndaelKeySetupDec(u32 rk[/*4*(Nr + 1)*/], const u8 cipherKey[], int keyBits, argument
822 Nr = rijndaelKeySetupEnc(rk, cipherKey, keyBits);

Completed in 86 milliseconds