aboutsummaryrefslogtreecommitdiff
path: root/openssl/crypto/seed/seed.h
diff options
context:
space:
mode:
Diffstat (limited to 'openssl/crypto/seed/seed.h')
-rw-r--r--openssl/crypto/seed/seed.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/openssl/crypto/seed/seed.h b/openssl/crypto/seed/seed.h
index 6ffa5f024..c50fdd360 100644
--- a/openssl/crypto/seed/seed.h
+++ b/openssl/crypto/seed/seed.h
@@ -116,7 +116,9 @@ typedef struct seed_key_st {
#endif
} SEED_KEY_SCHEDULE;
-
+#ifdef OPENSSL_FIPS
+void private_SEED_set_key(const unsigned char rawkey[SEED_KEY_LENGTH], SEED_KEY_SCHEDULE *ks);
+#endif
void SEED_set_key(const unsigned char rawkey[SEED_KEY_LENGTH], SEED_KEY_SCHEDULE *ks);
void SEED_encrypt(const unsigned char s[SEED_BLOCK_SIZE], unsigned char d[SEED_BLOCK_SIZE], const SEED_KEY_SCHEDULE *ks);