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

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