@libp2p/interface-keychain
Advanced tools
Comparing version 2.0.3 to 2.0.4
@@ -143,3 +143,13 @@ /** | ||
findKeyByName: (name: string) => Promise<KeyInfo>; | ||
/** | ||
* Rotate keychain password and re-encrypt all associated keys | ||
* | ||
* @example | ||
* | ||
* ```js | ||
* await libp2p.keychain.rotateKeychainPass('oldPassword', 'newPassword') | ||
* ``` | ||
*/ | ||
rotateKeychainPass: (oldPass: string, newPass: string) => Promise<void>; | ||
} | ||
//# sourceMappingURL=index.d.ts.map |
{ | ||
"name": "@libp2p/interface-keychain", | ||
"version": "2.0.3", | ||
"version": "2.0.4", | ||
"description": "Keychain interface for libp2p", | ||
@@ -5,0 +5,0 @@ "license": "Apache-2.0 OR MIT", |
@@ -157,2 +157,13 @@ /** | ||
findKeyByName: (name: string) => Promise<KeyInfo> | ||
/** | ||
* Rotate keychain password and re-encrypt all associated keys | ||
* | ||
* @example | ||
* | ||
* ```js | ||
* await libp2p.keychain.rotateKeychainPass('oldPassword', 'newPassword') | ||
* ``` | ||
*/ | ||
rotateKeychainPass: (oldPass: string, newPass: string) => Promise<void> | ||
} |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
18147
336