blob: 2b667d94b6f6950804d20ac8c3dd52e3aca59bc7 (
plain)
1
2
3
4
5
6
7
|
export type SubtleCryptoAlg = 'SHA-1' | 'SHA-256' | 'SHA-384' | 'SHA-512';
export type SubtleCryptoCrv = 'P-256' | 'P-384' | 'P-521' | 'Ed25519';
export type SubtleCryptoKeyAlgName =
| 'ECDSA'
| 'Ed25519'
| 'RSASSA-PKCS1-v1_5'
| 'RSA-PSS';
|