다음을 통해 공유


CoseMessage.DecodeSign1 메서드

정의

오버로드

DecodeSign1(Byte[])

CBOR 페이로드를 COSE_Sign1 메시지로 디코딩합니다.

DecodeSign1(ReadOnlySpan<Byte>)

CBOR 페이로드를 COSE_Sign1 메시지로 디코딩합니다.

DecodeSign1(Byte[])

Source:
CoseMessage.cs
Source:
CoseMessage.cs
Source:
CoseMessage.cs

CBOR 페이로드를 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

매개 변수

cborPayload
Byte[]

디코딩할 바이트 시퀀스입니다.

반환

디코딩된 메시지입니다.

예외

cborPayloadnull입니다.

cborPayload 를 COSE_Sign1 메시지로 디코딩할 수 없습니다.

적용 대상

DecodeSign1(ReadOnlySpan<Byte>)

Source:
CoseMessage.cs
Source:
CoseMessage.cs
Source:
CoseMessage.cs

CBOR 페이로드를 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

매개 변수

cborPayload
ReadOnlySpan<Byte>

디코딩할 CBOR로 인코딩된 바이트 시퀀스입니다.

반환

디코딩된 메시지입니다.

예외

cborPayload 를 COSE_Sign1 메시지로 디코딩할 수 없습니다.

적용 대상