summaryrefslogtreecommitdiffstats
path: root/crypto/seed/seed.h
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/seed/seed.h')
-rw-r--r--crypto/seed/seed.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/crypto/seed/seed.h b/crypto/seed/seed.h
index 6ffa5f024e..c50fdd3607 100644
--- a/crypto/seed/seed.h
+++ b/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);