RSA.EncryptValue(Byte[]) 方法

定義

警告

RSA.EncryptValue and DecryptValue are not supported and throw NotSupportedException. Use RSA.Encrypt and RSA.Decrypt instead.

在衍生類別中覆寫時,使用公開金鑰加密輸入資料。

public:
 virtual cli::array <System::Byte> ^ EncryptValue(cli::array <System::Byte> ^ rgb);
public:
 abstract cli::array <System::Byte> ^ EncryptValue(cli::array <System::Byte> ^ rgb);
public virtual byte[] EncryptValue (byte[] rgb);
[System.Obsolete("RSA.EncryptValue and DecryptValue are not supported and throw NotSupportedException. Use RSA.Encrypt and RSA.Decrypt instead.", DiagnosticId="SYSLIB0048", UrlFormat="https://aka.ms/dotnet-warnings/{0}")]
public virtual byte[] EncryptValue (byte[] rgb);
public abstract byte[] EncryptValue (byte[] rgb);
abstract member EncryptValue : byte[] -> byte[]
override this.EncryptValue : byte[] -> byte[]
[<System.Obsolete("RSA.EncryptValue and DecryptValue are not supported and throw NotSupportedException. Use RSA.Encrypt and RSA.Decrypt instead.", DiagnosticId="SYSLIB0048", UrlFormat="https://aka.ms/dotnet-warnings/{0}")>]
abstract member EncryptValue : byte[] -> byte[]
override this.EncryptValue : byte[] -> byte[]
abstract member EncryptValue : byte[] -> byte[]
Public Overridable Function EncryptValue (rgb As Byte()) As Byte()
Public MustOverride Function EncryptValue (rgb As Byte()) As Byte()

參數

rgb
Byte[]

要加密的純文字。

傳回

Byte[]

所產生之密碼文字的 rgb 參數加密。

屬性

例外狀況

不支援這個方法呼叫。 從 .NET Framework 4.6 開始,會擲回此例外狀況。

備註

在 .NET Framework 4.5.2 和舊版.NET Framework中,這個方法是 abstract 。 不過,衍生類別 RSACryptoServiceProvider.DecryptValue 的唯一實作也會擲回 NotSupportedException 例外狀況。

適用於

另請參閱