次の方法で共有


CoseMessage.DecodeSign1 メソッド

定義

オーバーロード

DecodeSign1(Byte[])

CBOR ペイロードをCOSE_Sign1 メッセージとしてデコードします。

DecodeSign1(ReadOnlySpan<Byte>)

CBOR ペイロードをCOSE_Sign1 メッセージとしてデコードします。

DecodeSign1(Byte[])

ソース:
CoseMessage.cs
ソース:
CoseMessage.cs
ソース:
CoseMessage.cs
ソース:
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>)

ソース:
CoseMessage.cs
ソース:
CoseMessage.cs
ソース:
CoseMessage.cs
ソース:
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 メッセージとしてデコードできませんでした。

適用対象