forked from oday0311/trezor-crypto-ios
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTrezorCrypto.h
47 lines (45 loc) · 988 Bytes
/
TrezorCrypto.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#ifdef __OBJC__
#import <Foundation/Foundation.h>
#else
#ifndef FOUNDATION_EXPORT
#if defined(__cplusplus)
#define FOUNDATION_EXPORT extern "C"
#else
#define FOUNDATION_EXPORT extern
#endif
#endif
#endif
FOUNDATION_EXPORT double TrezorCryptoVersionNumber;
FOUNDATION_EXPORT const unsigned char TrezorCryptoVersionString[];
#include "aes.h"
#include "chacha20poly1305.h"
#include "ed25519-donna.h"
#include "address.h"
#include "base32.h"
#include "base58.h"
#include "bignum.h"
#include "bip32.h"
#include "bip39.h"
#include "blake256.h"
#include "blake2b.h"
#include "blake2s.h"
#include "cash_addr.h"
#include "curves.h"
#include "ecdsa.h"
#include "groestl.h"
#include "hasher.h"
#include "hmac.h"
#include "memzero.h"
#include "nem.h"
#include "nist256p1.h"
#include "pbkdf2.h"
#include "rand.h"
#include "rc4.h"
#include "rfc6979.h"
#include "rfc7539.h"
#include "ripemd160.h"
#include "script.h"
#include "secp256k1.h"
#include "segwit_addr.h"
#include "sha2.h"
#include "sha3.h"