ockam
ockam copied to clipboard
Orchestrate end-to-end encryption, cryptographic identities, mutual authentication, and authorization policies between distributed applications – at massive scale.
Currently: ``` > ockam node create n1 --api-address "127.0.0.1:6001" > ockam node create n2 --api-address "127.0.0.1:6002" > ockam tcp-listener create "127.0.0.1:7001" --node n2 > ockam tcp-connection create "127.0.0.1:7001" --node n1...
In a conversation with @anuvratsingh here: https://github.com/build-trust/ockam/issues/3076#issuecomment-1207273150 > I think each command should have examples defined in a const and then we can show them on error and we can...
Currently: ``` > ockam node create n1 --api-address "127.0.0.1:6001" > ockam node create n2 --api-address "127.0.0.1:6002" > ockam tcp-listener create "127.0.0.1:7001" --node n2 > ockam tcp-connection create "127.0.0.1:7001" --node n1...
This is more of a misuse by me and this issue is for documenting it as I wasn't able to find it. TLDR: Use `ockam node delete --all` rather than...
Addresses: https://github.com/build-trust/ockam/security/dependabot/8 Also see: https://github.com/build-trust/ockam/pull/2887 And: https://github.com/build-trust/ockam/pull/2542#issuecomment-1055630787 WORK IN PROGRESS
emerged while resolving #3054 - Reproduce ``` info!("*********************** before create detached ****************"); let mut detached = ctx.new_detached(Address::random_local()).await?; info!("*********************** after create detached ****************"); info!("----------------------- before stopping detached-----------------"); detached.stop().await?; info!("----------------------- after stopping...
This currently doesn't work ``` » ockam node create n1 --api-address 127.0.0.1:6001 » ockam node create n2 --api-address 127.0.0.1:6002 » ockam secure-channel create --node n1 /ip4/127.0.0.1/tcp/6002/ockam/api encountered an error in...
Related PR: https://github.com/build-trust/ockam/pull/2995 We need to add a new section to the `ockam_command/ockam.toml` file to define the auth0 config values used at `ockam_command/src/enroll/auth0.rs:79` (except for `SCOPES`): ```rust impl Auth0Service {...
[Rust - Test](https://github.com/build-trust/ockam/blob/develop/.github/workflows/rust.yml#L126) & [Rust - Nightly Test](https://github.com/build-trust/ockam/blob/develop/.github/workflows/rust.yml#L217) jobs take significantly more time than the other jobs in the Rust workflow. It would be interesting to try if we had...
Ockam Transports provide Ockam Routing support over various communication protocols. The [get-started guide](https://github.com/ockam-network/ockam/tree/develop/documentation/guides/rust) has an introductory example of how the TCP transport can be used. A UDP transport would be...