/// <summary> /// Decrypts data using the default private key /// </summary> public Data Decrypt(Data encryptedData) { PrivateKey PrivateKey = new PrivateKey(); PrivateKey.LoadFromConfig(); return(Decrypt(encryptedData, PrivateKey)); }
/// <summary> /// Decrypts data using the default private key /// </summary> public Data Decrypt(Data encryptedData) { PrivateKey PrivateKey = new PrivateKey(); PrivateKey.LoadFromConfig(); return Decrypt(encryptedData, PrivateKey); }