public static SecureString DecryptSecure(string str, UInt16 uiseed = 1) { return(AED0x1.Decrypt(str, uiseed).Secure()); }
public static string Decrypt(SecureString str, UInt16 uiseed = 1) { return(AED0x1.Decrypt(str.Release(), uiseed)); }