| /src/sys/crypto/cast128/ |
| cast128.h | 19 void cast128_setkey(cast128_key *key, const u_int8_t *rawkey, int keybytes);
|
| cast128.c | 139 void cast128_setkey(cast128_key* key, const u_int8_t* rawkey, int keybytes) 151 if ((i*4+0) < keybytes) x[i] = (u_int32_t)rawkey[i*4+0] << 24; 152 if ((i*4+1) < keybytes) x[i] |= (u_int32_t)rawkey[i*4+1] << 16; 153 if ((i*4+2) < keybytes) x[i] |= (u_int32_t)rawkey[i*4+2] << 8; 154 if ((i*4+3) < keybytes) x[i] |= (u_int32_t)rawkey[i*4+3];
|
| /src/crypto/external/apache2/openssl/dist/include/openssl/ |
| seed.h | 76 void SEED_set_key(const unsigned char rawkey[SEED_KEY_LENGTH],
|
| /src/crypto/external/bsd/openssl/dist/include/openssl/ |
| seed.h | 77 void SEED_set_key(const unsigned char rawkey[SEED_KEY_LENGTH],
|
| /src/crypto/external/bsd/openssl.old/dist/include/openssl/ |
| seed.h | 68 void SEED_set_key(const unsigned char rawkey[SEED_KEY_LENGTH],
|
| /src/crypto/external/bsd/openssh/dist/ |
| hostfile.h | 100 const char *rawkey; /* Text of key and any comment following it */ member in struct:hostkey_foreach_line
|
| hostfile.c | 894 lineinfo.rawkey = cp = cp2; 914 l = strcspn(lineinfo.rawkey, " \t"); 916 lineinfo.rawkey[l] == '\0') 918 memcpy(ktype, lineinfo.rawkey, l);
|
| ssh-keygen.c | 1151 fprintf(ctx->out, "%s %s\n", hashed, l->rawkey);
|
| /src/crypto/external/apache2/openssl/dist/crypto/seed/ |
| seed.c | 435 void SEED_set_key(const unsigned char rawkey[SEED_KEY_LENGTH], 441 char2word(rawkey, x1); 442 char2word(rawkey + 4, x2); 443 char2word(rawkey + 8, x3); 444 char2word(rawkey + 12, x4);
|
| /src/crypto/external/bsd/openssl/dist/crypto/seed/ |
| seed.c | 446 void SEED_set_key(const unsigned char rawkey[SEED_KEY_LENGTH], 452 char2word(rawkey, x1); 453 char2word(rawkey + 4, x2); 454 char2word(rawkey + 8, x3); 455 char2word(rawkey + 12, x4);
|
| /src/crypto/external/bsd/openssl.old/dist/crypto/seed/ |
| seed.c | 440 void SEED_set_key(const unsigned char rawkey[SEED_KEY_LENGTH], 446 char2word(rawkey, x1); 447 char2word(rawkey + 4, x2); 448 char2word(rawkey + 8, x3); 449 char2word(rawkey + 12, x4);
|
| /src/external/gpl2/texinfo/dist/info/ |
| session.c | 5003 int rawkey; 5021 rawkey = n == 1 ? c : EOF; 5024 rawkey = (read (tty, &c, 1) == 1) ? c : EOF; 5027 keystroke = rawkey; 5029 if (rawkey == EOF) 5039 rawkey = (read (tty, &c, 1) == 1) ? c : EOF; 5040 keystroke = rawkey; 5043 if (rawkey == EOF) 4988 int rawkey; local
|