1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-10 01:49:05 +00:00
Go to file
2014-02-15 15:57:41 +01:00
.gitignore
aes.h
aescrypt.c
aeskey.c
aesopt.h
aestab.c
AUTHORS
bignum.c llu -> ull for MSVC compatibility 2014-02-15 15:57:41 +01:00
bignum.h introduce ecdsa_address_to_hash160 2014-01-30 20:34:05 +01:00
bip32.c don't use implicit versions in bip32 2014-01-21 18:38:44 +01:00
bip32.h don't use implicit versions in bip32 2014-01-21 18:38:44 +01:00
bip39_english.h
bip39.c bip39: pbkdf2 rounds 4096 -> 2048 2014-01-10 20:22:33 +01:00
bip39.h
ecdsa.c use -Wextra 2014-02-08 19:12:07 +01:00
ecdsa.h introduce point_multiply 2014-02-05 23:38:37 +01:00
hmac.c
hmac.h
LICENSE
Makefile use -Wextra 2014-02-08 19:12:07 +01:00
pbkdf2.c
pbkdf2.h
rand.c
rand.h
README
ripemd160.c
ripemd160.h
secp256k1.c
secp256k1.h
sha2.c
sha2.h
test-openssl.c
tests.c use -Wextra 2014-02-08 19:12:07 +01:00

trezor-crypto
=============

Heavily optimized cryptography algorithms for embedded devices.

These include:
- AES/Rijndael encryption/decryption
- Big Number (256 bit) Arithmetics
- BIP32 Hierarchical Deterministic Wallets
- BIP39 Mnemonic code
- ECDSA signing/verifying (only hardcoded secp256k1 curve,
  uses RFC6979 for deterministic signatures)
- ECDSA public key derivation + Base58 address representation
- HMAC-SHA256 and HMAC-SHA512
- PBKDF2
- RIPEMD-160
- SHA256/SHA512
- unit tests (using Check - check.sf.net; in tests.c)
- tests against OpenSSL (in test-openssl.c)

Distibuted under MIT License.