-
-
Notifications
You must be signed in to change notification settings - Fork 3.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ledger Nano S #3303
Ledger Nano S #3303
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
# - Find PCSC | ||
# Find the native PCSC includes and library | ||
# | ||
# PCSC_INCLUDE_DIR - where to find winscard.h, wintypes.h, etc. | ||
# PCSC_LIBRARIES - List of libraries when using PCSC. | ||
# PCSC_FOUND - True if PCSC found. | ||
|
||
|
||
IF (PCSC_INCLUDE_DIR AND PCSC_LIBRARIES) | ||
# Already in cache, be silent | ||
SET(PCSC_FIND_QUIETLY TRUE) | ||
ENDIF (PCSC_INCLUDE_DIR AND PCSC_LIBRARIES) | ||
|
||
IF (NOT WIN32) | ||
FIND_PACKAGE(PkgConfig) | ||
PKG_CHECK_MODULES(PC_PCSC libpcsclite) | ||
ENDIF (NOT WIN32) | ||
|
||
FIND_PATH(PCSC_INCLUDE_DIR winscard.h | ||
HINTS | ||
/usr/include/PCSC | ||
${PC_PCSC_INCLUDEDIR} | ||
${PC_PCSC_INCLUDE_DIRS} | ||
PATH_SUFFIXES PCSC | ||
) | ||
|
||
FIND_LIBRARY(PCSC_LIBRARY NAMES pcsclite libpcsclite WinSCard PCSC | ||
HINTS | ||
${PC_PCSC_LIBDIR} | ||
${PC_PCSC_LIBRARY_DIRS} | ||
) | ||
|
||
# handle the QUIETLY and REQUIRED arguments and set PCSC_FOUND to TRUE if | ||
# all listed variables are TRUE | ||
INCLUDE(FindPackageHandleStandardArgs) | ||
FIND_PACKAGE_HANDLE_STANDARD_ARGS(PCSC DEFAULT_MSG PCSC_LIBRARY PCSC_INCLUDE_DIR) | ||
|
||
IF(PCSC_FOUND) | ||
SET( PCSC_LIBRARIES ${PCSC_LIBRARY} ) | ||
ELSE(PCSC_FOUND) | ||
SET( PCSC_LIBRARIES ) | ||
ENDIF(PCSC_FOUND) | ||
|
||
MARK_AS_ADVANCED( PCSC_LIBRARY PCSC_INCLUDE_DIR ) |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -143,3 +143,5 @@ endif() | |
if(PER_BLOCK_CHECKPOINT) | ||
add_subdirectory(blocks) | ||
endif() | ||
|
||
add_subdirectory(device) |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
// Copyright (c) 2014-2018, The Monero Project | ||
// | ||
// All rights reserved. | ||
// | ||
// Redistribution and use in source and binary forms, with or without modification, are | ||
// permitted provided that the following conditions are met: | ||
// | ||
// 1. Redistributions of source code must retain the above copyright notice, this list of | ||
// conditions and the following disclaimer. | ||
// | ||
// 2. Redistributions in binary form must reproduce the above copyright notice, this list | ||
// of conditions and the following disclaimer in the documentation and/or other | ||
// materials provided with the distribution. | ||
// | ||
// 3. Neither the name of the copyright holder nor the names of its contributors may be | ||
// used to endorse or promote products derived from this software without specific | ||
// prior written permission. | ||
// | ||
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY | ||
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF | ||
// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL | ||
// THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, | ||
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | ||
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, | ||
// STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF | ||
// THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
// | ||
|
||
|
||
#include "crypto.h" | ||
#include "device/device.hpp" | ||
#include "device/log.hpp" | ||
|
||
namespace crypto { | ||
|
||
secret_key generate_keys(public_key &pub, secret_key &sec, const secret_key& recovery_key, bool recover, hw::device &hwdev) { | ||
secret_key rng; | ||
hwdev.generate_keys(pub, sec, recovery_key, recover, rng); | ||
return rng; | ||
} | ||
|
||
secret_key generate_keys(public_key &pub, secret_key &sec, hw::device &hwdev) { | ||
secret_key rng; | ||
hwdev.generate_keys(pub, sec, secret_key(), false, rng); | ||
return rng; | ||
} | ||
|
||
|
||
bool secret_key_to_public_key(const secret_key &sec, public_key &pub, hw::device &hwdev) { | ||
return hwdev.secret_key_to_public_key(sec, pub); | ||
} | ||
|
||
bool generate_key_derivation(const public_key &key1, const secret_key &key2, key_derivation &derivation, hw::device &hwdev) { | ||
return hwdev.generate_key_derivation(key1, key2, derivation); | ||
} | ||
|
||
void derivation_to_scalar(const key_derivation &derivation, size_t output_index, ec_scalar &res, hw::device &hwdev) { | ||
hwdev.derivation_to_scalar(derivation, output_index, res); | ||
} | ||
|
||
bool derive_public_key(const key_derivation &derivation, size_t output_index, | ||
const public_key &base, public_key &derived_key, hw::device &hwdev) { | ||
return hwdev.derive_public_key(derivation, output_index, base, derived_key); | ||
} | ||
|
||
void derive_secret_key(const key_derivation &derivation, size_t output_index, | ||
const secret_key &base, secret_key &derived_key, hw::device &hwdev) { | ||
hwdev.derive_secret_key(derivation, output_index, base, derived_key); | ||
} | ||
|
||
bool derive_subaddress_public_key(const public_key &out_key, const key_derivation &derivation, std::size_t output_index, public_key &derived_key, hw::device &hwdev) { | ||
return hwdev.derive_subaddress_public_key(out_key, derivation, output_index, derived_key); | ||
} | ||
|
||
void generate_key_image(const public_key &pub, const secret_key &sec, key_image &image, hw::device &hwdev) { | ||
hwdev.generate_key_image(pub,sec,image); | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,6 +40,7 @@ extern "C" | |
} | ||
#include "cryptonote_basic_impl.h" | ||
#include "cryptonote_format_utils.h" | ||
#include "device/device.hpp" | ||
|
||
#undef MONERO_DEFAULT_LOG_CATEGORY | ||
#define MONERO_DEFAULT_LOG_CATEGORY "account" | ||
|
@@ -50,6 +51,17 @@ DISABLE_VS_WARNINGS(4244 4345) | |
|
||
namespace cryptonote | ||
{ | ||
|
||
//----------------------------------------------------------------- | ||
hw::device& account_keys::get_device() const { | ||
return *m_device; | ||
} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Did you try having a const/const and a non-const/non-const as suggested ? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. yes. Whatever the way i choose it implies too many modification. I really would like postpone this. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. OK, I'll look at it once it's merged. |
||
//----------------------------------------------------------------- | ||
void account_keys::set_device( hw::device &hwdev) { | ||
m_device = &hwdev; | ||
MCDEBUG("device", "account_keys::set_device device type: "<<typeid(hwdev).name()); | ||
} | ||
|
||
//----------------------------------------------------------------- | ||
account_base::account_base() | ||
{ | ||
|
@@ -116,6 +128,34 @@ DISABLE_VS_WARNINGS(4244 4345) | |
if (m_creation_timestamp == (uint64_t)-1) // failure | ||
m_creation_timestamp = 0; // lowest value | ||
} | ||
|
||
//----------------------------------------------------------------- | ||
void account_base::create_from_device(const std::string &device_name) | ||
{ | ||
|
||
hw::device &hwdev = hw::get_device(device_name); | ||
m_keys.set_device(hwdev); | ||
hwdev.set_name(device_name); | ||
MCDEBUG("ledger", "device type: "<<typeid(hwdev).name()); | ||
hwdev.init(); | ||
hwdev.connect(); | ||
hwdev.get_public_address(m_keys.m_account_address); | ||
#ifdef DEBUG_HWDEVICE | ||
hwdev.get_secret_keys(m_keys.m_view_secret_key, m_keys.m_spend_secret_key); | ||
#endif | ||
struct tm timestamp = {0}; | ||
timestamp.tm_year = 2014 - 1900; // year 2014 | ||
timestamp.tm_mon = 4 - 1; // month april | ||
timestamp.tm_mday = 15; // 15th of april | ||
timestamp.tm_hour = 0; | ||
timestamp.tm_min = 0; | ||
timestamp.tm_sec = 0; | ||
|
||
m_creation_timestamp = mktime(×tamp); | ||
if (m_creation_timestamp == (uint64_t)-1) // failure | ||
m_creation_timestamp = 0; // lowest value | ||
} | ||
|
||
//----------------------------------------------------------------- | ||
void account_base::create_from_viewkey(const cryptonote::account_public_address& address, const crypto::secret_key& viewkey) | ||
{ | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it might be clearer to have a separate generate_chacha_key_prehashed, and leave the current code untouched.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this breaks builds for arm & x86 as
cn_slow_hash_pre()
exists only for