kee
This commit is contained in:
parent
3f21637876
commit
bee661a3f3
4 changed files with 4 additions and 4 deletions
|
@ -23,7 +23,7 @@ public class Key {
|
|||
}
|
||||
|
||||
public Key(byte[] key) {
|
||||
string = new String(key);
|
||||
string = new String(key, StandardCharsets.ISO_8859_1);
|
||||
}
|
||||
|
||||
public void setDebug(boolean debug) {
|
||||
|
|
|
@ -18,7 +18,7 @@ public class Key {
|
|||
}
|
||||
|
||||
public Key(byte[] key) {
|
||||
string = new String(key);
|
||||
string = new String(key, StandardCharsets.ISO_8859_1);
|
||||
}
|
||||
|
||||
public Key(String key) {
|
||||
|
|
|
@ -24,7 +24,7 @@ public class Key {
|
|||
}
|
||||
|
||||
public Key(byte[] key) {
|
||||
string = new String(key);
|
||||
string = new String(key, StandardCharsets.ISO_8859_1);
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -23,7 +23,7 @@ public class Key {
|
|||
}
|
||||
|
||||
public Key(byte[] keyData) {
|
||||
string = new String(keyData);
|
||||
string = new String(keyData, StandardCharsets.ISO_8859_1);
|
||||
}
|
||||
|
||||
public void setDebug(boolean debug) {
|
||||
|
|
Loading…
Add table
Reference in a new issue