RsaEncryptionCookieTransform 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
初始化 RsaEncryptionCookieTransform 類別的新執行個體。
多載
RsaEncryptionCookieTransform(RSA) |
初始化 RsaEncryptionCookieTransform 類別的新執行個體,這個執行個體使用指定的加密及解密金鑰。 |
RsaEncryptionCookieTransform(X509Certificate2) |
初始化 RsaEncryptionCookieTransform 類別的新執行個體,這個執行個體使用指定的 X.509 憑證的私密金鑰來加密和解密。 |
RsaEncryptionCookieTransform(RSA)
初始化 RsaEncryptionCookieTransform 類別的新執行個體,這個執行個體使用指定的加密及解密金鑰。
public:
RsaEncryptionCookieTransform(System::Security::Cryptography::RSA ^ key);
public RsaEncryptionCookieTransform (System.Security.Cryptography.RSA key);
new System.IdentityModel.RsaEncryptionCookieTransform : System.Security.Cryptography.RSA -> System.IdentityModel.RsaEncryptionCookieTransform
Public Sub New (key As RSA)
參數
- key
- RSA
要作為預設加密與解密金鑰的金鑰。 初始化 DecryptionKeys 和 EncryptionKey 屬性。
例外狀況
key
為 null
。
適用於
RsaEncryptionCookieTransform(X509Certificate2)
初始化 RsaEncryptionCookieTransform 類別的新執行個體,這個執行個體使用指定的 X.509 憑證的私密金鑰來加密和解密。
public:
RsaEncryptionCookieTransform(System::Security::Cryptography::X509Certificates::X509Certificate2 ^ certificate);
public RsaEncryptionCookieTransform (System.Security.Cryptography.X509Certificates.X509Certificate2 certificate);
new System.IdentityModel.RsaEncryptionCookieTransform : System.Security.Cryptography.X509Certificates.X509Certificate2 -> System.IdentityModel.RsaEncryptionCookieTransform
Public Sub New (certificate As X509Certificate2)
參數
- certificate
- X509Certificate2
憑證,其私密金鑰用於加密和解密。
憑證,其私密金鑰將用於預設的加密和解密金鑰。 初始化 DecryptionKeys 和 EncryptionKey 屬性。
例外狀況
certificate
為 null
。