com.rmz.cryptoutil.Decrypt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cryptoutil Show documentation
Show all versions of cryptoutil Show documentation
RFC 2898 password derivation compatible with .NET
The newest version!
package com.rmz.cryptoutil;
/**
* Created by SBT-Mehdiev-RR on 26.07.2017.
*/
public class Decrypt {
public Decrypt() {
}
public static String Decrypt(String password) {
String pswd = new CryptoUtil().decrypt(password);
System.out.println(pswd);
return pswd;
}
}