commit | eadda3f3ad3cce8843ec89038dadf2d77df2df5b | [log] [tgz] |
---|---|---|
author | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | Fri Apr 03 13:14:48 2015 +0200 |
committer | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | Fri Apr 03 13:15:34 2015 +0200 |
tree | 0093528b952d6facb74aa756e64f1022cfd1a97d | |
parent | 2bc16df2f4cdfb961b22db4d45679b4963c34589 [diff] [blame] |
Add missing #ifdef in ecdsa.c
diff --git a/library/ecdsa.c b/library/ecdsa.c index 57f8035..b4cdfca 100644 --- a/library/ecdsa.c +++ b/library/ecdsa.c
@@ -342,7 +342,8 @@ return( ret ); } -#if ! defined(POLARSSL_DEPRECATED_REMOVED) +#if ! defined(POLARSSL_DEPRECATED_REMOVED) && \ + defined(POLARSSL_ECDSA_DETERMINISTIC) int ecdsa_write_signature_det( ecdsa_context *ctx, const unsigned char *hash, size_t hlen, unsigned char *sig, size_t *slen,