Intégration de la branche release-2.2.0
This commit is contained in:
commit
53ce593a4f
|
@ -1,3 +1,10 @@
|
|||
## Version 2.2.0 du 24/06/2015-16:19
|
||||
|
||||
98cfdfc Intégration de la branche update-upassword
|
||||
34f027b bug avec la présence du scheme dans sha
|
||||
b5e6c13 Intégration de la branche update-upassword
|
||||
e4e2fa7 mise à jour upassword pour afficher sha en hexadécimal
|
||||
|
||||
## Version 2.1.1 du 22/06/2015-11:37
|
||||
|
||||
40225b0 Intégration de la branche proxy-default
|
||||
|
|
|
@ -1 +1 @@
|
|||
2.1.1
|
||||
2.2.0
|
||||
|
|
|
@ -4795,6 +4795,10 @@ public class upassword {
|
|||
return sb.toString();
|
||||
}
|
||||
|
||||
private static final String getShaHex(String sha) {
|
||||
return toHex(Base64.decode(sha.substring("{SHA}".length())));
|
||||
}
|
||||
|
||||
private void run(String[] args) {
|
||||
if (args.length == 1 && strEquals(args[0], "--help")) {
|
||||
println("USAGE:" //
|
||||
|
@ -4954,6 +4958,7 @@ public class upassword {
|
|||
printvar("ntlm", ntlm, shell);
|
||||
printvar("crypt", crypt, shell);
|
||||
printvar("sha", sha, shell);
|
||||
printvar("shahex", getShaHex(sha), shell);
|
||||
printvar("ssha", ssha, shell);
|
||||
printvar("md5", md5, shell);
|
||||
printvar("smd5", smd5, shell);
|
||||
|
|
Loading…
Reference in New Issue