mirror of
https://github.com/logos-messaging/OpChan.git
synced 2026-01-03 21:33:09 +00:00
fix: sha512 access
This commit is contained in:
parent
8b714b61a7
commit
2cdcd567bb
@ -6,10 +6,13 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
import * as ed from '@noble/ed25519';
|
import * as ed from '@noble/ed25519';
|
||||||
|
import { sha512 } from '@noble/hashes/sha512';
|
||||||
import { bytesToHex, hexToBytes } from '@/lib/utils';
|
import { bytesToHex, hexToBytes } from '@/lib/utils';
|
||||||
import { LOCAL_STORAGE_KEYS } from '@/lib/waku/constants';
|
import { LOCAL_STORAGE_KEYS } from '@/lib/waku/constants';
|
||||||
import { DelegationInfo } from './types';
|
import { DelegationInfo } from './types';
|
||||||
|
|
||||||
|
ed.etc.sha512Sync = (...m) => sha512(ed.etc.concatBytes(...m));
|
||||||
|
|
||||||
|
|
||||||
export class KeyDelegation {
|
export class KeyDelegation {
|
||||||
private static readonly DEFAULT_EXPIRY_HOURS = 24;
|
private static readonly DEFAULT_EXPIRY_HOURS = 24;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user