mirror of
https://github.com/NicolasConstant/BirdsiteLive
synced 2025-06-05 21:49:16 +02:00
messing with crypto
This commit is contained in:
19
src/Tests/BirdsiteLive.Cryptography.Tests/MagicKeyTests.cs
Normal file
19
src/Tests/BirdsiteLive.Cryptography.Tests/MagicKeyTests.cs
Normal file
@ -0,0 +1,19 @@
|
||||
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);
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user