forked from tronprotocol/java-tron
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCredentials.java
More file actions
61 lines (48 loc) · 1.4 KB
/
Credentials.java
File metadata and controls
61 lines (48 loc) · 1.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
package org.tron.keystore;
import org.tron.common.crypto.ECKey;
import org.tron.common.utils.ByteArray;
/**
* Credentials wrapper.
*/
public class Credentials {
private final ECKey ecKeyPair;
private final String address;
private Credentials(ECKey ecKeyPair, String address) {
this.ecKeyPair = ecKeyPair;
this.address = address;
}
public ECKey getEcKeyPair() {
return ecKeyPair;
}
public String getAddress() {
return address;
}
public static Credentials create(ECKey ecKeyPair) {
String address = org.tron.core.Wallet.encode58Check(ecKeyPair.getAddress());
return new Credentials(ecKeyPair, address);
}
public static Credentials create(String privateKey) {
ECKey eCkey = ECKey.fromPrivate(ByteArray.fromHexString(privateKey));
return create(eCkey);
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
Credentials that = (Credentials) o;
if (ecKeyPair != null ? !ecKeyPair.equals(that.ecKeyPair) : that.ecKeyPair != null) {
return false;
}
return address != null ? address.equals(that.address) : that.address == null;
}
@Override
public int hashCode() {
int result = ecKeyPair != null ? ecKeyPair.hashCode() : 0;
result = 31 * result + (address != null ? address.hashCode() : 0);
return result;
}
}