Udostępnij za pośrednictwem


CoseMessage.DecodeSign1 Metoda

Definicja

Przeciążenia

DecodeSign1(Byte[])

Dekoduje ładunek CBOR jako komunikat COSE_Sign1.

DecodeSign1(ReadOnlySpan<Byte>)

Dekoduje ładunek CBOR jako komunikat COSE_Sign1.

DecodeSign1(Byte[])

Źródło:
CoseMessage.cs
Źródło:
CoseMessage.cs
Źródło:
CoseMessage.cs
Źródło:
CoseMessage.cs

Dekoduje ładunek CBOR jako komunikat COSE_Sign1.

public:
 static System::Security::Cryptography::Cose::CoseSign1Message ^ DecodeSign1(cli::array <System::Byte> ^ cborPayload);
public static System.Security.Cryptography.Cose.CoseSign1Message DecodeSign1 (byte[] cborPayload);
static member DecodeSign1 : byte[] -> System.Security.Cryptography.Cose.CoseSign1Message
Public Shared Function DecodeSign1 (cborPayload As Byte()) As CoseSign1Message

Parametry

cborPayload
Byte[]

Sekwencja bajtów do dekodowania.

Zwraca

Zdekodowany komunikat.

Wyjątki

cborPayload to null.

cborPayload nie można dekodować jako komunikatu COSE_Sign1.

Dotyczy

DecodeSign1(ReadOnlySpan<Byte>)

Źródło:
CoseMessage.cs
Źródło:
CoseMessage.cs
Źródło:
CoseMessage.cs
Źródło:
CoseMessage.cs

Dekoduje ładunek CBOR jako komunikat COSE_Sign1.

public:
 static System::Security::Cryptography::Cose::CoseSign1Message ^ DecodeSign1(ReadOnlySpan<System::Byte> cborPayload);
public static System.Security.Cryptography.Cose.CoseSign1Message DecodeSign1 (ReadOnlySpan<byte> cborPayload);
static member DecodeSign1 : ReadOnlySpan<byte> -> System.Security.Cryptography.Cose.CoseSign1Message
Public Shared Function DecodeSign1 (cborPayload As ReadOnlySpan(Of Byte)) As CoseSign1Message

Parametry

cborPayload
ReadOnlySpan<Byte>

Sekwencja bajtów zakodowanych w języku CBOR do dekodowania.

Zwraca

Zdekodowany komunikat.

Wyjątki

cborPayload nie można dekodować jako komunikatu COSE_Sign1.

Dotyczy