Files
app-ethereum/examples/setSelfAddress.py

53 lines
1.7 KiB
Python
Raw Normal View History

2016-06-01 21:41:29 +02:00
#!/usr/bin/env python
"""
*******************************************************************************
2019-01-03 17:00:20 +01:00
* Ledger Ethereum App
* (c) 2016-2019 Ledger
2016-06-01 21:41:29 +02:00
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
********************************************************************************
"""
from ledgerblue.comm import getDongle
from ledgerblue.commException import CommException
import argparse
import struct
2019-01-16 11:23:00 +01:00
2016-06-01 21:41:29 +02:00
def parse_bip32_path(path):
2019-01-16 11:23:00 +01:00
if len(path) == 0:
2019-01-16 11:07:31 +01:00
return b""
result = b""
2019-01-16 11:23:00 +01:00
elements = path.split('/')
for pathElement in elements:
element = pathElement.split('\'')
if len(element) == 1:
result = result + struct.pack(">I", int(element[0]))
else:
result = result + struct.pack(">I", 0x80000000 | int(element[0]))
return result
2016-06-01 21:41:29 +02:00
parser = argparse.ArgumentParser()
parser.add_argument('--path', help="BIP 32 path to retrieve")
args = parser.parse_args()
if args.path == None:
2019-01-16 11:23:00 +01:00
args.path = "44'/60'/0'/0/0"
2016-06-01 21:41:29 +02:00
donglePath = parse_bip32_path(args.path)
2019-01-16 11:07:31 +01:00
apdu = bytearray.fromhex("e0060000") + chr(len(donglePath) + 1).encode() + \
chr(len(donglePath) // 4).encode() + donglePath
2016-06-01 21:41:29 +02:00
dongle = getDongle(True)
dongle.exchange(bytes(apdu))