You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 10, 2020. It is now read-only.
`callback` must follow `function (err, keys) {}` signature, where `err` is an Error if the operation was not successful. `keys` is an object with the property `Keys` that is an array of `KeyInfo` (`name` and `id`)
43
+
`callback` must follow `function (err, keys) {}` signature, where `err` is an Error if the operation was not successful. `keys` is an array of:
44
+
45
+
```
46
+
{
47
+
id: 'hash', // string - the hash of the key
48
+
name: 'self' // string - the name of the key
49
+
}
50
+
```
47
51
48
52
If no `callback` is passed, a promise is returned.
49
53
@@ -52,14 +56,12 @@ If no `callback` is passed, a promise is returned.
`callback` must follow `function (err, key) {}` signature, where `err` is an Error if the operation was not successful. `key` is an object that describes the removed key.
78
+
`callback` must follow `function (err, key) {}` signature, where `err` is an Error if the operation was not successful. `key` is an object that describes the removed key:
79
+
80
+
```
81
+
{
82
+
id: 'hash', // string - the hash of the key
83
+
name: 'self' // string - the name of the key
84
+
}
85
+
```
77
86
78
87
If no `callback` is passed, a promise is returned.
79
88
@@ -82,12 +91,8 @@ If no `callback` is passed, a promise is returned.
`callback` must follow `function (err, pem) {}` signature, where `err` is an Error if the operation was not successful. `pem` is the string representation of the key
137
+
`callback` must follow `function (err, pem) {}` signature, where `err` is an Error if the operation was not successful. `pem` is the string representation of the key.
138
138
139
139
If no `callback` is passed, a promise is returned.
140
140
@@ -143,12 +143,11 @@ If no `callback` is passed, a promise is returned.
0 commit comments