1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-02-28 23:32:05 +00:00
Go to file
2017-06-03 23:39:36 +02:00
aes update AES code from Github 2017-05-08 17:08:48 +02:00
chacha20poly1305 fix chacha20poly1305 issues 2017-05-11 13:27:59 +02:00
ed25519-donna don't skip const if not using gcc 2017-04-02 02:54:46 +02:00
emscripten Changing this to self in emscripten post 2017-05-04 14:49:33 +02:00
gui introduce version attributes to hdnode_serialize_public/private and hdnode_deserialize functions 2017-04-21 13:42:58 +02:00
tools fix xpubaddrgen 2017-04-21 13:53:10 +02:00
.gitignore
.travis.yml travis.yml: Add Valgrind 2017-06-03 23:39:36 +02:00
address.c
address.h
AUTHORS
base58.c
base58.h
bignum.c bignum: add bn_format 2017-05-17 17:49:35 +02:00
bignum.h bignum: add bn_format 2017-05-17 17:49:35 +02:00
bip32.c whitespace in bip32.[ch], formatting in readme 2017-05-08 15:27:20 +02:00
bip32.h whitespace in bip32.[ch], formatting in readme 2017-05-08 15:27:20 +02:00
bip39_english.h
bip39.c
bip39.h
blake2_common.h
blake2b.c
blake2b.h
blake2s.c
blake2s.h
check_mem.h check_mem: Fix Check 0.11 2017-06-03 23:39:36 +02:00
CMakeLists.txt update CMakeLists.txt as well 2017-05-08 17:53:48 +02:00
CONTRIBUTORS
curves.c
curves.h
ecdsa.c split rfc6979 from ecdsa into separate module 2017-04-03 20:58:53 +02:00
ecdsa.h split rfc6979 from ecdsa into separate module 2017-04-03 20:58:53 +02:00
hmac.c
hmac.h
LICENSE
macros.h
Makefile bignum: add bn_format 2017-05-17 17:49:35 +02:00
nist256p1.c
nist256p1.h
nist256p1.table
options.h
pbkdf2.c
pbkdf2.h
rand.c
rand.h
README.md add chacha20poly1305 2017-05-11 13:27:34 +02:00
rfc6979.c split rfc6979 from ecdsa into separate module 2017-04-03 20:58:53 +02:00
rfc6979.h split rfc6979 from ecdsa into separate module 2017-04-03 20:58:53 +02:00
ripemd160.c
ripemd160.h
script.c
script.h
secp256k1.c
secp256k1.h
secp256k1.table
setup.py
sha2.c
sha2.h
sha3.c
sha3.h
test_curves.py fix build 2017-03-30 15:07:29 +02:00
test_speed.c Fixing C test of optimized bip32 2017-04-11 16:59:29 +02:00
test-openssl.c
tests.c tests: Skip speed tests when running on Valgrind 2017-06-03 23:39:36 +02:00

trezor-crypto

Build Status gitter

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 (supports secp256k1 and nist256p1 curves, uses RFC6979 for deterministic signatures)
  • ECDSA public key derivation
  • Base58 address representation
  • Ed25519 signing/verifying
  • ECDH using secp256k1, nist256p1 and Curve25519
  • HMAC-SHA256 and HMAC-SHA512
  • PBKDF2
  • RIPEMD-160
  • SHA1
  • SHA2-256/SHA2-512
  • SHA3/Keccak
  • BLAKE2s/BLAKE2b
  • Chacha20-Poly1305
  • unit tests (using Check - check.sf.net; in tests.c)
  • tests against OpenSSL (in test-openssl.c)

Distibuted under MIT License.

Some parts of the library come from external sources: