summaryrefslogtreecommitdiff
path: root/src/crypto/fipsmodule/cipher/internal.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/crypto/fipsmodule/cipher/internal.h')
-rw-r--r--src/crypto/fipsmodule/cipher/internal.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/crypto/fipsmodule/cipher/internal.h b/src/crypto/fipsmodule/cipher/internal.h
index b9e61ec8..68efe33d 100644
--- a/src/crypto/fipsmodule/cipher/internal.h
+++ b/src/crypto/fipsmodule/cipher/internal.h
@@ -117,11 +117,9 @@ struct evp_aead_st {
// set to a function that encrypts single blocks. If not NULL, |*gcm_key| is
// initialised to do GHASH with the given key. It returns a function for
// optimised CTR-mode, or NULL if CTR-mode should be built using |*out_block|.
-// |large_input| is a hint to select AES implementations. If it is one, the
-// caller expects this key to be used with large inputs.
ctr128_f aes_ctr_set_key(AES_KEY *aes_key, GCM128_KEY *gcm_key,
block128_f *out_block, const uint8_t *key,
- size_t key_bytes, int large_input);
+ size_t key_bytes);
#if defined(__cplusplus)
} // extern C