1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-14 11:39:03 +00:00
Go to file
2016-01-19 15:11:57 +01:00
gui gui: fixup after ECDSA updates 2015-07-07 10:58:08 +03:00
tools Remove unnecessary #include "secp256k1.h" 2015-07-07 10:39:12 +03:00
.gitignore remove scons dependency, build shared library with Makefile 2015-08-05 16:16:24 +02:00
.travis.yml travis: add pytest (for test_curves.py) 2015-07-31 11:40:13 +03:00
aes_modes.c
aes.h
aescrypt.c
aeskey.c
aesopt.h
aestab.c
aestab.h
AUTHORS
base58.c
base58.h
bignum.c bignum: constant time implementation for bn_mod() 2015-08-31 20:55:02 +03:00
bignum.h Extended comments, new function bn_add, a bug fix. 2015-08-06 19:09:23 +02:00
bip32.c Extended comments, new function bn_add, a bug fix. 2015-08-06 19:09:23 +02:00
bip32.h Add support for NIST256P1 elliptic curve 2015-06-26 10:33:14 +03:00
bip39_english.h
bip39.c implement bip39 cache 2016-01-19 15:11:57 +01:00
bip39.h
c.pxd
CMakeLists.txt
CONTRIBUTORS add CONTRIBUTORS file 2015-07-29 16:38:45 +02:00
ecdsa.c Added myself to copyright lines. 2015-08-19 21:45:21 +02:00
ecdsa.h New jacobian_add that handles doubling. 2015-08-05 21:23:04 +02:00
hmac.c
hmac.h
LICENSE
macros.h
Makefile remove scons dependency, build shared library with Makefile 2015-08-05 16:16:24 +02:00
MANIFEST.in
nist256p1.c New jacobian_add that handles doubling. 2015-08-05 21:23:04 +02:00
nist256p1.h Add support for NIST256P1 elliptic curve 2015-06-26 10:33:14 +03:00
nist256p1.table Add support for NIST256P1 elliptic curve 2015-06-26 10:33:14 +03:00
options.h implement bip39 cache 2016-01-19 15:11:57 +01:00
pbkdf2.c
pbkdf2.h
rand.c fix build on _WIN32 2015-12-14 22:50:28 +01:00
rand.h fix /dev/urandom problem 2015-05-04 19:53:06 +02:00
README.md README: add travis badge 2015-07-29 21:57:41 +03:00
ripemd160.c
ripemd160.h
secp256k1.c New jacobian_add that handles doubling. 2015-08-05 21:23:04 +02:00
secp256k1.h Add support for NIST256P1 elliptic curve 2015-06-26 10:33:14 +03:00
secp256k1.table Add support for NIST256P1 elliptic curve 2015-06-26 10:33:14 +03:00
setup.py whitespace 2015-07-06 12:48:11 -04:00
sha2.c
sha2.h
test_curves.py bignum: add specific tests for bn_mod() edge cases 2015-08-31 21:18:16 +03:00
test-openssl.c Add support for NIST256P1 elliptic curve 2015-06-26 10:33:14 +03:00
test.py
tests.c implement bip39 cache 2016-01-19 15:11:57 +01:00
TrezorCrypto.pyx whitespace 2015-07-06 12:48:11 -04:00

trezor-crypto

Build Status

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
  • 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.