-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #98 from sicpa-dlab/main
Publish v0.3.2
- Loading branch information
Showing
72 changed files
with
2,036 additions
and
1,961 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,113 @@ | ||
__version__ = "0.3.0" | ||
__version__ = "0.3.1" | ||
|
||
from didcomm.common.algorithms import AnonCryptAlg, AuthCryptAlg, SignAlg | ||
from didcomm.common.resolvers import ResolversConfig | ||
from didcomm.common.types import ( | ||
DIDCommMessageMediaTypes, | ||
DIDCommMessageProtocolTypes, | ||
DIDCommMessageTypes, | ||
DIDDocServiceTypes, | ||
VerificationMethodType, | ||
VerificationMaterial, | ||
VerificationMaterialFormat, | ||
) | ||
from didcomm.did_doc.did_doc import DIDDoc, DIDCommService, VerificationMethod | ||
from didcomm.did_doc.did_resolver import DIDResolver | ||
from didcomm.did_doc.did_resolver_in_memory import DIDResolverInMemory | ||
from didcomm.message import ( | ||
Attachment, | ||
AttachmentDataBase64, | ||
AttachmentDataJson, | ||
AttachmentDataLinks, | ||
FromPrior, | ||
GenericMessage, | ||
Message, | ||
) | ||
from didcomm.pack_encrypted import ( | ||
pack_encrypted, | ||
PackEncryptedConfig, | ||
PackEncryptedParameters, | ||
PackEncryptedResult, | ||
) | ||
from didcomm.pack_plaintext import ( | ||
pack_plaintext, | ||
PackPlaintextParameters, | ||
PackPlaintextResult, | ||
) | ||
from didcomm.pack_signed import pack_signed, PackSignedParameters, PackSignedResult | ||
from didcomm.protocols.routing.forward import ( | ||
is_forward, | ||
unpack_forward, | ||
wrap_in_forward, | ||
ForwardBody, | ||
ForwardMessage, | ||
ForwardPackResult, | ||
ForwardResult, | ||
) | ||
from didcomm.unpack import unpack, Metadata, UnpackConfig, UnpackResult | ||
from didcomm.secrets.secrets_resolver import Secret, SecretsResolver | ||
from didcomm.secrets.secrets_resolver_in_memory import SecretsResolverInMemory | ||
|
||
__all__ = [ | ||
# didcomm.common.algorithms | ||
"AnonCryptAlg", | ||
"AuthCryptAlg", | ||
"SignAlg", | ||
# didcomm.common.resolvers | ||
"ResolversConfig", | ||
# didcomm.common.types | ||
"DIDCommMessageMediaTypes", | ||
"DIDCommMessageProtocolTypes", | ||
"DIDCommMessageTypes", | ||
"DIDDocServiceTypes", | ||
"VerificationMethodType", | ||
"VerificationMaterial", | ||
"VerificationMaterialFormat", | ||
# didcomm.did_doc.did_doc | ||
"DIDDoc", | ||
"DIDCommService", | ||
"VerificationMethod", | ||
# didcomm.did_doc.did_resolver | ||
"DIDResolver", | ||
# did_resolver_in_memory | ||
"DIDResolverInMemory", | ||
# didcomm.message | ||
"Attachment", | ||
"AttachmentDataBase64", | ||
"AttachmentDataJson", | ||
"AttachmentDataLinks", | ||
"FromPrior", | ||
"GenericMessage", | ||
"Message", | ||
# didcomm.pack_encrypted | ||
"pack_encrypted", | ||
"PackEncryptedConfig", | ||
"PackEncryptedParameters", | ||
"PackEncryptedResult", | ||
# didcomm.pack_plaintext | ||
"pack_plaintext", | ||
"PackPlaintextParameters", | ||
"PackPlaintextResult", | ||
# didcomm.pack_signed | ||
"pack_signed", | ||
"PackSignedParameters", | ||
"PackSignedResult", | ||
# didcomm.protocols.routing.forward | ||
"is_forward", | ||
"unpack_forward", | ||
"wrap_in_forward", | ||
"ForwardBody", | ||
"ForwardMessage", | ||
"ForwardPackResult", | ||
"ForwardResult", | ||
# didcomm.unpack | ||
"unpack", | ||
"Metadata", | ||
"UnpackConfig", | ||
"UnpackResult", | ||
# didcomm.secrets.secrets_resolver | ||
"Secret", | ||
"SecretsResolver", | ||
# didcomm.secrets.secrets_resolver_in_memory | ||
"SecretsResolverInMemory", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.