mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-12 18:49:07 +00:00
rename hasher_multisig to hasher_script
This commit is contained in:
parent
f9caee2489
commit
b679a6b2a7
10
bip32.c
10
bip32.c
@ -56,7 +56,7 @@ const curve_info ed25519_info = {
|
||||
.hasher_base58 = HASHER_SHA2D,
|
||||
.hasher_sign = HASHER_SHA2D,
|
||||
.hasher_pubkey = HASHER_SHA2_RIPEMD,
|
||||
.hasher_multisig = HASHER_SHA2,
|
||||
.hasher_script = HASHER_SHA2,
|
||||
};
|
||||
|
||||
const curve_info ed25519_cardano_info = {
|
||||
@ -65,7 +65,7 @@ const curve_info ed25519_cardano_info = {
|
||||
.hasher_base58 = HASHER_SHA2D,
|
||||
.hasher_sign = HASHER_SHA2D,
|
||||
.hasher_pubkey = HASHER_SHA2_RIPEMD,
|
||||
.hasher_multisig = HASHER_SHA2,
|
||||
.hasher_script = HASHER_SHA2,
|
||||
};
|
||||
|
||||
const curve_info ed25519_sha3_info = {
|
||||
@ -74,7 +74,7 @@ const curve_info ed25519_sha3_info = {
|
||||
.hasher_base58 = HASHER_SHA2D,
|
||||
.hasher_sign = HASHER_SHA2D,
|
||||
.hasher_pubkey = HASHER_SHA2_RIPEMD,
|
||||
.hasher_multisig = HASHER_SHA2,
|
||||
.hasher_script = HASHER_SHA2,
|
||||
};
|
||||
|
||||
#if USE_KECCAK
|
||||
@ -84,7 +84,7 @@ const curve_info ed25519_keccak_info = {
|
||||
.hasher_base58 = HASHER_SHA2D,
|
||||
.hasher_sign = HASHER_SHA2D,
|
||||
.hasher_pubkey = HASHER_SHA2_RIPEMD,
|
||||
.hasher_multisig = HASHER_SHA2,
|
||||
.hasher_script = HASHER_SHA2,
|
||||
};
|
||||
#endif
|
||||
|
||||
@ -94,7 +94,7 @@ const curve_info curve25519_info = {
|
||||
.hasher_base58 = HASHER_SHA2D,
|
||||
.hasher_sign = HASHER_SHA2D,
|
||||
.hasher_pubkey = HASHER_SHA2_RIPEMD,
|
||||
.hasher_multisig = HASHER_SHA2,
|
||||
.hasher_script = HASHER_SHA2,
|
||||
};
|
||||
|
||||
int hdnode_from_xpub(uint32_t depth, uint32_t child_num, const uint8_t *chain_code, const uint8_t *public_key, const char* curve, HDNode *out)
|
||||
|
2
bip32.h
2
bip32.h
@ -38,7 +38,7 @@ typedef struct {
|
||||
HasherType hasher_base58;
|
||||
HasherType hasher_sign;
|
||||
HasherType hasher_pubkey;
|
||||
HasherType hasher_multisig;
|
||||
HasherType hasher_script;
|
||||
} curve_info;
|
||||
|
||||
typedef struct {
|
||||
|
@ -61,5 +61,5 @@ const curve_info nist256p1_info = {
|
||||
.hasher_base58 = HASHER_SHA2D,
|
||||
.hasher_sign = HASHER_SHA2D,
|
||||
.hasher_pubkey = HASHER_SHA2_RIPEMD,
|
||||
.hasher_multisig = HASHER_SHA2,
|
||||
.hasher_script = HASHER_SHA2,
|
||||
};
|
||||
|
@ -61,7 +61,7 @@ const curve_info secp256k1_info = {
|
||||
.hasher_base58 = HASHER_SHA2D,
|
||||
.hasher_sign = HASHER_SHA2D,
|
||||
.hasher_pubkey = HASHER_SHA2_RIPEMD,
|
||||
.hasher_multisig = HASHER_SHA2,
|
||||
.hasher_script = HASHER_SHA2,
|
||||
};
|
||||
|
||||
const curve_info secp256k1_decred_info = {
|
||||
@ -70,7 +70,7 @@ const curve_info secp256k1_decred_info = {
|
||||
.hasher_base58 = HASHER_BLAKED,
|
||||
.hasher_sign = HASHER_BLAKE,
|
||||
.hasher_pubkey = HASHER_BLAKE_RIPEMD,
|
||||
.hasher_multisig = HASHER_BLAKE,
|
||||
.hasher_script = HASHER_BLAKE,
|
||||
};
|
||||
|
||||
const curve_info secp256k1_groestl_info = {
|
||||
@ -79,7 +79,7 @@ const curve_info secp256k1_groestl_info = {
|
||||
.hasher_base58 = HASHER_GROESTLD_TRUNC,
|
||||
.hasher_sign = HASHER_SHA2,
|
||||
.hasher_pubkey = HASHER_SHA2_RIPEMD,
|
||||
.hasher_multisig = HASHER_SHA2,
|
||||
.hasher_script = HASHER_SHA2,
|
||||
};
|
||||
|
||||
const curve_info secp256k1_smart_info = {
|
||||
@ -88,5 +88,5 @@ const curve_info secp256k1_smart_info = {
|
||||
.hasher_base58 = HASHER_SHA3K,
|
||||
.hasher_sign = HASHER_SHA2,
|
||||
.hasher_pubkey = HASHER_SHA2_RIPEMD,
|
||||
.hasher_multisig = HASHER_SHA2,
|
||||
.hasher_script = HASHER_SHA2,
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user