11 lines
325 B
C#
11 lines
325 B
C#
using DigitalData.Core.Abstractions.Security;
|
|
|
|
namespace DigitalData.Core.Security
|
|
{
|
|
public class CryptFactory : ICryptFactory
|
|
{
|
|
private static readonly Lazy<ICryptFactory> LazyStaticCryptFactory = new (() => new CryptFactory());
|
|
|
|
public ICryptFactory Static = LazyStaticCryptFactory.Value;
|
|
}
|
|
} |