bug
This commit is contained in:
parent
6d2d02c22c
commit
118686346b
12
upassword
12
upassword
|
@ -4898,17 +4898,17 @@ public class upassword {
|
||||||
die(aeskeyfile + ": Refus d'écraser un fichier existant", null);
|
die(aeskeyfile + ": Refus d'écraser un fichier existant", null);
|
||||||
}
|
}
|
||||||
|
|
||||||
String password = null;
|
|
||||||
if (args.length > 0) password = args[0];
|
|
||||||
String salt = null;
|
|
||||||
if (args.length > 1) salt = args[1];
|
|
||||||
|
|
||||||
byte[] key = null;
|
byte[] key = null;
|
||||||
try {
|
try {
|
||||||
|
String password = null;
|
||||||
|
if (args.length > 0) password = args[0];
|
||||||
|
byte[] salt = null;
|
||||||
|
if (args.length > 1) salt = args[1].getBytes(UTF_8);
|
||||||
|
|
||||||
if (password != null && salt != null) {
|
if (password != null && salt != null) {
|
||||||
key = AESEnc.genkey();
|
key = AESEnc.genkey();
|
||||||
} else {
|
} else {
|
||||||
key = AESEnc.genkey(password, salt.getBytes(UTF_8), -1);
|
key = AESEnc.genkey(password, salt, -1);
|
||||||
}
|
}
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
die(null, e);
|
die(null, e);
|
||||||
|
|
Loading…
Reference in New Issue