Searched refs:rawkey (Results 1 – 9 of 9) sorted by relevance
/netbsd-src/crypto/external/bsd/openssl/dist/crypto/seed/ |
H A D | seed.c | 446 void SEED_set_key(const unsigned char rawkey[SEED_KEY_LENGTH], in SEED_set_key() 452 char2word(rawkey, x1); in SEED_set_key() 453 char2word(rawkey + 4, x2); in SEED_set_key() 454 char2word(rawkey + 8, x3); in SEED_set_key() 455 char2word(rawkey + 12, x4); in SEED_set_key()
|
/netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/seed/ |
H A D | seed.c | 440 void SEED_set_key(const unsigned char rawkey[SEED_KEY_LENGTH], in SEED_set_key() 446 char2word(rawkey, x1); in SEED_set_key() 447 char2word(rawkey + 4, x2); in SEED_set_key() 448 char2word(rawkey + 8, x3); in SEED_set_key() 449 char2word(rawkey + 12, x4); in SEED_set_key()
|
/netbsd-src/sys/crypto/cast128/ |
H A D | cast128.c | 139 void cast128_setkey(cast128_key* key, const u_int8_t* rawkey, int keybytes) in cast128_setkey() argument 151 if ((i*4+0) < keybytes) x[i] = (u_int32_t)rawkey[i*4+0] << 24; in cast128_setkey() 152 if ((i*4+1) < keybytes) x[i] |= (u_int32_t)rawkey[i*4+1] << 16; in cast128_setkey() 153 if ((i*4+2) < keybytes) x[i] |= (u_int32_t)rawkey[i*4+2] << 8; in cast128_setkey() 154 if ((i*4+3) < keybytes) x[i] |= (u_int32_t)rawkey[i*4+3]; in cast128_setkey()
|
H A D | cast128.h | 19 void cast128_setkey(cast128_key *key, const u_int8_t *rawkey, int keybytes);
|
/netbsd-src/crypto/external/bsd/openssl.old/dist/include/openssl/ |
H A D | seed.h | 68 void SEED_set_key(const unsigned char rawkey[SEED_KEY_LENGTH],
|
/netbsd-src/crypto/external/bsd/openssl/dist/include/openssl/ |
H A D | seed.h | 77 void SEED_set_key(const unsigned char rawkey[SEED_KEY_LENGTH],
|
/netbsd-src/crypto/external/bsd/openssh/dist/ |
H A D | hostfile.c | 857 lineinfo.rawkey = cp = cp2; in hostkeys_foreach_file() 877 l = strcspn(lineinfo.rawkey, " \t"); in hostkeys_foreach_file() 879 lineinfo.rawkey[l] == '\0') in hostkeys_foreach_file() 881 memcpy(ktype, lineinfo.rawkey, l); in hostkeys_foreach_file()
|
H A D | hostfile.h | 100 const char *rawkey; /* Text of key and any comment following it */ member
|
/netbsd-src/external/gpl2/texinfo/dist/info/ |
H A D | session.c | 4988 int rawkey; in info_get_input_char() local 5006 rawkey = n == 1 ? c : EOF; in info_get_input_char() 5009 rawkey = (read (tty, &c, 1) == 1) ? c : EOF; in info_get_input_char() 5012 keystroke = rawkey; in info_get_input_char() 5014 if (rawkey == EOF) in info_get_input_char() 5024 rawkey = (read (tty, &c, 1) == 1) ? c : EOF; in info_get_input_char() 5025 keystroke = rawkey; in info_get_input_char() 5028 if (rawkey == EOF) in info_get_input_char()
|