commit | 55427964b1073e566acfa36786bc4ab3ad901b9c | [log] [tgz] |
---|---|---|
author | Jarno Lamsa <jarno.lamsa@arm.com> | Mon Apr 29 10:25:23 2019 +0300 |
committer | Jarno Lamsa <jarno.lamsa@arm.com> | Mon Apr 29 10:25:23 2019 +0300 |
tree | 3bf24cca72c4be7fee430f74010eec71ee1f48ab | |
parent | 8557fc9220e202be49e40e876b269f1743b7896f [diff] [blame] |
Guard tinycrypt files with MBEDTLS_USE_UECC
diff --git a/include/tinycrypt/ecc_dsa.h b/include/tinycrypt/ecc_dsa.h index aca00bc..8065340 100644 --- a/include/tinycrypt/ecc_dsa.h +++ b/include/tinycrypt/ecc_dsa.h
@@ -75,6 +75,7 @@ * the signer's public key and the signature values (r and s). */ +#if defined(MBEDTLS_USE_UECC) #ifndef __TC_ECC_DSA_H__ #define __TC_ECC_DSA_H__ @@ -137,3 +138,4 @@ #endif #endif /* __TC_ECC_DSA_H__ */ +#endif /* MBEDTLS_USE_UECC */