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
Is your feature request related to a problem? Please describe.
I feel on shaky grounds when importing keys (with DID) into Veramo. I dont know if i do it correctly and getting the keys with all information needed is a hassle.
Describe the solution you'd like
A function that takes PK and maybe keytype (if it cant be derived).
Describe alternatives you've considered
Currently we are saving all key and DID info in .evn variables then doing an import of those if we dont find those keys into the database. We are also trying to make sure we are only running on set of keys on the agent (running on a server).
Additional context
The text was updated successfully, but these errors were encountered:
BREAKING CHANGE: `keyManagetGet` no longer returns private key data
BREAKING CHANGE: `KeyStore` no longer requires a `SecretBox`
BREAKING CHANGE: `KeyManagementSystem` needs a `PrivateKeyStore`
BREAKING CHANGE: @veramo/cli configuration version update to 3.0
If you're already working with Veramo and wish to upgrade existing agents to veramo 3.0, you'll have to make some changes to your configuration, depending on how you're using the framework.
It boils down to these 3 steps:
1. Update your database connection to use migrations
2. Remove the `SecretBox` parameter from `KeyManager`
3. Add a `PrivateKeyStore` parameter to `KeyManagementSystem` with a `SecretBox` that you were using before with `KeyManager` (and keep the same encryption key)
* feat(key-manager): move private key storage to kms-local
fixes#539fixes#540fixes#680
* feat(data-store): add migration of key stores
* fix(data-store): fix usage of where clause for queries
* refactor(kms-local): simplify constructor for KeyManagementSystem
* style: remove scar tissue and unused code
Is your feature request related to a problem? Please describe.
I feel on shaky grounds when importing keys (with DID) into Veramo. I dont know if i do it correctly and getting the keys with all information needed is a hassle.
Describe the solution you'd like
A function that takes PK and maybe keytype (if it cant be derived).
Describe alternatives you've considered
Currently we are saving all key and DID info in .evn variables then doing an import of those if we dont find those keys into the database. We are also trying to make sure we are only running on set of keys on the agent (running on a server).
Additional context
The text was updated successfully, but these errors were encountered: