| /src/crypto/external/apache2/openssl/lib/libdes/ |
| rpc_des.h | 109 unsigned char des_key[8]; /* key (with low bit parity) */ member in struct:desparams
|
| /src/crypto/external/bsd/openssl/lib/libdes/ |
| rpc_des.h | 109 unsigned char des_key[8]; /* key (with low bit parity) */ member in struct:desparams
|
| /src/crypto/external/bsd/openssl.old/lib/libdes/ |
| rpc_des.h | 109 unsigned char des_key[8]; /* key (with low bit parity) */ member in struct:desparams
|
| /src/external/bsd/ppp/dist/pppd/ |
| crypto_ms.c | 109 MakeKey(const unsigned char *key, unsigned char *des_key) 112 /* des_key OUT 64 bit DES key with parity bits added */ 113 des_key[0] = Get7Bits(key, 0); 114 des_key[1] = Get7Bits(key, 7); 115 des_key[2] = Get7Bits(key, 14); 116 des_key[3] = Get7Bits(key, 21); 117 des_key[4] = Get7Bits(key, 28); 118 des_key[5] = Get7Bits(key, 35); 119 des_key[6] = Get7Bits(key, 42); 120 des_key[7] = Get7Bits(key, 49) 130 unsigned char des_key[8]; local 159 unsigned char des_key[8]; local [all...] |
| /src/crypto/external/apache2/openssl/dist/test/ |
| evp_skey_test.c | 198 unsigned char des_key[DES_KEY_SIZE], des_iv[DES_IV_SIZE]; local 215 memset(des_key, 1, DES_KEY_SIZE); 224 skey = EVP_SKEY_import_raw_key(libctx, "DES", des_key, sizeof(des_key), 230 || !TEST_mem_eq(des_key, DES_KEY_SIZE, export_key, export_length)) 246 if (!TEST_int_gt(EVP_CipherInit_ex2(ctx, des_cbc, des_key, des_iv, 1, NULL), 0)
|