board now uses sha256

This commit is contained in:
Kevin Froman 2019-09-27 18:04:49 -05:00
parent 24d682860f
commit 71c9337ab7
6 changed files with 16 additions and 8 deletions

View file

@ -89,7 +89,7 @@ def show_details():
details = {
'Node Address' : gethostname.get_hostname(),
'Web Password' : config.get('client.webpassword'),
'Public Key' : onionrcrypto.pub_key,
'Public Key' : onionrcrypto.pub_key.replace('=', ''),
'Human-readable Public Key' : mnemonickeys.get_human_readable_ID()
}

View file

@ -39,4 +39,5 @@ def set_data(data)->str:
else:
raise onionrexceptions.DataExists("Data is already set for " + dataHash)
return dataHash
print(dataHash, nonce_hash)
return dataHash

View file

@ -6,4 +6,4 @@ def check_ui(test_manager):
if not result: raise ValueError
result = result.lower()
if not 'onionr' in result and not 'Onionr' in result:
raise ValueError
raise ValueError