This repository has been archived by the owner on Feb 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 735
/
rotateKey.js
139 lines (114 loc) · 5.61 KB
/
rotateKey.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
/*
* Example demonstrating how to do the key rotation on the ledger.
*
* Steward already exists on the ledger and its DID/Verkey are obtained using seed.
* Trust Anchor's DID/Verkey pair is generated and stored into wallet.
* Stewards builds NYM request in order to add Trust Anchor to the ledger.
* Once NYM transaction is done, Trust Anchor wants to change its Verkey.
* First, temporary key is created in the wallet.
* Second, Trust Anchor builds NYM request to replace the Verkey on the ledger.
* Third, when NYM transaction succeeds, Trust Anchor makes new Verkey permanent in wallet
* (it was only temporary before).
*
* To assert the changes, Trust Anchor reads both the Verkey from the wallet and the Verkey from the ledger
* using GET_NYM request, to make sure they are equal to the new Verkey, not the original one
* added by Steward
*/
const indy = require('indy-sdk')
const util = require('./util')
const colors = require('./colors')
const log = console.log
function logValue() {
log(colors.CYAN, ...arguments, colors.NONE)
}
async function run() {
log("Set protocol version 2 to work with Indy Node 1.4")
await indy.setProtocolVersion(2)
// 1.
log('1. Creates a new local pool ledger configuration that is used later when connecting to ledger.')
const poolName = 'pool'
const genesisFilePath = await util.getPoolGenesisTxnPath(poolName)
const poolConfig = {'genesis_txn': genesisFilePath}
await indy.createPoolLedgerConfig(poolName, poolConfig)
// 2.
log('2. Open pool ledger and get handle from libindy')
const poolHandle = await indy.openPoolLedger(poolName, undefined)
// 3.
log('3. Creating new secure wallet with the given unique name')
const walletConfig = {"id": "wallet"}
const walletCredentials = {"key": "wallet_key"}
await indy.createWallet(walletConfig, walletCredentials)
// 4.
log('4. Open wallet and get handle from libindy to use in methods that require wallet access')
const walletHandle = await indy.openWallet(walletConfig, walletCredentials)
// 5.
log('5. Generating and storing steward DID and verkey')
const stewardSeed = '000000000000000000000000Steward1'
const did = {'seed': stewardSeed}
const [stewardDid, stewardVerkey] = await indy.createAndStoreMyDid(walletHandle, did)
logValue('Steward DID: ', stewardDid)
logValue('Steward Verkey: ', stewardVerkey)
// 6.
log('6. Generating and storing trust anchor DID and verkey')
const [trustAnchorDid, trustAnchorVerkey] = await indy.createAndStoreMyDid(walletHandle, "{}")
logValue('Trust Anchor DID: ', trustAnchorDid)
logValue('Trust Anchor Verkey: ', trustAnchorVerkey)
// 7.
log('7. Building NYM request to add Trust Anchor to the ledger')
const nymRequest = await indy.buildNymRequest(/*submitter_did*/ stewardDid,
/*target_did*/ trustAnchorDid,
/*ver_key*/ trustAnchorVerkey,
/*alias*/ undefined,
/*role*/ 'TRUST_ANCHOR')
// 8.
log('8. Sending NYM request to the ledger')
await indy.signAndSubmitRequest(/*pool_handle*/ poolHandle,
/*wallet_handle*/ walletHandle,
/*submitter_did*/ stewardDid,
/*request_json*/ nymRequest)
// 9.
log('9. Generating new verkey of trust anchor in wallet')
const newVerkey = await indy.replaceKeysStart(walletHandle, trustAnchorDid, "{}")
logValue('New Trust Anchor Verkey: ', newVerkey)
// 10.
log('10. Building NYM request to update new verkey to ledger')
const nymRequestForNewVerkey = await indy.buildNymRequest(trustAnchorDid, trustAnchorDid, newVerkey, undefined, 'TRUST_ANCHOR')
// 11.
log('11. Sending NYM request to the ledger')
await indy.signAndSubmitRequest(poolHandle, walletHandle, trustAnchorDid, nymRequestForNewVerkey)
// 12.
log('12. Apply new verkey in wallet')
await indy.replaceKeysApply(walletHandle, trustAnchorDid)
// 13.
log('13. Reading new verkey from wallet')
const trustAnchorVerkeyInWallet = await indy.keyForLocalDid(walletHandle, trustAnchorDid)
logValue('Trust Anchor Verkey in wallet: ', trustAnchorVerkeyInWallet)
// 14.
log('14. Building GET_NYM request to get Trust Anchor verkey')
const getNymRequest = await indy.buildGetNymRequest(trustAnchorDid, trustAnchorDid)
// 15.
log('15. Sending GET_NYM request to ledger')
const getNymResponse = await indy.submitRequest(poolHandle, getNymRequest)
// 16.
log('16. Comparing Trust Anchor verkeys: written by Steward (original), current in wallet and current from ledger')
logValue('Written by Steward: ', trustAnchorVerkey)
logValue('Trust Anchor Verkey in wallet: ', trustAnchorVerkeyInWallet)
const trustAnchorVerkeyFromLedger = JSON.parse(getNymResponse['result']['data'])['verkey']
logValue('Trust Anchor Verkey from ledger: ', trustAnchorVerkeyFromLedger)
logValue('Matching: ', trustAnchorVerkeyFromLedger == trustAnchorVerkeyInWallet != trustAnchorVerkey)
// 17.
log('17. Closing wallet and pool')
await indy.closeWallet(walletHandle)
await indy.closePoolLedger(poolHandle)
// 18.
log('18. Deleting created wallet')
await indy.deleteWallet(walletConfig, walletCredentials)
// 19.
log('19. Deleting pool ledger config')
await indy.deletePoolLedgerConfig(poolName)
}
try {
run()
} catch (e) {
log("ERROR occured : e")
}