This commit is contained in:
Hailey
2024-04-08 16:48:49 -07:00
parent 71721b5943
commit 352d37562d
@@ -0,0 +1,11 @@
import {Key} from '../jwk'
export type DigestAlgorithm = {
name: 'sha256' | 'sha384' | 'sha512'
}
export type {Key}
export interface CryptoImplementation {
createKey(algs: )
}