BirdsiteLive/src/Tests/BirdsiteLive.Cryptography.T.../RsaGeneratorTests.cs

16 lines
321 B
C#
Raw Normal View History

2020-06-05 04:53:38 +02:00
using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace BirdsiteLive.Cryptography.Tests
{
[TestClass]
public class RsaGeneratorTests
{
[TestMethod]
public void TestMethod1()
{
var rsaGen = new RsaGenerator();
var rsa = rsaGen.GetRsa();
}
}
}