1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-10 09:58:59 +00:00
Go to file
2014-12-23 03:11:58 +01:00
gui add more checks for improbable cases; rework gui testing app 2014-08-07 18:35:54 +02:00
.gitignore add more checks for improbable cases; rework gui testing app 2014-08-07 18:35:54 +02:00
aes_modes.c rename aes_ctr_counter_inc to aes_ctr_cbuf_inc and move it to aes_modes.c 2014-06-07 14:16:27 +02:00
aes.h rename aes_ctr_counter_inc to aes_ctr_cbuf_inc and move it to aes_modes.c 2014-06-07 14:16:27 +02:00
aescrypt.c update AES code to support different modes of operation, add unittests 2014-06-07 13:38:56 +02:00
aeskey.c update AES code to support different modes of operation, add unittests 2014-06-07 13:38:56 +02:00
aesopt.h don't include aescpp.h 2014-07-24 15:26:50 +02:00
aestab.c update AES code to support different modes of operation, add unittests 2014-06-07 13:38:56 +02:00
aestab.h update AES code to support different modes of operation, add unittests 2014-06-07 13:38:56 +02:00
AUTHORS
base58.c replace base58 implementation 2014-12-23 03:11:58 +01:00
base58.h replace base58 implementation 2014-12-23 03:11:58 +01:00
bignum.c rename BN_PRINT define to USE_BN_PRINT 2014-07-07 21:24:10 +02:00
bignum.h rename BN_PRINT define to USE_BN_PRINT 2014-07-07 21:24:10 +02:00
bip32.c replace base58 implementation 2014-12-23 03:11:58 +01:00
bip32.h replace base58 implementation 2014-12-23 03:11:58 +01:00
bip39_english.h
bip39.c split pbkdf2 into pbkdf2_hmac_sha256 and pbkdf2_hmac_sha512 2014-10-30 01:35:13 +01:00
bip39.h update AES code to support different modes of operation, add unittests 2014-06-07 13:38:56 +02:00
CMakeLists.txt Make test build optional in CMake 2014-07-17 12:51:00 -05:00
ecdsa.c replace base58 implementation 2014-12-23 03:11:58 +01:00
ecdsa.h replace base58 implementation 2014-12-23 03:11:58 +01:00
hmac.c
hmac.h
LICENSE
Makefile use $(CC) instead of gcc in Makefile 2014-08-11 02:04:42 +02:00
options.h rename BN_PRINT define to USE_BN_PRINT 2014-07-07 21:24:10 +02:00
pbkdf2.c split pbkdf2 into pbkdf2_hmac_sha256 and pbkdf2_hmac_sha512 2014-10-30 01:35:13 +01:00
pbkdf2.h split pbkdf2 into pbkdf2_hmac_sha256 and pbkdf2_hmac_sha512 2014-10-30 01:35:13 +01:00
rand.c Test fread return value 2014-07-16 08:06:15 -05:00
rand.h Test fread return value 2014-07-16 08:06:15 -05:00
README
ripemd160.c
ripemd160.h
secp256k1.c Revert "Revert "add more precomputation to ecdsa signing"" 2014-07-03 10:09:45 +02:00
secp256k1.h Revert "Revert "add more precomputation to ecdsa signing"" 2014-07-03 10:09:45 +02:00
sha2.c
sha2.h
test-openssl.c export pby from ecdsa_sign functions 2014-12-08 21:08:49 +01:00
tests.c replace base58 implementation 2014-12-23 03:11:58 +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.