Skip to content

Instantly share code, notes, and snippets.

@codingforentrepreneurs
Created July 18, 2023 16:02
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codingforentrepreneurs/6ee26d3b37956bdfb026089cb3c7f06e to your computer and use it in GitHub Desktop.
Save codingforentrepreneurs/6ee26d3b37956bdfb026089cb3c7f06e to your computer and use it in GitHub Desktop.
A custom crypto pbkdf2 method for Next.js
/*
Next.js/Edge function method for hasing passwords
Using the Web API Crypto feature instead of
Built-in Node.js Crypto
*/
export default async function pbkdf2(password, salt, iterations, keylen) {
const enc = new TextEncoder();
const passwordBuffer = enc.encode(password);
const saltBuffer = enc.encode(salt);
const importedKey = await crypto.subtle.importKey(
'raw',
passwordBuffer,
{name: 'PBKDF2'},
false,
['deriveBits', 'deriveKey']
);
const derivedKeyBuffer = await crypto.subtle.deriveBits(
{
name: 'PBKDF2',
salt: saltBuffer,
iterations: iterations,
hash: 'SHA-256'
},
importedKey,
keylen * 8 // keylen in bits
);
const derivedKeyArray = new Uint8Array(derivedKeyBuffer);
// Convert to HEX
let hex = '';
for(let i = 0; i < derivedKeyArray.length; i++) {
hex += derivedKeyArray[i].toString(16).padStart(2, '0');
}
return hex;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment