1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-10 01:49:05 +00:00
Go to file
2014-01-14 14:35:13 +01:00
.gitignore
aes.h use fixed block size (128-bit) for AES again 2013-11-28 00:52:39 +01:00
aescrypt.c
aeskey.c
aesopt.h
aestab.c
AUTHORS
bignum.c add check that pub.y != res.y 2014-01-04 17:39:37 +01:00
bignum.h add check that pub.y != res.y 2014-01-04 17:39:37 +01:00
bip32.c implement public child key derivation 2014-01-14 14:35:13 +01:00
bip32.h implement public child key derivation 2014-01-14 14:35:13 +01:00
bip39_english.h bip39 implementation with unit tests 2013-11-08 02:02:16 +01:00
bip39.c bip39: pbkdf2 rounds 4096 -> 2048 2014-01-10 20:22:33 +01:00
bip39.h use PBKDF2 for BIP39, add unit tests 2013-12-09 16:25:03 +01:00
ecdsa.c implement public child key derivation 2014-01-14 14:35:13 +01:00
ecdsa.h implement public child key derivation 2014-01-14 14:35:13 +01:00
hmac.c
hmac.h
LICENSE
Makefile use PBKDF2 for BIP39, add unit tests 2013-12-09 16:25:03 +01:00
pbkdf2.c extract some pbkdf2 constants into macros 2013-12-09 18:16:33 +01:00
pbkdf2.h use PBKDF2 for BIP39, add unit tests 2013-12-09 16:25:03 +01:00
rand.c
rand.h
README use PBKDF2 for BIP39, add unit tests 2013-12-09 16:25:03 +01:00
ripemd160.c
ripemd160.h
secp256k1.c add check to mnemonic_from_data as well 2013-11-26 01:29:06 +01:00
secp256k1.h
sha2.c
sha2.h
test-openssl.c
tests.c implement public child key derivation 2014-01-14 14:35:13 +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.