mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-03-24 22:25:11 +00:00
Add missing #ifdef in ecdsa.c
This commit is contained in:
parent
2bc16df2f4
commit
eadda3f3ad
|
@ -342,7 +342,8 @@ cleanup:
|
||||||
return( ret );
|
return( ret );
|
||||||
}
|
}
|
||||||
|
|
||||||
#if ! defined(POLARSSL_DEPRECATED_REMOVED)
|
#if ! defined(POLARSSL_DEPRECATED_REMOVED) && \
|
||||||
|
defined(POLARSSL_ECDSA_DETERMINISTIC)
|
||||||
int ecdsa_write_signature_det( ecdsa_context *ctx,
|
int ecdsa_write_signature_det( ecdsa_context *ctx,
|
||||||
const unsigned char *hash, size_t hlen,
|
const unsigned char *hash, size_t hlen,
|
||||||
unsigned char *sig, size_t *slen,
|
unsigned char *sig, size_t *slen,
|
||||||
|
|
Loading…
Reference in a new issue