1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-10 01:49:05 +00:00
Go to file
2016-04-20 10:38:11 +02: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 Adding cmake to travis 2016-01-26 22:32:41 +01: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 Use different seed modifier for different curves 2016-04-20 10:38:11 +02:00
bip32.h Added curve type to HDNode 2016-04-19 18:21:56 +02:00
bip39_english.h
bip39.c implement bip39 cache 2016-01-19 15:11:57 +01:00
bip39.h
c.pxd
CMakeLists.txt Adding nist256p1 to CMakeLists 2016-01-26 20:07:45 +01:00
CONTRIBUTORS add CONTRIBUTORS file 2015-07-29 16:38:45 +02:00
ecdsa.c Use different seed modifier for different curves 2016-04-20 10:38:11 +02:00
ecdsa.h Use different seed modifier for different curves 2016-04-20 10:38:11 +02:00
hmac.c
hmac.h
LICENSE adjust format of LICENSE 2016-01-31 12:16:31 +01:00
macros.h
Makefile remove scons dependency, build shared library with Makefile 2015-08-05 16:16:24 +02:00
MANIFEST.in
nist256p1.c Use different seed modifier for different curves 2016-04-20 10:38:11 +02:00
nist256p1.h Added curve type to HDNode 2016-04-19 18:21:56 +02: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 call progress callback at the beginning of pbkdf2 calculation 2016-01-19 15:34:31 +01:00
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 change ripemd160 function names to match sha2 functions 2016-04-14 17:28:46 +02:00
ripemd160.h change ripemd160 function names to match sha2 functions 2016-04-14 17:28:46 +02:00
secp256k1.c Use different seed modifier for different curves 2016-04-20 10:38:11 +02:00
secp256k1.h Added curve type to HDNode 2016-04-19 18:21:56 +02: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.