1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-13 19:18:56 +00:00
trezor-firmware/crypto
2020-07-07 14:41:10 +02:00
..
aes
chacha20poly1305 crypto: explicitly initialize variables 2019-10-09 17:05:33 +02:00
ed25519-donna crypto: explicitly initialize variables 2019-10-09 17:05:33 +02:00
fuzzer crypto: add fuzz testing harnesses and documentation 2020-07-07 14:41:10 +02:00
gui
monero
tests crypto/tests: parametrize test_bn_format 2020-06-26 12:29:21 +02:00
tools crypto/bignum: change limb size to 29, add tests 2020-05-24 14:36:38 +00:00
.gitignore
.gitmodules MONOREPO MERGE trezor-crypto 2019-04-15 19:14:52 +02:00
.gitrepo
address.c crypto: explicitly initialize variables 2019-10-09 17:05:33 +02:00
address.h
AUTHORS
base32.c
base32.h
base58.c crypto: Fix buffer overflow in b58tobin. 2020-05-24 14:36:37 +00:00
base58.h
bignum.c
bignum.h
bip32.c
bip32.h
bip39_english.h
bip39.c
bip39.h
blake2_common.h
blake2b.c
blake2b.h MONOREPO MERGE trezor-crypto 2019-04-15 19:14:52 +02:00
blake2s.c
blake2s.h
blake256.c
blake256.h all: remove extraneous whitespace 2019-05-26 22:20:14 +02:00
cash_addr.c crypto: explicitly initialize variables 2019-10-09 17:05:33 +02:00
cash_addr.h MONOREPO MERGE trezor-crypto 2019-04-15 19:14:52 +02:00
chacha_drbg.c
chacha_drbg.h
check_mem.h
CONTRIBUTORS crypto: add fuzz testing harnesses and documentation 2020-07-07 14:41:10 +02:00
curves.c
curves.h
ecdsa.c crypto: make ecdsa_recover_pub_from_sig faster 2020-06-17 18:56:03 +02:00
ecdsa.h
groestl_internal.h MONOREPO MERGE trezor-crypto 2019-04-15 19:14:52 +02:00
groestl.c
groestl.h
hasher.c crypto: explicitly initialize variables 2019-10-09 17:05:33 +02:00
hasher.h
hmac_drbg.c crypto: explicitly initialize variables 2019-10-09 17:05:33 +02:00
hmac_drbg.h
hmac.c
hmac.h
LICENSE
Makefile crypto: add fuzz testing harnesses and documentation 2020-07-07 14:41:10 +02:00
memzero.c crypto: add fuzz testing harnesses and documentation 2020-07-07 14:41:10 +02:00
memzero.h MONOREPO MERGE trezor-crypto 2019-04-15 19:14:52 +02:00
nem.c crypto: explicitly initialize variables 2019-10-09 17:05:33 +02:00
nem.h
nist256p1.c crypto/bignum: change limb size to 29, add tests 2020-05-24 14:36:38 +00:00
nist256p1.h MONOREPO MERGE trezor-crypto 2019-04-15 19:14:52 +02:00
nist256p1.table
options.h MONOREPO MERGE trezor-crypto 2019-04-15 19:14:52 +02:00
pbkdf2.c crypto: explicitly initialize variables 2019-10-09 17:05:33 +02:00
pbkdf2.h
rand.c crypto: explicitly initialize variables 2019-10-09 17:05:33 +02:00
rand.h MONOREPO MERGE trezor-crypto 2019-04-15 19:14:52 +02:00
rc4.c
rc4.h
README.md MONOREPO MERGE trezor-crypto 2019-04-15 19:14:52 +02:00
rfc6979.c crypto: explicitly initialize variables 2019-10-09 17:05:33 +02:00
rfc6979.h
ripemd160.c crypto: explicitly initialize variables 2019-10-09 17:05:33 +02:00
ripemd160.h
script.c crypto: explicitly initialize variables 2019-10-09 17:05:33 +02:00
script.h
secp256k1.c
secp256k1.h
secp256k1.table
segwit_addr.c
segwit_addr.h MONOREPO MERGE trezor-crypto 2019-04-15 19:14:52 +02:00
setup.py
sha2.c
sha2.h
sha3.c
sha3.h
shamir.c
shamir.h
slip39_wordlist.h
slip39.c
slip39.h core: add slip39 keyboard 2019-06-23 21:33:58 +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
  • Base32 (RFC4648 and custom alphabets)
  • Base58 address representation
  • Ed25519 signing/verifying (also SHA3 and Keccak variants)
  • 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 test_check.c)
  • tests against OpenSSL (in test_openssl.c)
  • integrated Wycheproof tests

Distibuted under MIT License.

Some parts of the library come from external sources: