Genera el ECKey
This commit is contained in:
parent
52c2c9db5e
commit
a611f9b388
1 changed files with 30 additions and 31 deletions
|
@ -20,8 +20,7 @@ public class BrainKey {
|
||||||
byte[] bytes = md.digest(encoded.getBytes("UTF-8"));
|
byte[] bytes = md.digest(encoded.getBytes("UTF-8"));
|
||||||
MessageDigest sha256 = MessageDigest.getInstance("SHA-256");
|
MessageDigest sha256 = MessageDigest.getInstance("SHA-256");
|
||||||
byte[] result = sha256.digest(bytes);
|
byte[] result = sha256.digest(bytes);
|
||||||
System.out.println("hash: "+Util.bytesToHex(result));
|
mPrivateKey = ECKey.fromPrivate(result);
|
||||||
//TODO: Transform this final result into a ECKey private key (mPrivateKey)
|
|
||||||
} catch (NoSuchAlgorithmException e) {
|
} catch (NoSuchAlgorithmException e) {
|
||||||
System.out.println("NoSuchAlgotithmException. Msg: " + e.getMessage());
|
System.out.println("NoSuchAlgotithmException. Msg: " + e.getMessage());
|
||||||
} catch (UnsupportedEncodingException e) {
|
} catch (UnsupportedEncodingException e) {
|
||||||
|
|
Loading…
Reference in a new issue