-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Move cstring and ccalback to abi_utils module Signed-off-by: Patrik Stas <[email protected]> * Move c-abi testing timeout utils Signed-off-by: Patrik Stas <[email protected]> * Move threadpool file Signed-off-by: Patrik Stas <[email protected]> * Move c return_types file Signed-off-by: Patrik Stas <[email protected]> * Optimize imports Signed-off-by: Patrik Stas <[email protected]> * Rename module 'api' to 'api_c' Signed-off-by: Patrik Stas <[email protected]> * Move abi_utils to api_c/utils_c Signed-off-by: Patrik Stas <[email protected]> * Move state conversion to separate file Signed-off-by: Patrik Stas <[email protected]> * Adjust imports for tests Signed-off-by: Patrik Stas <[email protected]> * Restructure api_c files, extract handles api Signed-off-by: Patrik Stas <[email protected]> * Reformat and optimize imports in api_lib Signed-off-by: Patrik Stas <[email protected]> * Move c-errors related code to api_lib module Signed-off-by: Patrik Stas <[email protected]> * Remove unused devsetup global variable Signed-off-by: Patrik Stas <[email protected]> * Move object_cache to api_handle module Signed-off-by: Patrik Stas <[email protected]> * Fix compile error Signed-off-by: Patrik Stas <[email protected]> * Refarmat and optimize imports in api_lib Signed-off-by: Patrik Stas <[email protected]> * Remove unused import Signed-off-by: Patrik Stas <[email protected]>
- Loading branch information
1 parent
97ad60a
commit 3c2165d
Showing
49 changed files
with
575 additions
and
540 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,30 @@ | ||
* #### Connection Protocol [`https://didcomm.org/connections/1.0/*`](https://github.com/hyperledger/aries-rfcs/tree/master/features/0160-connection-protocol) | ||
* [Inviter API](./libvcx/src/api/connection.rs) | ||
* [Invitee API](./libvcx/src/api/connection.rs) | ||
* [Inviter API](libvcx/src/api_lib/connection.rs) | ||
* [Invitee API](libvcx/src/api_lib/connection.rs) | ||
* [Implementation](./libvcx/src/aries/handlers/connection/) | ||
- Missing implicit invitation | ||
|
||
* #### Basic Message: [`https://didcomm.org/basicmessage/1.0/*`](https://github.com/hyperledger/aries-rfcs/tree/master/features/0095-basic-message) | ||
* [Implementation](./libvcx/src/aries/handlers/connection/) | ||
* [Send API](./libvcx/src/api/connection.rs) | ||
* [Download API](./libvcx/src/api/utils.rs) | ||
* [Send API](libvcx/src/api_lib/connection.rs) | ||
* [Download API](libvcx/src/api_lib/utils.rs) | ||
|
||
* #### Credential Issuance [`https://didcomm.org/issue-credential/1.0/*`](https://github.com/hyperledger/aries-rfcs/blob/master/features/0036-issue-credential) | ||
* [Issuer API](./libvcx/src/api/issuer_credential.rs) | ||
* [Holder API](./libvcx/src/api/credential.rs) | ||
* [Issuer API](libvcx/src/api_lib/issuer_credential.rs) | ||
* [Holder API](libvcx/src/api_lib/credential.rs) | ||
* [Implementation](./libvcx/src/aries/handlers/issuance/) | ||
- Missing initiation by holder using `propose-credential` message | ||
|
||
* #### Credential Presentation: [`https://didcomm.org/present-proof/1.0/*`](https://github.com/hyperledger/aries-rfcs/tree/master/features/0037-present-proof) | ||
* [Verifier API](./libvcx/src/api/proof.rs) | ||
* [Prover API](./libvcx/src/api/disclosed_proof.rs) | ||
* [Verifier API](libvcx/src/api_lib/proof.rs) | ||
* [Prover API](libvcx/src/api_lib/disclosed_proof.rs) | ||
* [Implementation](./libvcx/src/aries/handlers/proof_presentation) | ||
- Missing initiation or alternation of presentation by prover using `propose-presentation` message | ||
|
||
* #### Trust Ping: [`https://didcomm.org/trust_ping/1.0/*`](https://github.com/hyperledger/aries-rfcs/blob/master/features/0048-trust-ping/README.md) | ||
* [API](./libvcx/src/api/connection.rs) | ||
* [API](libvcx/src/api_lib/connection.rs) | ||
* [Implementation](./libvcx/src/aries/handlers/connection/) | ||
|
||
* #### Discover Features: [`https://didcomm.org/discover-features/1.0/*`](https://github.com/hyperledger/aries-rfcs/tree/master/features/0031-discover-features) | ||
* [API](./libvcx/src/api/connection.rs) | ||
* [API](libvcx/src/api_lib/connection.rs) | ||
* [Implementation](./libvcx/src/aries/handlers/connection/) |
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
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
pub mod connection; | ||
pub mod credential; | ||
pub mod credential_def; | ||
pub mod disclosed_proof; | ||
pub mod issuer_credential; | ||
pub mod logger; | ||
pub mod proof; | ||
pub mod schema; | ||
pub mod utils; | ||
pub mod vcx; | ||
pub mod wallet; | ||
mod filters; |
Oops, something went wrong.