fix opensslextra w/ dsa additions

This commit is contained in:
toddouska
2015-07-03 09:53:48 -07:00
parent e2689a0656
commit 9b0c1499c3
2 changed files with 2 additions and 2 deletions

View File

@ -4641,7 +4641,7 @@ WOLFSSL_LOCAL int SetSerialNumber(const byte* sn, word32 snSz, byte* output)
#if defined(WOLFSSL_KEY_GEN) || defined(WOLFSSL_CERT_GEN)
#if defined(WOLFSSL_KEY_GEN) || defined(WOLFSSL_CERT_GEN) || !defined(NO_DSA)
/* convert der buffer to pem into output, can't do inplace, der and output
need to be different */

View File

@ -175,7 +175,7 @@ WOLFSSL_API int wc_SetDatesBuffer(Cert*, const byte*, int);
#endif /* WOLFSSL_CERT_GEN */
#if defined(WOLFSSL_KEY_GEN) || defined(WOLFSSL_CERT_GEN)
#if defined(WOLFSSL_KEY_GEN) || defined(WOLFSSL_CERT_GEN) || !defined(NO_DSA)
WOLFSSL_API int wc_DerToPem(const byte* der, word32 derSz, byte* output,
word32 outputSz, int type);
#endif