Files
ssh.net/test/Renci.SshNet.Benchmarks/Program.cs
T
Rob Hague f9908a22b5 Use System.Security.Cryptography for RSA (#1373)
* Use BCL for RSA

* Restore benchmark (with quirks for old code)

* Fixup benchmark (remove compatibility with old code)

* cosmetic tweaks

* Add a regression test for #1388
2024-05-10 11:35:21 +02:00

28 lines
1.0 KiB
C#

using BenchmarkDotNet.Running;
namespace Renci.SshNet.Benchmarks
{
class Program
{
static void Main(string[] args)
{
// Usage examples:
// 1. Run all benchmarks:
// dotnet run -c Release -- --filter *
// 2. List all benchmarks:
// dotnet run -c Release -- --list flat
// 3. Run a subset of benchmarks based on a filter (of a benchmark method's fully-qualified name,
// e.g. "Renci.SshNet.Benchmarks.Security.Cryptography.Ciphers.AesCipherBenchmarks.Encrypt_CBC"):
// dotnet run -c Release -- --filter *Ciphers*
// 4. Run benchmarks and include memory usage statistics in the output:
// dotnet run -c Release -- --filter *Rsa* --memory
// 3. Print help:
// dotnet run -c Release -- --help
// See also https://benchmarkdotnet.org/articles/guides/console-args.html
_ = BenchmarkSwitcher.FromAssembly(typeof(Program).Assembly).Run(args);
}
}
}