-
Notifications
You must be signed in to change notification settings - Fork 105
Open
Description
Question
I'm not able to easily replace my existing code with the new blake3 support.
What I tried
async function makeHmac(msg: string, derivedKey: string): Promise<string> {
const hmac = createHmac('blake3', derivedKey);
hmac.update(msg);
const hmacResult = hmac.digest('hex');
const token = `Bearer ${hmacResult};${msg}`;
return token;
}QuickCrypto Version
1.0.0-beta21
Additional information
- I am using Expo
- I have read the Troubleshooting Guide
- I agree to follow this project's Code of Conduct
- I searched for similar questions in the issues page as well as in the discussions page and found none.
Metadata
Metadata
Assignees
Labels
No labels