Skip to content

Commit 92f0293

Browse files
committed
more delocator attempts
1 parent 985551c commit 92f0293

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

crypto/fipsmodule/aes/mode_wrappers.c

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -87,13 +87,7 @@ static inline void aes_nohw_ctr32_encrypt_blocks_wrapper(const uint8_t *in,
8787
aes_nohw_ctr32_encrypt_blocks(in, out, len, key, ivec);
8888
}
8989

90-
#if defined(BSAES)
91-
static inline void vpaes_ctr32_encrypt_blocks_with_bsaes_wrapper(
92-
const uint8_t *in, uint8_t *out, size_t len, const AES_KEY *key,
93-
const uint8_t ivec[16]) {
94-
vpaes_ctr32_encrypt_blocks_with_bsaes(in, out, len, key, ivec);
95-
}
96-
#elif defined(VPAES_CTR32)
90+
#if defined(VPAES_CTR32)
9791
static inline void vpaes_ctr32_encrypt_blocks_wrapper(const uint8_t *in,
9892
uint8_t *out, size_t len,
9993
const AES_KEY *key,

0 commit comments

Comments
 (0)