UNPKG
hsynchronous-fs
Version:
latest (1.0.1)
1.0.1
1.0.0
Post-Quantum filesystem encryption using a hybrid encryption protocol "hsynchronous"
hsynchronous-fs
/
dist
/
types.d.ts
9 lines
(6 loc)
•
173 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
{ kem, sign }
from
'pqclean'
;
interface
KeyPair
{
kemKeyPair
: kem.
GenerateKeyPairResult
;
sigKeyPair
: sign.
GenerateKeyPairResult
; }
export
type
{
KeyPair
};