├── Android.mk ├── NOTICE ├── dsa_sig.c ├── include └── mincrypt │ ├── dsa_sig.h │ ├── hash-internal.h │ ├── p256.h │ ├── p256_ecdsa.h │ ├── rsa.h │ ├── sha.h │ └── sha256.h ├── p256.c ├── p256_ec.c ├── p256_ecdsa.c ├── rsa.c ├── sha.c └── sha256.c /Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/mincrypt/HEAD/Android.mk -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/mincrypt/HEAD/NOTICE -------------------------------------------------------------------------------- /dsa_sig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/mincrypt/HEAD/dsa_sig.c -------------------------------------------------------------------------------- /include/mincrypt/dsa_sig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/mincrypt/HEAD/include/mincrypt/dsa_sig.h -------------------------------------------------------------------------------- /include/mincrypt/hash-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/mincrypt/HEAD/include/mincrypt/hash-internal.h -------------------------------------------------------------------------------- /include/mincrypt/p256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/mincrypt/HEAD/include/mincrypt/p256.h -------------------------------------------------------------------------------- /include/mincrypt/p256_ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/mincrypt/HEAD/include/mincrypt/p256_ecdsa.h -------------------------------------------------------------------------------- /include/mincrypt/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/mincrypt/HEAD/include/mincrypt/rsa.h -------------------------------------------------------------------------------- /include/mincrypt/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/mincrypt/HEAD/include/mincrypt/sha.h -------------------------------------------------------------------------------- /include/mincrypt/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/mincrypt/HEAD/include/mincrypt/sha256.h -------------------------------------------------------------------------------- /p256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/mincrypt/HEAD/p256.c -------------------------------------------------------------------------------- /p256_ec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/mincrypt/HEAD/p256_ec.c -------------------------------------------------------------------------------- /p256_ecdsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/mincrypt/HEAD/p256_ecdsa.c -------------------------------------------------------------------------------- /rsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/mincrypt/HEAD/rsa.c -------------------------------------------------------------------------------- /sha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/mincrypt/HEAD/sha.c -------------------------------------------------------------------------------- /sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/mincrypt/HEAD/sha256.c --------------------------------------------------------------------------------