Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test #83

Closed
wants to merge 2 commits into from
Closed

test #83

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions debian/config/wpasupplicant/linux
Original file line number Diff line number Diff line change
Expand Up @@ -603,3 +603,6 @@ CONFIG_OWE=y
# This requires CONFIG_IEEE80211W=y to be enabled, too. (see
# wpa_supplicant/README-DPP for details)
CONFIG_DPP=y

# CONFIG_FIPS=y
CONFIG_OPENSSL_CMAC=y
1 change: 1 addition & 0 deletions src/crypto/aes-omac1.c
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ static void gf_mulx(u8 *pad)
int omac1_aes_vector(const u8 *key, size_t key_len, size_t num_elem,
const u8 *addr[], const size_t *len, u8 *mac)
{
wpa_printf(MSG_ERROR, "Self CMAC: omac1_aes_vector");
void *ctx;
u8 cbc[AES_BLOCK_SIZE], pad[AES_BLOCK_SIZE];
const u8 *pos, *end;
Expand Down
1 change: 1 addition & 0 deletions src/crypto/crypto_openssl.c
Original file line number Diff line number Diff line change
Expand Up @@ -1218,6 +1218,7 @@ int crypto_get_random(void *buf, size_t len)
int omac1_aes_vector(const u8 *key, size_t key_len, size_t num_elem,
const u8 *addr[], const size_t *len, u8 *mac)
{
wpa_printf(MSG_ERROR, "Openssl CMAC: omac1_aes_vector");
#if OPENSSL_VERSION_NUMBER >= 0x30000000L
EVP_MAC_CTX *ctx = NULL;
EVP_MAC *emac;
Expand Down
Loading