Skip to content

Commit ab81c65

Browse files
committed
Use raw key for test profiles
Signed-off-by: jamshale <[email protected]>
1 parent 71e776a commit ab81c65

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

acapy_agent/utils/testing.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,17 @@ async def create_test_profile(
1717
settings = {
1818
"wallet.type": "askar",
1919
"auto_provision": True,
20-
"wallet.key": "insecure",
21-
"wallet.key_derivation_method": "kdf:argon2i:mod",
20+
"wallet.key": "5BngFuBpS4wjFfVFCtPqoix3ZXG2XR8XJ7qosUzMak7R",
21+
"wallet.key_derivation_method": "RAW",
2222
}
2323
_id = settings.get("wallet.id", str(uuid4()))
2424
settings["wallet.id"] = _id
2525
"""Create a profile for testing."""
2626
store_config = AskarStoreConfig(
2727
{
2828
"name": _id,
29-
"key": "insecure",
30-
"key_derivation_method": settings.get("wallet.key_derivation_method"),
29+
"key": "5BngFuBpS4wjFfVFCtPqoix3ZXG2XR8XJ7qosUzMak7R",
30+
"key_derivation_method": "RAW",
3131
"auto_recreate": True,
3232
}
3333
)

0 commit comments

Comments
 (0)