Ockam 0.64.0
Homebrew
To install this release using Homebrew:
$ brew tap build-trust/ockam
$ brew install ockam
Docker
To use the Docker OCI package:
docker pull ghcr.io/build-trust/ockam:0.64.0
Precompiled Binaries
# download sha256sums.txt
curl --proto '=https' --tlsv1.2 -sSfL -O \
https://github.com/build-trust/ockam/releases/download/ockam_v0.64.0/sha256sums.txt
# download sha256sums.txt.sig
curl --proto '=https' --tlsv1.2 -sSfL -O \
https://github.com/build-trust/ockam/releases/download/ockam_v0.64.0/sha256sums.txt.sig
# download our release public key
curl --proto '=https' --tlsv1.2 -sSfL -o ockam.pub \
https://raw.githubusercontent.com/build-trust/ockam/develop/tools/docker/cosign.pub
# verify signatures
cosign verify-blob --key ockam.pub --signature sha256sums.txt.sig sha256sums.txt
# download ockam command binary for your architecture
curl --proto '=https' --tlsv1.2 -sSfL -O \
https://github.com/build-trust/ockam/releases/download/ockam_v0.64.0/ockam.x86_64-unknown-linux-gnu
# verify that the sha256 hash of the downloaded binary is the same as
# the corresponding hash mentioned in sha256sums.txt
cat sha256sums.txt | grep ockam.x86_64-unknown-linux-gnu | sha256sum -c
# rename the download binary and give it permission to execure
mv ockam.x86_64-unknown-linux-gnu ockam
chmod u+x ockam
Terraform
To install the Ockam Terraform Provider, copy and paste this code into your Terraform configuration. Then, run terraform init
.
terraform {
required_providers {
ockam = {
source = "build-trust/ockam"
version = "0.64.0"
}
}
}
provider ockam {}
Rust Crates
To use Ockam as a Rust library, add the following line to your Cargo.toml file:
ockam = "0.64.0"
The following crates were published as part of this release:
ockam 0.64.0
(Documentation, CHANGELOG)ockam_api 0.7.0
(Documentation, CHANGELOG)ockam_channel 0.58.0
(Documentation, CHANGELOG)ockam_command 0.64.0
(Documentation, CHANGELOG)ockam_core 0.58.0
(Documentation, CHANGELOG)ockam_examples 0.31.0
(Documentation, CHANGELOG)ockam_executor 0.26.0
(Documentation, CHANGELOG)ockam-ffi 0.50.0
(Documentation, CHANGELOG)ockam_identity 0.52.0
(Documentation, CHANGELOG)ockam_key_exchange_core 0.49.0
(Documentation, CHANGELOG)ockam_key_exchange_x3dh 0.53.0
(Documentation, CHANGELOG)ockam_key_exchange_xx 0.54.0
(Documentation, CHANGELOG)ockam_node 0.61.0
(Documentation, CHANGELOG)ockam_transport_ble 0.19.0
(Documentation, CHANGELOG)ockam_transport_core 0.31.0
(Documentation, CHANGELOG)ockam_transport_tcp 0.59.0
(Documentation, CHANGELOG)ockam_transport_udp 0.6.0
(Documentation, CHANGELOG)ockam_transport_websocket 0.50.0
(Documentation, CHANGELOG)ockam_vault 0.54.0
(Documentation, CHANGELOG)