Manually installing the SDK¶
If you require a higher level of security, you can instead install the DAML Connect SDK by manually downloading the compressed tarball, verifying its signature, extracting it and manually running the install script.
Note that the Windows installer is already signed (within the binary itself), and that signature is checked by Windows before starting it. Nevertheless, you can still follow the steps below to check its external signature file.
To do that:
Go to https://github.com/digital-asset/daml/releases. Confirm your browser sees a valid certificate for the github.com domain.
Download the artifact (Assets section, after the release notes) for your platform as well as the corresponding signature file. For example, if you are on macOS and want to install release 1.4.0, you would download the files
daml-sdk-1.4.0-macos.tar.gz
anddaml-sdk-1.4.0-macos.tar.gz.asc
. Note that for Windows you can choose between the tarball (ends in.tar.gz
), which follows the same instructions as the Linux and macOS ones (but assumes you have a number of typical Unix tools installed), or the installer, which ends with.exe
. Regardless, the steps to verify the signature are the same.To verify the signature, you need to have
gpg
installed (see https://gnupg.org for more information on that) and the Digital Asset Security Public Key imported into your keychain. Once you havegpg
installed, you can import the key by running:gpg --keyserver pool.sks-keyservers.net --search 4911A8DFE976ACDFA07130DBE8372C0C1C734C51
This should come back with a key belonging to
Digital Asset Holdings, LLC <security@digitalasset.com>
, created on 2019-05-16 and expiring on 2021-05-15. If any of those details are different, something is wrong. In that case please contact Digital Asset immediately.Once the key is imported, you can ask
gpg
to verify that the file you have downloaded has indeed been signed by that key. Continuing with our example of 1.4.0 on macOS, you should have both files in the current directory and run:gpg --verify daml-sdk-1.4.0-macos.tar.gz.asc
and that should give you a result that looks like:
gpg: assuming signed data in 'daml-sdk-1.4.0-macos.tar.gz' gpg: Signature made Wed Aug 12 13:30:49 2020 CEST gpg: using RSA key E8372C0C1C734C51 gpg: Good signature from "Digital Asset Holdings, LLC <security@digitalasset.com>" [unknown] gpg: WARNING: This key is not certified with a trusted signature! gpg: There is no indication that the signature belongs to the owner. Primary key fingerprint: 4911 A8DF E976 ACDF A071 30DB E837 2C0C 1C73 4C51
Note: This warning means you have not told gnupg that you trust this key actually belongs to Digital Asset. The
[unknown]
tag next to the key has the same meaning:gpg
relies on a web of trust, and you have not told it how far you trust this key. Nevertheless, at this point you have verified that this is indeed the key that has been used to sign the archive.The next step is to extract the tarball and run the install script (unless you chose the Windows installer, in which case the next step is to double-click it):
tar xzf daml-sdk-1.4.0-macos.tar.gz cd sdk-1.4.0 ./install.sh
Just like for the more automated install procedure, you may want to add
~/.daml/bin
to your$PATH
.