Skip to content
This repository was archived by the owner on Mar 10, 2020. It is now read-only.

Commit 496f08e

Browse files
richardschneiderdaviddias
authored andcommitted
feat: support key/export and key/import (#653)
* feat: support key/export and key/import * chore: update deps * chore
1 parent b0eaa78 commit 496f08e

File tree

4 files changed

+37
-3
lines changed

4 files changed

+37
-3
lines changed

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@
4242
"peer-id": "~0.10.4",
4343
"peer-info": "~0.11.4",
4444
"promisify-es6": "^1.0.3",
45-
"pump": "^1.0.3",
4645
"pull-defer": "^0.2.2",
4746
"pull-pushable": "^2.1.1",
47+
"pump": "^1.0.3",
4848
"qs": "^6.5.1",
4949
"readable-stream": "^2.3.3",
5050
"stream-http": "^2.7.2",
@@ -66,7 +66,7 @@
6666
"dirty-chai": "^2.0.1",
6767
"eslint-plugin-react": "^7.5.1",
6868
"gulp": "^3.9.1",
69-
"interface-ipfs-core": "~0.36.16",
69+
"interface-ipfs-core": "~0.37.0",
7070
"hapi": "^16.6.2",
7171
"ipfsd-ctl": "~0.26.0",
7272
"pre-commit": "^1.2.2",

src/key/export.js

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
'use strict'
2+
3+
const promisify = require('promisify-es6')
4+
5+
module.exports = (send) => {
6+
return promisify((name, password, callback) => {
7+
send({
8+
path: 'key/export',
9+
args: name,
10+
qs: { password: password }
11+
}, (err, pem) => {
12+
if (err) return callback(err)
13+
callback(null, pem.toString())
14+
})
15+
})
16+
}

src/key/import.js

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
'use strict'
2+
3+
const promisify = require('promisify-es6')
4+
5+
module.exports = (send) => {
6+
return promisify((name, pem, password, callback) => {
7+
send({
8+
path: 'key/import',
9+
args: name,
10+
qs: {
11+
pem: pem,
12+
password: password
13+
}
14+
}, callback)
15+
})
16+
}

src/key/index.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ module.exports = (arg) => {
99
gen: require('./gen')(send),
1010
list: require('./list')(send),
1111
rename: require('./rename')(send),
12-
rm: require('./rm')(send)
12+
rm: require('./rm')(send),
13+
export: require('./export')(send),
14+
import: require('./import')(send)
1315
}
1416
}

0 commit comments

Comments
 (0)