Skip to content

Instantly share code, notes, and snippets.

View tanishqmanuja's full-sized avatar
😇
Having fun with Tech

Tanishq Manuja tanishqmanuja

😇
Having fun with Tech
View GitHub Profile
@tanishqmanuja
tanishqmanuja / scrypt.ts
Last active October 21, 2023 19:38
Typescript scrypt password hashing
import { randomBytes, scrypt, timingSafeEqual } from "crypto";
/*
#Wikipedia:
Scrypt: https://en.wikipedia.org/wiki/Scrypt
PBKDF2: https://en.wikipedia.org/wiki/PBKDF2
*/
const SALT_LENGTH_BYTES = 32;
const HASH_LENGTH_BYTES = 64;
@tanishqmanuja
tanishqmanuja / result.ts
Last active August 28, 2023 12:21
Typescript Result Wrapper
import { isNativeError } from "util/types";
/* Type Definitions */
export type ResultOk<T> = {
ok: true;
value: T;
};
export type ResultError<E extends Error = Error> = {
ok: false;
error: E;