Repository: incubator-mynewt-core Updated Branches: refs/heads/develop b455cb0bf -> d08a47c1e
boot; drop unnecessary include from image_ec.c. Project: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/commit/d08a47c1 Tree: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/tree/d08a47c1 Diff: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/diff/d08a47c1 Branch: refs/heads/develop Commit: d08a47c1e0942121acc4c3faf2d39bbb66d05016 Parents: bf7b616 Author: Marko Kiiskila <[email protected]> Authored: Thu Dec 29 17:31:00 2016 -0800 Committer: Marko Kiiskila <[email protected]> Committed: Thu Dec 29 17:32:34 2016 -0800 ---------------------------------------------------------------------- boot/bootutil/src/image_ec.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/d08a47c1/boot/bootutil/src/image_ec.c ---------------------------------------------------------------------- diff --git a/boot/bootutil/src/image_ec.c b/boot/bootutil/src/image_ec.c index 6ddac59..f0c5d35 100644 --- a/boot/bootutil/src/image_ec.c +++ b/boot/bootutil/src/image_ec.c @@ -22,7 +22,6 @@ #if MYNEWT_VAL(BOOTUTIL_SIGN_EC) #include "bootutil/sign_key.h" -#include "mbedtls/sha256.h" #include "mbedtls/ecdsa.h" #include "mbedtls/oid.h" #include "mbedtls/asn1.h" @@ -36,7 +35,7 @@ static const uint8_t ec_pubkey_oid[] = MBEDTLS_OID_EC_ALG_UNRESTRICTED; static const uint8_t ec_secp224r1_oid[] = MBEDTLS_OID_EC_GRP_SECP224R1; /* - * Parse the public key used for signing. Simple RSA format. + * Parse the public key used for signing. */ static int bootutil_parse_eckey(mbedtls_ecdsa_context *ctx, uint8_t **p, uint8_t *end)
