15 lines
321 B
C#
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();
|
|
}
|
|
}
|
|
}
|