Pkcs8PrivateKeyInfo.Decode(ReadOnlyMemory<Byte>, Int32, Boolean) 方法

定义

将提供的数据读取为 PKCS#8 PrivateKeyInfo,并返回内容的对象视图。

public static System.Security.Cryptography.Pkcs.Pkcs8PrivateKeyInfo Decode (ReadOnlyMemory<byte> source, out int bytesRead, bool skipCopy = false);
static member Decode : ReadOnlyMemory<byte> * int * bool -> System.Security.Cryptography.Pkcs.Pkcs8PrivateKeyInfo
Public Shared Function Decode (source As ReadOnlyMemory(Of Byte), ByRef bytesRead As Integer, Optional skipCopy As Boolean = false) As Pkcs8PrivateKeyInfo

参数

source
ReadOnlyMemory<Byte>

要解释为 PKCS#8 PrivateKeyInfo 值的数据。

bytesRead
Int32

此方法返回时,包含一个指示从 source 中读取的字节数的值。 该参数未经初始化即被处理。

skipCopy
Boolean

true 表示存储 source 而不进行防御性复制;否则为 false。 默认值为 false

返回

解码为 PKCS#8 PrivateKeyInfo 的内容的对象视图。

例外

source 参数的内容未成功解码为 PKCS#8 PrivateKeyInfo。

注解

此方法的默认行为是从 创建第 bytesConsumed 一个字节 source的防御副本。 skipCopy当 参数为 true时,将跳过此防御性副本。 如果跳过了防御性副本,并在返回值或其方法或属性生成的任何对象的生存期内更改了第一个 bytesConsumed 字节 source 的内容,则这些对象的方法和属性可能会产生无稽之谈的结果,或者由于损坏状态而引发异常。 因此,建议调用方仅在可以合理地确保数据保持不变时,才对参数使用 trueskipCopy

适用于