mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-03 15:40:18 -04:00
12 lines
349 B
C#
12 lines
349 B
C#
using System.Collections.Generic;
|
|
using ModernKeePass.Domain.Entities;
|
|
|
|
namespace ModernKeePass.Application.Common.Interfaces
|
|
{
|
|
public interface ICryptographyClient
|
|
{
|
|
IEnumerable<BaseEntity> Ciphers { get; }
|
|
IEnumerable<BaseEntity> KeyDerivations { get; }
|
|
IEnumerable<string> CompressionAlgorithms { get; }
|
|
}
|
|
} |