chore(server): rename domain repositories -> interfaces (#8147)

rename domain repositories
This commit is contained in:
Daniel Dietzler 2024-03-21 12:59:49 +01:00 committed by GitHub
parent 44ed1f0919
commit b588a87d4a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
155 changed files with 385 additions and 390 deletions

View file

@ -1,11 +0,0 @@
export const ICryptoRepository = 'ICryptoRepository';
export interface ICryptoRepository {
randomBytes(size: number): Buffer;
randomUUID(): string;
hashFile(filePath: string | Buffer): Promise<Buffer>;
hashSha256(data: string): string;
hashSha1(data: string | Buffer): Buffer;
hashBcrypt(data: string | Buffer, saltOrRounds: string | number): Promise<string>;
compareBcrypt(data: string | Buffer, encrypted: string): boolean;
}