Skip to content

Downloads

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

Linux

Linux users can install the Enclave agent using a .deb or .rpm package. Use the table below to find the appropriate download link for your platform:

DistributionArchitectureAgentGUI
Debian/Ubuntu (.deb)x86_64Download agent (.deb)Download GUI (.deb)
Debian/Ubuntu (.deb)ARM64Download agent (.deb)Download GUI (.deb)
RHEL/CentOS (.rpm)x86_64Download agent (.rpm)N/A
RHEL/CentOS (.rpm)ARM64Download agent (.rpm)N/A

INFO

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

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

Agent only installation commands

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

Agent installation with GUI

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

MacOS

MacOS users can install the Enclave application using a .pkg installer. .pkg installers are signed and notarized by Apple, ensuring a secure installation process. Package installers can be installed via the command line or by double-clicking the downloaded file. Use the table below to find the appropriate download link for your platform:

ArchitectureAgentGUI
x86_64Download agent (.pkg)Download GUI (.pkg)
ARM64Download agent (.pkg)Download GUI (.pkg)

INFO

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

https://enclave.sidechannel.com/downloads/agent/1.12.0/enclave_darwin_amd64.pkg

Agent only installation commands

sh
curl -Lo enclave.pkg https://enclave.sidechannel.com/downloads/agent/latest/enclave_darwin_amd64.pkg \
  && sudo installer -pkg enclave.pkg -target /
sh
curl -Lo enclave.pkg https://enclave.sidechannel.com/downloads/agent/latest/enclave_darwin_arm64.pkg && sudo installer -pkg enclave.pkg -target /

Agent installation with GUI

sh
curl -Lo enclave.pkg https://enclave.sidechannel.com/downloads/agent/latest/enclave_darwin_amd64.pkg \
  && sudo installer -pkg enclave.pkg -target / \
  && curl -Lo enclave-gui.pkg https://enclave.sidechannel.com/downloads/gui/latest/enclave_darwin_amd64.pkg \
  && sudo installer -pkg enclave-gui.pkg -target /
sh
curl -Lo enclave.pkg https://enclave.sidechannel.com/downloads/agent/latest/enclave_darwin_arm64.pkg \
  && sudo installer -pkg enclave.pkg -target / \
  && curl -Lo enclave-gui.pkg https://enclave.sidechannel.com/downloads/gui/latest/enclave_darwin_arm64.pkg \
  && sudo installer -pkg enclave-gui.pkg -target /

Windows

Windows users can install the Enclave application using a .msi installer. .msi installers are signed by an EV certificate with a root that is trusted by Windows devices. This ensures a secure installation process. However, based on how Windows Smartscreen works, users may need to explicitly allow the download to proceed. This may happen until new agent release reaches a unknown threshold of reputation. We're actively looking for solutions in order to ensure this doesn't happen on new agent releases. Use the table below to find the appropriate download link for your platform:

ArchitectureAgentGUI
x86_64Download agent (.msi)Download GUI (.msi)
ARM64Download agent (.msi)N/A

INFO

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

https://enclave.sidechannel.com/downloads/agent/1.12.0/enclave_windows_amd64.msi

Agent only installation commands

powershell
curl.exe -Lo enclave.msi https://enclave.sidechannel.com/agent/latest/enclave_windows_amd64.msi `
  && msiexec /i enclave.msi /quiet /norestart
powershell
curl.exe -Lo enclave.msi https://enclave.sidechannel.com/agent/latest/enclave_windows_arm64.msi `
  && msiexec /i enclave.msi /quiet /norestart

Agent installation with GUI

powershell
curl.exe -Lo enclave.msi https://enclave.sidechannel.com/agent/latest/enclave_windows_amd64.msi `
  && msiexec /i enclave.msi /quiet /norestart `
  && curl.exe -Lo enclave-gui.msi https://enclave.sidechannel.com/gui/latest/enclave_windows_amd64.msi `
  && msiexec /i enclave-gui.msi /quiet /norestart

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