rawkey 133 crypto/cast.c cast_setkey(cast_key *key, u_int8_t *rawkey, int keybytes) rawkey 144 crypto/cast.c if ((i*4+0) < keybytes) x[i] = (u_int32_t)rawkey[i*4+0] << 24; rawkey 145 crypto/cast.c if ((i*4+1) < keybytes) x[i] |= (u_int32_t)rawkey[i*4+1] << 16; rawkey 146 crypto/cast.c if ((i*4+2) < keybytes) x[i] |= (u_int32_t)rawkey[i*4+2] << 8; rawkey 147 crypto/cast.c if ((i*4+3) < keybytes) x[i] |= (u_int32_t)rawkey[i*4+3]; rawkey 18 crypto/cast.h void cast_setkey(cast_key * key, u_int8_t * rawkey, int keybytes);