Condividi tramite


Rfc3161TimestampRequest.CreateFromSignerInfo Metodo

Definizione

Crea una richiesta di timestamp eseguendo l'hash della firma del firmatario indicato con un algoritmo specificato.

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

Parametri

signerInfo
SignerInfo

Informazioni del firmatario CSM per cui compilare una richiesta di timestamp.

hashAlgorithm
HashAlgorithmName

Algoritmo hash da usare con questa richiesta di timestamp.

requestedPolicyId
Oid

Identificatore di oggetto (OID) del criterio di timestamp che deve essere usato dall'autorità timestamp oppure null per non esprimere alcuna preferenza.

nonce
Nullable<ReadOnlyMemory<Byte>>

Parametro nonce (numero usato una sola volta) facoltativo che consente di identificare in modo univoco la richiesta per l'associazione con la risposta. Il valore viene interpretato come un intero big-endian senza segno e può essere normalizzato nel formato di codifica.

requestSignerCertificates
Boolean

true per indicare che l'autorità timestamp deve includere il certificato di firma nel token timestamp emesso; in caso contrario, false.

extensions
X509ExtensionCollection

Raccolta opzionale di estensioni da includere nella richiesta.

Restituisce

Oggetto Rfc3161TimestampRequest che rappresenta i valori scelti.

Eccezioni

signerInfo è null.

hashAlgorithm.Name è null o Empty.

hashAlgorithm non è un algoritmo hash noto.

Commenti

Questo costruttore crea un timestamp per il valore della firma di un SignerInfo valore, in base alla raccomandazione di IETF RFC 3161 Appendice A (attributo Timestamp della firma tramite CMS).

Il valore nonce in questo metodo viene considerato come un intero big endian senza segno. Questo metodo normalizza l'input in una codifica BER INTEGER prima di assegnare il valore nonce. Il valore normalizzato viene restituito dal GetNonce() metodo .

Si applica a

Vedi anche