ServiceStack.PlatformRsaUtils.Decrypt C# (CSharp) Метод

Decrypt() публичный статический Метод

public static Decrypt ( this rsa, byte bytes ) : byte[]
rsa this
bytes byte
Результат byte[]
        public static byte[] Decrypt(this RSA rsa, byte[] bytes)
        {
#if !NETSTANDARD1_6
            return ((RSACryptoServiceProvider)rsa).Decrypt(bytes, RsaUtils.DoOAEPPadding);
#else
            return rsa.Decrypt(bytes, RSAEncryptionPadding.OaepSHA1);
#endif
        }