CompositeMLDsa.ExportCompositeMLDsaPrivateKey メソッド

定義

オーバーロード

名前 説明
ExportCompositeMLDsaPrivateKey()

現在のキーの秘密キー部分をエクスポートします。

ExportCompositeMLDsaPrivateKey(Span<Byte>)

現在のキーの秘密キー部分を指定されたバッファーにエクスポートします。

ExportCompositeMLDsaPrivateKey()

ソース:
CompositeMLDsa.cs
ソース:
CompositeMLDsa.cs
ソース:
CompositeMLDsa.cs

現在のキーの秘密キー部分をエクスポートします。

public:
 cli::array <System::Byte> ^ ExportCompositeMLDsaPrivateKey();
public byte[] ExportCompositeMLDsaPrivateKey();
member this.ExportCompositeMLDsaPrivateKey : unit -> byte[]
Public Function ExportCompositeMLDsaPrivateKey () As Byte()

返品

Byte[]

複合 ML-DSA 秘密キー。

例外

現在のインスタンスは秘密キーをエクスポートできません。

-又は-

キーのエクスポート中にエラーが発生しました。

オブジェクトは既に破棄されています。

適用対象

ExportCompositeMLDsaPrivateKey(Span<Byte>)

ソース:
CompositeMLDsa.cs
ソース:
CompositeMLDsa.cs
ソース:
CompositeMLDsa.cs

現在のキーの秘密キー部分を指定されたバッファーにエクスポートします。

public:
 int ExportCompositeMLDsaPrivateKey(Span<System::Byte> destination);
public int ExportCompositeMLDsaPrivateKey(Span<byte> destination);
member this.ExportCompositeMLDsaPrivateKey : Span<byte> -> int
Public Function ExportCompositeMLDsaPrivateKey (destination As Span(Of Byte)) As Integer

パラメーター

destination
Span<Byte>

複合 ML-DSA 秘密キー値を受け取るバッファー。

返品

destination バッファーに書き込まれたバイト数。

例外

このインスタンスは破棄されました。

destination は、結果を保持するのに十分な大きさではありませんでした。

-又は-

キーのエクスポート中にエラーが発生しました。

適用対象