1
1
import { ed25519Plugin } from "../src/ed25519/plugin.js"
2
- import EdwardsKey from "../src/ed25519/keypair.js"
2
+ import EdwardsKey , { EdKeypair } from "../src/ed25519/keypair.js"
3
3
4
4
describe ( "ed25519" , ( ) => {
5
5
@@ -25,3 +25,39 @@ describe("ed25519", () => {
25
25
} )
26
26
27
27
} )
28
+
29
+ describe ( "Import / Export" , ( ) => {
30
+ let exportableKey : EdKeypair
31
+ let nonExportableKey : EdKeypair
32
+
33
+ beforeAll ( async ( ) => {
34
+ exportableKey = await EdKeypair . create ( { exportable : true } )
35
+ nonExportableKey = await EdKeypair . create ( { exportable : false } )
36
+ } )
37
+
38
+ it ( "Will export a key that is exportable" , async ( ) => {
39
+ const exported = exportableKey . export ( )
40
+ expect ( exported ) . not . toBe ( null )
41
+ } )
42
+
43
+ it ( "Will not export a key that is not exportable" , async ( ) => {
44
+ await expect ( nonExportableKey . export ( ) )
45
+ . rejects
46
+ . toThrow ( "Key is not exportable" )
47
+ } )
48
+
49
+ it ( "Will import an exported key" , async ( ) => {
50
+ const exported = await exportableKey . export ( )
51
+ const newKey = await EdKeypair . import ( exported )
52
+
53
+ expect ( newKey . did ( ) ) . toEqual ( exportableKey . did ( ) )
54
+
55
+ // Sign and verify
56
+ const msg = new Uint8Array ( Buffer . from ( "test signing" , "utf-8" ) )
57
+ let signed = await exportableKey . sign ( msg )
58
+ expect ( await ed25519Plugin . verifySignature ( await newKey . did ( ) , msg , signed ) ) . toBe ( true )
59
+
60
+ signed = await newKey . sign ( msg )
61
+ expect ( await ed25519Plugin . verifySignature ( await exportableKey . did ( ) , msg , signed ) ) . toBe ( true )
62
+ } )
63
+ } )
0 commit comments