CoseSign1Message.SignEmbedded 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
SignEmbedded(Byte[], CoseSigner, Byte[]) |
簽署指定的內容,並將它編碼為內嵌內容的COSE_Sign1訊息。 |
SignEmbedded(ReadOnlySpan<Byte>, CoseSigner, ReadOnlySpan<Byte>) |
簽署指定的內容,並將它編碼為內嵌內容的COSE_Sign1訊息。 |
SignEmbedded(Byte[], CoseSigner, Byte[])
簽署指定的內容,並將它編碼為內嵌內容的COSE_Sign1訊息。
public static byte[] SignEmbedded (byte[] embeddedContent, System.Security.Cryptography.Cose.CoseSigner signer, byte[]? associatedData = default);
static member SignEmbedded : byte[] * System.Security.Cryptography.Cose.CoseSigner * byte[] -> byte[]
Public Shared Function SignEmbedded (embeddedContent As Byte(), signer As CoseSigner, Optional associatedData As Byte() = Nothing) As Byte()
參數
- embeddedContent
- Byte[]
要簽署和包含在訊息中的內容。
- signer
- CoseSigner
用來簽署的簽署 embeddedContent
者資訊。
- associatedData
- Byte[]
與簽章相關聯的額外數據,也必須在驗證期間提供。
傳回
Byte[]
編碼的訊息。
例外狀況
embeddedContent
或 signer
為 null
。
適用於
SignEmbedded(ReadOnlySpan<Byte>, CoseSigner, ReadOnlySpan<Byte>)
簽署指定的內容,並將它編碼為內嵌內容的COSE_Sign1訊息。
public static byte[] SignEmbedded (ReadOnlySpan<byte> embeddedContent, System.Security.Cryptography.Cose.CoseSigner signer, ReadOnlySpan<byte> associatedData = default);
static member SignEmbedded : ReadOnlySpan<byte> * System.Security.Cryptography.Cose.CoseSigner * ReadOnlySpan<byte> -> byte[]
Public Shared Function SignEmbedded (embeddedContent As ReadOnlySpan(Of Byte), signer As CoseSigner, Optional associatedData As ReadOnlySpan(Of Byte) = Nothing) As Byte()
參數
- embeddedContent
- ReadOnlySpan<Byte>
要簽署和包含在訊息中的內容。
- signer
- CoseSigner
用來簽署的簽署 embeddedContent
者資訊。
- associatedData
- ReadOnlySpan<Byte>
與簽章相關聯的額外數據,也必須在驗證期間提供。
傳回
Byte[]
編碼的訊息。
例外狀況
signer
為 null
。