cipherKey         745 source4/heimdal/lib/hcrypto/rijndael-alg-fst.c int rijndaelKeySetupEnc(u32 rk[/*4*(Nr + 1)*/], const u8 cipherKey[], int keyBits) {
cipherKey         749 source4/heimdal/lib/hcrypto/rijndael-alg-fst.c 	rk[0] = GETU32(cipherKey     );
cipherKey         750 source4/heimdal/lib/hcrypto/rijndael-alg-fst.c 	rk[1] = GETU32(cipherKey +  4);
cipherKey         751 source4/heimdal/lib/hcrypto/rijndael-alg-fst.c 	rk[2] = GETU32(cipherKey +  8);
cipherKey         752 source4/heimdal/lib/hcrypto/rijndael-alg-fst.c 	rk[3] = GETU32(cipherKey + 12);
cipherKey         771 source4/heimdal/lib/hcrypto/rijndael-alg-fst.c 	rk[4] = GETU32(cipherKey + 16);
cipherKey         772 source4/heimdal/lib/hcrypto/rijndael-alg-fst.c 	rk[5] = GETU32(cipherKey + 20);
cipherKey         793 source4/heimdal/lib/hcrypto/rijndael-alg-fst.c 	rk[6] = GETU32(cipherKey + 24);
cipherKey         794 source4/heimdal/lib/hcrypto/rijndael-alg-fst.c 	rk[7] = GETU32(cipherKey + 28);
cipherKey         831 source4/heimdal/lib/hcrypto/rijndael-alg-fst.c int rijndaelKeySetupDec(u32 rk[/*4*(Nr + 1)*/], const u8 cipherKey[], int keyBits) {
cipherKey         836 source4/heimdal/lib/hcrypto/rijndael-alg-fst.c 	Nr = rijndaelKeySetupEnc(rk, cipherKey, keyBits);
cipherKey          41 source4/heimdal/lib/hcrypto/rijndael-alg-fst.h int rijndaelKeySetupEnc(uint32_t rk[/*4*(Nr + 1)*/], const uint8_t cipherKey[], int keyBits);
cipherKey          42 source4/heimdal/lib/hcrypto/rijndael-alg-fst.h int rijndaelKeySetupDec(uint32_t rk[/*4*(Nr + 1)*/], const uint8_t cipherKey[], int keyBits);