mirror of
https://github.com/immich-app/immich.git
synced 2025-02-04 01:09:14 -05:00
10 lines
226 B
TypeScript
10 lines
226 B
TypeScript
|
import { ICryptoRepository } from '@app/domain';
|
||
|
import { compareSync, hash } from 'bcrypt';
|
||
|
import { randomBytes } from 'crypto';
|
||
|
|
||
|
export const cryptoRepository: ICryptoRepository = {
|
||
|
randomBytes,
|
||
|
hash,
|
||
|
compareSync,
|
||
|
};
|