mirror of
https://github.com/bitwarden/mobile
synced 2025-12-22 03:03:46 +00:00
Moved android test project
This commit is contained in:
41
test/Android.Test/KeyDerivationTests.cs
Normal file
41
test/Android.Test/KeyDerivationTests.cs
Normal file
@@ -0,0 +1,41 @@
|
||||
using System;
|
||||
using System.Text;
|
||||
using System.Linq;
|
||||
using NUnit.Framework;
|
||||
using Bit.Android.Services;
|
||||
|
||||
namespace Bit.Android.Test
|
||||
{
|
||||
[TestFixture]
|
||||
public class KeyDerivationTests
|
||||
{
|
||||
[SetUp]
|
||||
public void Setup() { }
|
||||
|
||||
|
||||
[TearDown]
|
||||
public void Tear() { }
|
||||
|
||||
[Test]
|
||||
public void MakeKeyFromPasswordBase64()
|
||||
{
|
||||
var service = new BouncyCastleKeyDerivationService();
|
||||
var key = service.DeriveKey(Encoding.UTF8.GetBytes("123456"), Encoding.UTF8.GetBytes("salt"), 5000);
|
||||
Assert.True(key.SequenceEqual(GetKey()));
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void HashPasswordBase64()
|
||||
{
|
||||
var service = new BouncyCastleKeyDerivationService();
|
||||
var hash = service.DeriveKey(GetKey(), Encoding.UTF8.GetBytes("123456"), 1);
|
||||
var hashBytes = Convert.FromBase64String("7Bsl4ponrsFu0jGl4yMeLZp5tKqx6g4tLrXhMszIsjQ=");
|
||||
Assert.True(hash.SequenceEqual(hashBytes));
|
||||
}
|
||||
|
||||
private byte[] GetKey()
|
||||
{
|
||||
return Convert.FromBase64String("QpSYI5k0bLQXEygUEHn4wMII3ERatuWDFBszk7JAhbQ=");
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user