Skip to content

Commit

Permalink
refactor: move jwe to crypto package
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Bluhm <[email protected]>
  • Loading branch information
dbluhm committed Nov 2, 2023
1 parent 1e754e4 commit ef06475
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion didcomm_messaging/crypto/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

from pydid import VerificationMethod

from didcomm_messaging.jwe import JweEnvelope
from .jwe import JweEnvelope


class CryptoServiceError(Exception):
Expand Down
2 changes: 1 addition & 1 deletion didcomm_messaging/crypto/askar/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

from pydid import VerificationMethod
from didcomm_messaging.crypto import SecretsManager
from didcomm_messaging.jwe import (
from ..jwe import (
JweBuilder,
JweEnvelope,
JweRecipient,
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion didcomm_messaging/packaging.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

from pydid import DIDUrl, VerificationMethod
from didcomm_messaging.crypto import P, S, CryptoService, SecretsManager
from didcomm_messaging.jwe import JweEnvelope, from_b64url
from didcomm_messaging.crypto.jwe import JweEnvelope, from_b64url
from didcomm_messaging.resolver import DIDResolver


Expand Down

0 comments on commit ef06475

Please sign in to comment.