cloutier--bird.makeup/src/Tests/BirdsiteLive.Cryptography.Tests/MagicKeyTests.cs

19 lines
363 B
C#
Raw Normal View History

2020-06-04 22:53:38 -04:00
using System.Threading.Tasks;
using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace BirdsiteLive.Cryptography.Tests
{
[TestClass]
public class MagicKeyTests
{
[TestMethod]
public async Task Test()
{
var g = MagicKey.Generate();
var magicKey = new MagicKey(g.PrivateKey);
}
}
}