Exemplo n.º 1
0
Arquivo: RSA.cs Projeto: z77ma/runtime
 static bool Export(RSA alg, Span <byte> destination, out int bytesWritten)
 {
     return(alg.TryExportRSAPrivateKey(destination, out bytesWritten));
 }