Rfc3161TimestampRequest.CreateFromSignerInfo 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
使用所指定演算法來雜湊提供的簽署者簽章,以建立時間戳記要求。
public static System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest CreateFromSignerInfo (System.Security.Cryptography.Pkcs.SignerInfo signerInfo, System.Security.Cryptography.HashAlgorithmName hashAlgorithm, System.Security.Cryptography.Oid? requestedPolicyId = default, ReadOnlyMemory<byte>? nonce = default, bool requestSignerCertificates = false, System.Security.Cryptography.X509Certificates.X509ExtensionCollection? extensions = default);
public static System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest CreateFromSignerInfo (System.Security.Cryptography.Pkcs.SignerInfo signerInfo, System.Security.Cryptography.HashAlgorithmName hashAlgorithm, System.Security.Cryptography.Oid requestedPolicyId = default, ReadOnlyMemory<byte>? nonce = default, bool requestSignerCertificates = false, System.Security.Cryptography.X509Certificates.X509ExtensionCollection extensions = default);
static member CreateFromSignerInfo : System.Security.Cryptography.Pkcs.SignerInfo * System.Security.Cryptography.HashAlgorithmName * System.Security.Cryptography.Oid * Nullable<ReadOnlyMemory<byte>> * bool * System.Security.Cryptography.X509Certificates.X509ExtensionCollection -> System.Security.Cryptography.Pkcs.Rfc3161TimestampRequest
Public Shared Function CreateFromSignerInfo (signerInfo As SignerInfo, hashAlgorithm As HashAlgorithmName, Optional requestedPolicyId As Oid = Nothing, Optional nonce As Nullable(Of ReadOnlyMemory(Of Byte)) = Nothing, Optional requestSignerCertificates As Boolean = false, Optional extensions As X509ExtensionCollection = Nothing) As Rfc3161TimestampRequest
參數
- signerInfo
- SignerInfo
要建置時間戳記要求的 CMS 簽署者資訊。
- hashAlgorithm
- HashAlgorithmName
要與此時間戳記要求搭配使用的雜湊演算法。
- requestedPolicyId
- Oid
時間戳記授權單位 (TSA) 應該使用的時間戳記原則物件識別碼 (OID),若為 null
則表示沒有偏好。
- nonce
- Nullable<ReadOnlyMemory<Byte>>
唯一識別此要求以將它與回應配對的選擇性 nonce (使用一次的數字)。 值會被解譯為不帶正負號的位元組由大到小,而且可能會被正規化為編碼格式。
- requestSignerCertificates
- Boolean
true
以指出時間戳記授權單位 (TSA) 必須在簽發的時間戳記權杖包括簽署憑證;否則為 false
。
- extensions
- X509ExtensionCollection
要包含在要求中的選用延伸模組集合。
傳回
代表所選擇值的 Rfc3161TimestampRequest。
例外狀況
signerInfo
為 null
。
hashAlgorithm
不是已知的雜湊演算法。
備註
此建構函式會根據 IETF RFC 3161 附錄 A (使用 CMS) 的簽章時間戳記屬性,建立值的簽章值 SignerInfo 時間戳記。
這個方法中的 nonce 值會被視為不帶正負號的 big-endian 整數。 這個方法會將輸入正規化為 BER INTEGER 編碼,再指派 nonce 值。 方法會傳 GetNonce() 回標準化值。