57 lines
2.0 KiB
C#
57 lines
2.0 KiB
C#
|
using NUnit.Framework;
|
||
|
using chestcrypto.identity;
|
||
|
using chestcrypto;
|
||
|
using System;
|
||
|
using System.Linq;
|
||
|
using Sodium;
|
||
|
|
||
|
namespace PrivateIndentityTest
|
||
|
{
|
||
|
public class Tests
|
||
|
{
|
||
|
[SetUp]
|
||
|
public void Setup()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
[Test]
|
||
|
public void TestPrivateIdentityGetDoublePrivateKey(){
|
||
|
byte[] signingKey = PublicKeyAuth.GenerateKeyPair().PrivateKey;
|
||
|
byte[] encryptionKey = PublicKeyBox.GenerateKeyPair().PrivateKey;
|
||
|
|
||
|
byte[] combinedKey = new byte[signingKey.Length + encryptionKey.Length];
|
||
|
Buffer.BlockCopy(signingKey, 0, combinedKey, 0, signingKey.Length);
|
||
|
Buffer.BlockCopy(encryptionKey, 0, combinedKey, signingKey.Length, encryptionKey.Length);
|
||
|
|
||
|
DoublePrivateKey combinedLoad = new chestcrypto.DoublePrivateKey(combinedKey);
|
||
|
|
||
|
PrivateIdentity iden = new PrivateIdentity(combinedLoad, "Picard");
|
||
|
|
||
|
Assert.IsTrue(Enumerable.SequenceEqual(iden.getPrivateKey().getRawDouble(), combinedLoad.getRawDouble()));
|
||
|
|
||
|
}
|
||
|
|
||
|
[Test]
|
||
|
public void TestPrivateIdentityConstructor()
|
||
|
{
|
||
|
byte[] signingKey = PublicKeyAuth.GenerateKeyPair().PrivateKey;
|
||
|
byte[] encryptionKey = PublicKeyBox.GenerateKeyPair().PrivateKey;
|
||
|
|
||
|
byte[] combinedKey = new byte[signingKey.Length + encryptionKey.Length];
|
||
|
Buffer.BlockCopy(signingKey, 0, combinedKey, 0, signingKey.Length);
|
||
|
Buffer.BlockCopy(encryptionKey, 0, combinedKey, signingKey.Length, encryptionKey.Length);
|
||
|
|
||
|
DoublePrivateKey combinedLoad = new chestcrypto.DoublePrivateKey(combinedKey);
|
||
|
|
||
|
PrivateIdentity iden = new PrivateIdentity(combinedLoad, "Picard");
|
||
|
Assert.AreEqual(iden.getName(), "Picard");
|
||
|
Assert.AreEqual(iden.getNote(), "");
|
||
|
|
||
|
PrivateIdentity iden2 = new PrivateIdentity(combinedLoad, "Picard2", "test");
|
||
|
Assert.AreEqual(iden2.getName(), "Picard2");
|
||
|
Assert.AreEqual(iden2.getNote(), "test");
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|
||
|
}
|