mirror of
https://github.com/bitwarden/android.git
synced 2024-12-27 11:28:28 +03:00
16 lines
435 B
C#
16 lines
435 B
C#
using System;
|
|
using AutoFixture;
|
|
using Bit.Core.Models.Domain;
|
|
using Bit.Core.Services;
|
|
|
|
namespace Bit.Core.Test.AutoFixture
|
|
{
|
|
public class SymmetricCryptoKeyCustomization : ICustomization
|
|
{
|
|
public void Customize(IFixture fixture)
|
|
{
|
|
var keyMaterial = (new PclCryptoFunctionService(null)).RandomBytes(32);
|
|
fixture.Register(() => new SymmetricCryptoKey(keyMaterial));
|
|
}
|
|
}
|
|
}
|