EncodeMessage y DecodeMessage functions implemented in Memo
This commit is contained in:
parent
9d19607899
commit
51da6a5761
1 changed files with 29 additions and 4 deletions
|
@ -39,11 +39,11 @@ public class Memo implements ByteSerializable {
|
||||||
this.message = null;
|
this.message = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
public Memo(byte[] private_key, byte[] public_key, byte[] msg){
|
public void encodeMessage(byte[] private_key, byte[] public_key, byte[] msg){
|
||||||
this(private_key,public_key,msg,0);
|
this.encodeMessage(private_key,public_key,msg,0);
|
||||||
}
|
}
|
||||||
|
|
||||||
public Memo(byte[] private_key, byte[] public_key, byte[] msg, long custom_nonce){
|
public void encodeMessage(byte[] private_key, byte[] public_key, byte[] msg, long custom_nonce){
|
||||||
try {
|
try {
|
||||||
MessageDigest md = MessageDigest.getInstance("SHA-256");
|
MessageDigest md = MessageDigest.getInstance("SHA-256");
|
||||||
ECKey privateECKey = ECKey.fromPrivate(md.digest(private_key));
|
ECKey privateECKey = ECKey.fromPrivate(md.digest(private_key));
|
||||||
|
@ -73,6 +73,9 @@ public class Memo implements ByteSerializable {
|
||||||
|
|
||||||
byte[] secret = privateECKey.getPubKeyPoint().multiply(ECKey.fromPublicOnly(md.digest(public_key)).getPrivKey()).normalize().getXCoord().getEncoded();
|
byte[] secret = privateECKey.getPubKeyPoint().multiply(ECKey.fromPublicOnly(md.digest(public_key)).getPrivKey()).normalize().getXCoord().getEncoded();
|
||||||
byte[] finalKey = new byte[secret.length + this.nonce.length];
|
byte[] finalKey = new byte[secret.length + this.nonce.length];
|
||||||
|
System.arraycopy(secret, 0, finalKey, 0, secret.length);
|
||||||
|
System.arraycopy(this.nonce, 0, finalKey, secret.length, this.nonce.length);
|
||||||
|
|
||||||
|
|
||||||
byte[] sha256Msg = md.digest(msg);
|
byte[] sha256Msg = md.digest(msg);
|
||||||
byte[] serialChecksum = new byte[4];
|
byte[] serialChecksum = new byte[4];
|
||||||
|
@ -86,4 +89,26 @@ public class Memo implements ByteSerializable {
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void decodeMessage(byte[] private_key, byte[] public_key, byte[] msg, byte[] nonce){
|
||||||
|
try {
|
||||||
|
MessageDigest md = MessageDigest.getInstance("SHA-256");
|
||||||
|
ECKey privateECKey = ECKey.fromPrivate(md.digest(private_key));
|
||||||
|
this.to = privateECKey.getPubKey();
|
||||||
|
this.from = public_key;
|
||||||
|
this.nonce = nonce;
|
||||||
|
|
||||||
|
byte[] secret = privateECKey.getPubKeyPoint().multiply(ECKey.fromPublicOnly(md.digest(public_key)).getPrivKey()).normalize().getXCoord().getEncoded();
|
||||||
|
byte[] finalKey = new byte[secret.length + this.nonce.length];
|
||||||
|
System.arraycopy(secret, 0, finalKey, 0, secret.length);
|
||||||
|
System.arraycopy(this.nonce, 0, finalKey, secret.length, this.nonce.length);
|
||||||
|
|
||||||
|
byte[] msgFinal = Util.decryptAES(msg, finalKey);
|
||||||
|
byte[] decodedMsg = new byte[msgFinal.length-4];
|
||||||
|
System.arraycopy(msgFinal, 4, decodedMsg, 0, decodedMsg.length);
|
||||||
|
this.message = decodedMsg;
|
||||||
|
} catch (NoSuchAlgorithmException ex){
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue