remove EccPublicKeyDecode() from WOLFSSL_CERT_EXT guard

This commit is contained in:
Chris Conlon
2017-03-15 17:28:52 -06:00
parent 4725a8aea6
commit a7f8bdb387

View File

@ -9204,7 +9204,7 @@ int wc_EccPrivateKeyDecode(const byte* input, word32* inOutIdx, ecc_key* key,
return ret; return ret;
} }
#ifdef WOLFSSL_CERT_EXT
int wc_EccPublicKeyDecode(const byte* input, word32* inOutIdx, int wc_EccPublicKeyDecode(const byte* input, word32* inOutIdx,
ecc_key* key, word32 inSz) ecc_key* key, word32 inSz)
{ {
@ -9258,7 +9258,6 @@ int wc_EccPublicKeyDecode(const byte* input, word32* inOutIdx,
return 0; return 0;
} }
#endif
#ifdef WOLFSSL_KEY_GEN #ifdef WOLFSSL_KEY_GEN