Searched refs:cypher (Results 1 - 11 of 11) sorted by relevance

/freebsd-11-stable/contrib/wpa/src/crypto/
H A Dcrypto_none.c21 int des_encrypt(const u8 *clear, const u8 *key, u8 *cypher) argument
H A Dms_funcs.h54 const u8 *block, u8 *cypher);
H A Dms_funcs.c493 * @cypher: 16-octer Cypher (OUT)
497 const u8 *block, u8 *cypher)
499 if (des_encrypt(password_hash, block, cypher) < 0 ||
500 des_encrypt(password_hash + 8, block + 7, cypher + 8) < 0)
496 nt_password_hash_encrypted_with_block(const u8 *password_hash, const u8 *block, u8 *cypher) argument
H A Ddes-internal.c399 int des_encrypt(const u8 *clear, const u8 *key, u8 *cypher) argument
419 WPA_PUT_BE32(cypher, work[0]);
420 WPA_PUT_BE32(cypher + 4, work[1]);
H A Dcrypto_nettle.c29 int des_encrypt(const u8 *clear, const u8 *key, u8 *cypher) argument
45 nettle_des_encrypt(&ctx, DES_BLOCK_SIZE, cypher, clear);
H A Dcrypto_libtomcrypt.c38 int des_encrypt(const u8 *clear, const u8 *key, u8 *cypher) argument
54 des_ecb_encrypt(clear, cypher, &skey);
H A Dcrypto_gnutls.c48 int des_encrypt(const u8 *clear, const u8 *key, u8 *cypher) argument
65 gcry_cipher_encrypt(hd, cypher, 8, clear, 8);
H A Dcrypto.h108 * @cypher: 8 octets (out)
111 int des_encrypt(const u8 *clear, const u8 *key, u8 *cypher);
H A Dcrypto_linux.c607 int des_encrypt(const u8 *clear, const u8 *key, u8 *cypher) argument
655 ret = read(skcipher->t, cypher, 8);
H A Dcrypto_wolfssl.c285 int des_encrypt(const u8 *clear, const u8 *key, u8 *cypher) argument
301 wc_Des_EcbEncrypt(&des, cypher, clear, DES_BLOCK_SIZE);
H A Dcrypto_openssl.c195 int des_encrypt(const u8 *clear, const u8 *key, u8 *cypher) argument
211 DES_ecb_encrypt((DES_cblock *) clear, (DES_cblock *) cypher, &ks,

Completed in 82 milliseconds