diff options
author | Sarang Noether <32460187+SarangNoether@users.noreply.github.com> | 2020-08-28 19:38:00 -0400 |
---|---|---|
committer | Sarang Noether <32460187+SarangNoether@users.noreply.github.com> | 2020-08-28 19:38:00 -0400 |
commit | fa06c39d9731b90dfd58ecd6cdfd3c936ee139a7 (patch) | |
tree | ce191c3d6f23869e1250f7d77d0746cfafa645c1 /src/device/device_default.cpp | |
parent | wallet: allow signing a message with spend or view key (diff) | |
download | monero-fa06c39d9731b90dfd58ecd6cdfd3c936ee139a7.tar.xz |
Bind signature to full address and signing mode
Diffstat (limited to '')
-rw-r--r-- | src/device/device_default.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/device/device_default.cpp b/src/device/device_default.cpp index cb63deb15..145197212 100644 --- a/src/device/device_default.cpp +++ b/src/device/device_default.cpp @@ -207,12 +207,6 @@ namespace hw { return m; } - crypto::secret_key device_default::get_subaddress_view_secret_key(const crypto::secret_key &a, const cryptonote::subaddress_index &index) { - crypto::secret_key skey = get_subaddress_secret_key(a, index); - sc_mul((unsigned char*)skey.data, (const unsigned char*)skey.data, (const unsigned char*)a.data); - return skey; - } - /* ======================================================================= */ /* DERIVATION & KEY */ /* ======================================================================= */ |