Pkcs12SafeContents.AddSecret(Oid, ReadOnlyMemory<Byte>) 方法

定义

通过新 Pkcs12SecretBag 将具有指定类型标识符的 ASN.1 BER 编码值添加到 SafeContents,返回新创建的包实例。

public:
 System::Security::Cryptography::Pkcs::Pkcs12SecretBag ^ AddSecret(System::Security::Cryptography::Oid ^ secretType, ReadOnlyMemory<System::Byte> secretValue);
public System.Security.Cryptography.Pkcs.Pkcs12SecretBag AddSecret (System.Security.Cryptography.Oid secretType, ReadOnlyMemory<byte> secretValue);
member this.AddSecret : System.Security.Cryptography.Oid * ReadOnlyMemory<byte> -> System.Security.Cryptography.Pkcs.Pkcs12SecretBag
Public Function AddSecret (secretType As Oid, secretValue As ReadOnlyMemory(Of Byte)) As Pkcs12SecretBag

参数

secretType
Oid

标识机密值的数据类型的对象标识符 (OID)。

secretValue
ReadOnlyMemory<Byte>

表示要添加的机密的 BER 编码值。

返回

已添加到 SafeContents 的包实例。

例外

secretType 参数为 null

此实例为只读。

secretValue 参数不表示单个 ASN.1 BER 编码值。

适用于