totp/src/algorithms.tsx

10 lines
226 B
TypeScript
Raw Normal View History

2025-02-10 13:09:14 -05:00
import {HashAlgorithms} from '@otplib/core';
export const ALGORITHMS = {
sha1: HashAlgorithms.SHA1,
sha256: HashAlgorithms.SHA256,
sha512: HashAlgorithms.SHA512,
};
export type HashAlgorithm = keyof typeof ALGORITHMS;