OSDN Git Service

Add support for ECDSA P-256 with SHA256
authorKenny Root <kroot@google.com>
Tue, 8 Oct 2013 19:52:07 +0000 (12:52 -0700)
committerKenny Root <kroot@google.com>
Thu, 10 Oct 2013 00:04:50 +0000 (17:04 -0700)
commitdb0850c3b637faaa7cbe1bab2e6c91ad2af35426
treee42c2a7bf92d55c4f0b35f9e85035b842fe40965
parent7dbe96602cde4822d22f17b85e33027563e8c521
Add support for ECDSA P-256 with SHA256

This adds a small EC library that is capable of verifying a signature of
SHA256 with ECDSA on the NIST P-256 curve.

Change-Id: I2a16639c92a77e8e4783c47ffbc56676de56eb59
16 files changed:
include/mincrypt/dsa_sig.h [new file with mode: 0644]
include/mincrypt/hash-internal.h
include/mincrypt/p256.h [new file with mode: 0644]
include/mincrypt/p256_ecdsa.h [new file with mode: 0644]
include/mincrypt/rsa.h
include/mincrypt/sha.h
include/mincrypt/sha256.h
libmincrypt/Android.mk
libmincrypt/dsa_sig.c [new file with mode: 0644]
libmincrypt/p256.c [new file with mode: 0644]
libmincrypt/p256_ec.c [new file with mode: 0644]
libmincrypt/p256_ecdsa.c [new file with mode: 0644]
libmincrypt/test/Android.mk
libmincrypt/test/ecdsa_test.c [new file with mode: 0644]
libmincrypt/tools/Android.mk
libmincrypt/tools/DumpPublicKey.java