You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Go to file
Saleem Rashid 56114cc0a6
nem: Add nem_transaction_create_importance_transfer
7 years ago
aes gitignore: Add aestst 7 years ago
chacha20poly1305 fix chacha20poly1305 issues 7 years ago
ed25519-donna ed25519-donna: Remove duplicate static code 7 years ago
gui introduce version attributes to hdnode_serialize_public/private and hdnode_deserialize functions 7 years ago
tools bip32: Add hdnode_nem_{en,de}crypt 7 years ago
.gitignore gitignore: Add aestst 7 years ago
.travis.yml Travis CI: Run aestst 7 years ago
AUTHORS import sources 11 years ago
CMakeLists.txt bip32: Add hdnode_get_nem_address 7 years ago
CONTRIBUTORS bignum: introduce read/write_le 8 years ago
LICENSE adjust format of LICENSE 8 years ago
Makefile bip32: Add hdnode_get_nem_address 7 years ago
README.md README: Add Base32 custom alphabet support 7 years ago
address.c fix ethereum_address_checksum implementation 7 years ago
address.h include options.h in address.h 7 years ago
base32.c base32: Handle when char is unsigned 7 years ago
base32.h base32: Return char* from base32_encode 7 years ago
base58.c GCC 7.1.1 -Wimplicit-fallthrough comments 7 years ago
base58.h include options.h to base58.h 8 years ago
bignum.c bignum: Fix bn_digitcount 7 years ago
bignum.h bignum: Fix bn_digitcount 7 years ago
bip32.c bip32: Add hdnode_nem_{en,de}crypt 7 years ago
bip32.h bip32: Add hdnode_nem_{en,de}crypt 7 years ago
bip39.c introduce confidential macro, mark confidential items 7 years ago
bip39.h add mnemonic generation methods with indexes option 8 years ago
bip39_english.h Make word list const 9 years ago
blake2_common.h add Blake2b 7 years ago
blake2b.c add Blake2b 7 years ago
blake2b.h use BLOCK_LENGTH and DIGEST_LENGTH across all hash functions 7 years ago
blake2s.c add Blake2b 7 years ago
blake2s.h use BLOCK_LENGTH and DIGEST_LENGTH across all hash functions 7 years ago
check_mem.h check_mem: Fix Check 0.11 7 years ago
curves.c curves: Add ed25519-sha3 & ed25519-keccak 7 years ago
curves.h curves: Add ed25519-sha3 & ed25519-keccak 7 years ago
ecdsa.c introduce confidential macro, mark confidential items 7 years ago
ecdsa.h refactor ecdsa_get_address_segwit_p2sh{,_raw} 7 years ago
hmac.c introduce confidential macro, mark confidential items 7 years ago
hmac.h Faster PBKDF2 by reusing intermediate results. 8 years ago
macros.h cleanup coding style 9 years ago
nem.c nem: Add nem_transaction_create_importance_transfer 7 years ago
nem.h nem: Add nem_transaction_create_importance_transfer 7 years ago
nem_serialize.h nem: Add transaction serialization methods 7 years ago
nist256p1.c ed25519 support 8 years ago
nist256p1.h ed25519 support 8 years ago
nist256p1.table Add support for NIST256P1 elliptic curve 9 years ago
options.h options: Add NEM support 7 years ago
pbkdf2.c Faster PBKDF2 by reusing intermediate results. 8 years ago
pbkdf2.h Faster PBKDF2 by reusing intermediate results. 8 years ago
rand.c fix build on _WIN32 9 years ago
rand.h fix /dev/urandom problem 9 years ago
rc4.c rc4: Initial commit 7 years ago
rc4.h rc4: Initial commit 7 years ago
rfc6979.c split rfc6979 from ecdsa into separate module 7 years ago
rfc6979.h split rfc6979 from ecdsa into separate module 7 years ago
ripemd160.c cleanup context in ripemd160/sha3 7 years ago
ripemd160.h extract block size and digest size as macros in ripemd160 8 years ago
script.c add script parsing functions 8 years ago
script.h add script parsing functions 8 years ago
secp256k1.c ed25519 support 8 years ago
secp256k1.h ed25519 support 8 years ago
secp256k1.table Add support for NIST256P1 elliptic curve 9 years ago
setup.py Add Python tests for Curve25519 ECDH 8 years ago
sha2.c sha1: fix context zeroing 8 years ago
sha2.h sha2: import SHA1 implementation 8 years ago
sha3.c cleanup context in ripemd160/sha3 7 years ago
sha3.h tests: Import NEM test vectors for keccak_256 7 years ago
test_check.c test_check: Add nem_transaction test case 7 years ago
test_curves.py fix build 7 years ago
test_openssl.c test_openssl: test for NIST curve too 7 years ago
test_speed.c remove test_{sign,verify}_speed from tests.c, rename tests to test_check.c, rework test_speed 7 years ago

README.md

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)

Distibuted under MIT License.

Some parts of the library come from external sources: