예제 #1
0
파일: RSA.cs 프로젝트: z77ma/runtime
 static bool Export(RSA alg, Span <byte> destination, out int bytesWritten)
 {
     return(alg.TryExportRSAPrivateKey(destination, out bytesWritten));
 }