totp/src/algorithms.tsx
2025-02-10 13:09:14 -05:00

10 lines
226 B
TypeScript

import {HashAlgorithms} from '@otplib/core';
export const ALGORITHMS = {
sha1: HashAlgorithms.SHA1,
sha256: HashAlgorithms.SHA256,
sha512: HashAlgorithms.SHA512,
};
export type HashAlgorithm = keyof typeof ALGORITHMS;