Searched refs:rawkey (Results 1 - 7 of 7) sorted by relevance

/freebsd-9.3-release/sys/opencrypto/
H A Dcast.h19 void cast_setkey(cast_key * key, u_int8_t * rawkey, int keybytes);
H A Dcast.c132 void cast_setkey(cast_key* key, u_int8_t* rawkey, int keybytes) argument
143 if ((i*4+0) < keybytes) x[i] = (u_int32_t)rawkey[i*4+0] << 24;
144 if ((i*4+1) < keybytes) x[i] |= (u_int32_t)rawkey[i*4+1] << 16;
145 if ((i*4+2) < keybytes) x[i] |= (u_int32_t)rawkey[i*4+2] << 8;
146 if ((i*4+3) < keybytes) x[i] |= (u_int32_t)rawkey[i*4+3];
/freebsd-9.3-release/crypto/openssl/crypto/seed/
H A Dseed.h116 void SEED_set_key(const unsigned char rawkey[SEED_KEY_LENGTH],
H A Dseed.c732 void SEED_set_key(const unsigned char rawkey[SEED_KEY_LENGTH], argument
738 char2word(rawkey, x1);
739 char2word(rawkey + 4, x2);
740 char2word(rawkey + 8, x3);
741 char2word(rawkey + 12, x4);
/freebsd-9.3-release/sys/geom/eli/
H A Dg_eli_key_cache.c324 g_eli_key_drop(struct g_eli_softc *sc, uint8_t *rawkey) argument
326 struct g_eli_key *key = (struct g_eli_key *)rawkey;
H A Dg_eli.h566 void g_eli_key_drop(struct g_eli_softc *sc, uint8_t *rawkey);
/freebsd-9.3-release/contrib/texinfo/info/
H A Dsession.c5001 int rawkey;
5019 rawkey = n == 1 ? c : EOF;
5022 rawkey = (read (tty, &c, 1) == 1) ? c : EOF;
5025 keystroke = rawkey;
5027 if (rawkey == EOF)
5037 rawkey = (read (tty, &c, 1) == 1) ? c : EOF;
5038 keystroke = rawkey;
5041 if (rawkey == EOF)
4986 int rawkey; local

Completed in 118 milliseconds