Skip to content

Commit a88f016

Browse files
committed
chore: export secrets managers from crypto backend
Export FileBasedSecretsManager and InMemorySecretsManager from the crypto backend package for easier access. Signed-off-by: Daniel Bluhm <dbluhm@pm.me>
1 parent 4aa6312 commit a88f016

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,8 @@
11
"""Cryptography and Secrets Management backends."""
2+
3+
from didcomm_messaging.crypto.backend.basic import (
4+
FileBasedSecretsManager,
5+
InMemorySecretsManager,
6+
)
7+
8+
__all__ = ["FileBasedSecretsManager", "InMemorySecretsManager"]

0 commit comments

Comments
 (0)