ECDiffieHellman.TryExportECPrivateKey(Span<Byte>, Int32) Método
Definição
Tenta exportar a chave atual no formato ECPrivateKey para um buffer fornecido.Attempts to export the current key in the ECPrivateKey format into a provided buffer.
public:
virtual bool TryExportECPrivateKey(Span<System::Byte> destination, [Runtime::InteropServices::Out] int % bytesWritten);
public virtual bool TryExportECPrivateKey (Span<byte> destination, out int bytesWritten);
abstract member TryExportECPrivateKey : Span<byte> * int -> bool
override this.TryExportECPrivateKey : Span<byte> * int -> bool
Public Overridable Function TryExportECPrivateKey (destination As Span(Of Byte), ByRef bytesWritten As Integer) As Boolean
Parâmetros
O intervalo de bytes que receberá os dados de ECPrivateKey.The byte span to receive the ECPrivateKey data.
- bytesWritten
- Int32
Quando é retornado, este método contém um valor que indica o número de caracteres gravados em destination.When this method returns, contains a value that indicates the number of bytes written to destination. Esse parâmetro é tratado como não inicializado.This parameter is treated as uninitialized.
Retornos
true se destination for grande o suficiente para receber a saída; caso contrário, false.true if destination is big enough to receive the output; otherwise, false.
Exceções
Não é possível exportar a chave.The key could not be exported.