Skip to content

Downloads

We provide agent distributables for common platforms. If your platform isn't supported below, please let us know.

Linux

CLI only

sh
curl -Lo enclave.deb https://enclave.sidechannel.com/downloads/agent/latest/enclave_linux_amd64.deb \
  && sudo dpkg -i enclave.deb
sh
curl -Lo enclave.deb https://enclave.sidechannel.com/downloads/agent/latest/enclave_linux_arm64.deb \
  && sudo dpkg -i enclave.deb
sh
curl -Lo enclave.rpm https://enclave.sidechannel.com/downloads/agent/latest/enclave_linux_amd64.rpm \
  && sudo yum install ./enclave.rpm
sh
curl -Lo enclave.rpm https://enclave.sidechannel.com/downloads/agent/latest/enclave_linux_arm64.rpm \
  && sudo yum install ./enclave.rpm

INFO

If you'd like to install a specific version, replace latest with the version in question:

https://enclave.sidechannel.com/downloads/agent/1.7.0/enclave_linux_amd64.deb

GUI application and CLI

sh
curl -Lo enclave.deb https://enclave.sidechannel.com/downloads/gui/latest/enclave_linux_amd64.deb \
  && sudo dpkg -i enclave.deb
sh
curl -Lo enclave.deb https://enclave.sidechannel.com/downloads/gui/latest/enclave_linux_arm64.deb \
  && sudo dpkg -i enclave.deb

MacOS

sh
curl -Lo enclave.pkg https://enclave.sidechannel.com/downloads/gui/latest/enclave_darwin_amd64.pkg
sh
curl -Lo enclave.pkg https://enclave.sidechannel.com/downloads/gui/latest/enclave_darwin_arm64.pkg

INFO

If you'd like to install a specific version, replace latest with the version in question:

https://enclave.sidechannel.com/downloads/gui/1.7.0/enclave_darwin_amd64.pkg

Windows

https://enclave.sidechannel.com/downloads/gui/latest/enclave_windows_amd64.msi

Verifying checksums

To verify the integrity of the downloaded files, all releases contain a checksum.txt file which includes checksums for all assets available in a release. For example, you can use the sha256sum command to verify the checksum of the downloaded file:

sh
curl -Lo enclave_linux_amd64.deb https://enclave.sidechannel.com/downloads/agent/latest/enclave_linux_amd64.deb
curl -Lo checksums.txt https://enclave.sidechannel.com/downloads/agent/latest/checksums.txt
cat ./checksums.txt | grep "enclave_linux_amd64.deb" | sha256sum -c