cloutier--bird.makeup/src/Tests/BirdsiteLive.Cryptography.Tests/RsaGeneratorTests.cs
2020-06-04 22:53:38 -04:00

15 lines
321 B
C#

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();
}
}
}