Skip to content

Releases: mistio/mist-cli

v0.5.0

21 Oct 22:52
Compare
Choose a tag to compare
  • Change: Update create-machine params

Installation

Instructions

Linux

  1. Download the latest release with the command:
    curl -LO "https://dl.mist.io/cli/v0.5.0/bin/linux/amd64/mist"
    
  2. Validate the binary (optional):
    Download the mist checksum file:
    curl -LO "https://dl.mist.io/cli/v0.5.0/bin/linux/amd64/mist.sha256"
    
    Validate the mist binary against the checksum file:
    echo "$(<mist.sha256) mist" | sha256sum --check
    
    If valid, the output is:
    mist: OK
    
    If the check fails, sha256 exits with nonzero status and prints output similar to:
    mist: FAILED
    sha256sum: WARNING: 1 computed checksum did NOT match
    
  3. Make mist binary executable:
    chmod +x ./mist
    
  4. Install mist on path (optional):
    e.g.
    mv mist /usr/local/bin/mist
    
  5. Enable mist autocompletion on all your sessions (optional):
    Bash
    echo 'source <(mist completion bash)' >>~/.bashrc
    
    Zsh
    echo 'source <(mist completion zsh)' >>~/.zshrc
    

MacOS

  1. Download the latest release with the command:
    curl -LO "https://dl.mist.io/cli/v0.5.0/bin/darwin/amd64/mist"
    
  2. Validate the binary (optional):
    Download the mist checksum file:
    curl -LO "https://dl.mist.io/cli/v0.5.0/bin/darwin/amd64/mist.sha256"
    
    Validate the mist binary against the checksum file:
    echo "$(<mist.sha256) mist" | sha256sum --check
    
    If valid, the output is:
    mist: OK
    
    If the check fails, sha256 exits with nonzero status and prints output similar to:
    mist: FAILED
    sha256sum: WARNING: 1 computed checksum did NOT match
    
  3. Make mist binary executable:
    chmod +x ./mist
    
  4. Install mist on path (optional):
    e.g.
    sudo mv ./mist /usr/local/bin/mist
    sudo chown root: /usr/local/bin/mist
    
  5. Enable mist autocompletion on all your sessions (optional):
    Bash
    • Check bash version
      echo $BASH_VERSION
      
    • Install/upgrade bash to v4.0+ if older
      brew install bash
      
    • Source completion script
      echo 'source <(mist completion bash)' >>~/.bash_profile
      
    Zsh
    echo 'source <(mist completion zsh)' >>~/.zshrc
    

Windows

  1. Download the latest release with the command:
    curl -LO "https://dl.mist.io/cli/v0.5.0/bin/windows/amd64/mist.exe"
    
  2. Validate the binary (optional):
    Download the mist checksum file:
    curl -LO "https://dl.mist.io/cli/v0.5.0/bin/windows/amd64/mist.exe.sha256"
    
    Validate the mist binary against the checksum file:
    • Using Command Prompt to manually compare CertUtil's output to the checksum file downloaded:
      CertUtil -hashfile mist.exe SHA256
      type mist.exe.sha256
      
    • Using PowerShell to automate the verification using the -eq operator to get a True or False result:
      $($(CertUtil -hashfile .\mist.exe SHA256)[1] -replace " ", "") -eq $(type .\mist.exe.sha256)
      
  3. Add the binary in to your PATH.
  4. Install mist on path (optional):
    e.g.
    mv mist /usr/local/bin/mist
    
  5. Enable mist autocompletion on all your sessions (optional):
    Powershell
    mist completion powershell
    
    Bash
    echo 'source <(mist completion bash)' >>~/.bashrc
    
    Zsh
    echo 'source <(mist completion zsh)' >>~/.zshrc
    

Binaries

Linux

Arch SHA256
amd64 51c7d97887921babeb3d1ec513013e8806cf7a988904227e544e8f5086cbd6e9
arm64 b3b195c596ef08192bc7a0dff55626e03087a4526741111f419367b29216d0c9

Darwin

Arch SHA256
amd64 1bdb740904f6cf79a7661d9e0196e9973e43e2f9e65150a33548f637e0562510
arm64 bb5d33f82765846064d0bb23ae6e6a0735e7b9d4c499541892aa93adf962a3e2

Windows

Arch SHA256
amd64 8ca65e0e10c748466ed9476fe01b50c08c315775852dab378cd1c83fb3bc7bac

Freebsd

Arch SHA256
amd64 020251e5a7177f3439a5299803049f1365f0ac9fd0acbf3892e4d3a5c71a297b
arm64 eaadb6caa87ad35d8635071a1b08039fa03b2a8a97dc76c47e09f4dd9272c0bf

Openbsd

Arch SHA256
amd64 cddf429fb4081a96da48ec496c6e590bd6af75a1b32a69a2f7548e105f699ff8
arm64 f6f2da75898c86b75e8241a4721b85a6113c781bc74803a58e984dddb3a86834

Netbsd

Arch SHA256
amd64 c1803e472035cdee8ebea3d59fe78abc43ef6e81708d1fd76820c49bdbea46c4
arm64 b60a746af2d6d428d0bea31bbf3d82809608d86d085c8827dc79b8939cc70dca

v0.4.0

04 Aug 14:34
Compare
Choose a tag to compare
  • Feature: Add support for Kubernetes Clusters

Installation

Instructions

Linux

  1. Download the latest release with the command:
    curl -LO "https://dl.mist.io/cli/v0.4.0/bin/linux/amd64/mist"
    
  2. Validate the binary (optional):
    Download the mist checksum file:
    curl -LO "https://dl.mist.io/cli/v0.4.0/bin/linux/amd64/mist.sha256"
    
    Validate the mist binary against the checksum file:
    echo "$(<mist.sha256) mist" | sha256sum --check
    
    If valid, the output is:
    mist: OK
    
    If the check fails, sha256 exits with nonzero status and prints output similar to:
    mist: FAILED
    sha256sum: WARNING: 1 computed checksum did NOT match
    
  3. Make mist binary executable:
    chmod +x ./mist
    
  4. Install mist on path (optional):
    e.g.
    mv mist /usr/local/bin/mist
    
  5. Enable mist autocompletion on all your sessions (optional):
    Bash
    echo 'source <(mist completion bash)' >>~/.bashrc
    
    Zsh
    echo 'source <(mist completion zsh)' >>~/.zshrc
    

MacOS

  1. Download the latest release with the command:
    curl -LO "https://dl.mist.io/cli/v0.4.0/bin/darwin/amd64/mist"
    
  2. Validate the binary (optional):
    Download the mist checksum file:
    curl -LO "https://dl.mist.io/cli/v0.4.0/bin/darwin/amd64/mist.sha256"
    
    Validate the mist binary against the checksum file:
    echo "$(<mist.sha256) mist" | sha256sum --check
    
    If valid, the output is:
    mist: OK
    
    If the check fails, sha256 exits with nonzero status and prints output similar to:
    mist: FAILED
    sha256sum: WARNING: 1 computed checksum did NOT match
    
  3. Make mist binary executable:
    chmod +x ./mist
    
  4. Install mist on path (optional):
    e.g.
    sudo mv ./mist /usr/local/bin/mist
    sudo chown root: /usr/local/bin/mist
    
  5. Enable mist autocompletion on all your sessions (optional):
    Bash
    • Check bash version
      echo $BASH_VERSION
      
    • Install/upgrade bash to v4.0+ if older
      brew install bash
      
    • Source completion script
      echo 'source <(mist completion bash)' >>~/.bash_profile
      
    Zsh
    echo 'source <(mist completion zsh)' >>~/.zshrc
    

Windows

  1. Download the latest release with the command:
    curl -LO "https://dl.mist.io/cli/v0.4.0/bin/windows/amd64/mist.exe"
    
  2. Validate the binary (optional):
    Download the mist checksum file:
    curl -LO "https://dl.mist.io/cli/v0.4.0/bin/windows/amd64/mist.exe.sha256"
    
    Validate the mist binary against the checksum file:
    • Using Command Prompt to manually compare CertUtil's output to the checksum file downloaded:
      CertUtil -hashfile mist.exe SHA256
      type mist.exe.sha256
      
    • Using PowerShell to automate the verification using the -eq operator to get a True or False result:
      $($(CertUtil -hashfile .\mist.exe SHA256)[1] -replace " ", "") -eq $(type .\mist.exe.sha256)
      
  3. Add the binary in to your PATH.
  4. Install mist on path (optional):
    e.g.
    mv mist /usr/local/bin/mist
    
  5. Enable mist autocompletion on all your sessions (optional):
    Powershell
    mist completion powershell
    
    Bash
    echo 'source <(mist completion bash)' >>~/.bashrc
    
    Zsh
    echo 'source <(mist completion zsh)' >>~/.zshrc
    

Binaries

Linux

Arch SHA256
amd64 00d7eea21d3e16d46637cd876c72c5053f07804d5f04d2e22ef1587ba69e1b94
arm64 a2ffcb83173b5ad5c3be6dd4b13e764c9a0a8011c1ccfe6ce177900e7f6e55e2

Darwin

Arch SHA256
amd64 80ae68185e29d87343a42c6a7d6a78628a1b300bc757ee5173cfcea98d44d571
arm64 47f9b34df583cc796658788ac18fd098b138d70122be64a0eef4e137f0a2b09a

Windows

Arch SHA256
amd64 768cb3dc7484dc33b7f0b7487a3a085ef6e8e07458c413725f3cd39f8eb36012

Freebsd

Arch SHA256
amd64 cf21b7c8a2b36c2bc1110bf1c0d741fd202b47cc2fbbba4b339679c1c7fb9205
arm64 67f149a1316d3f42d56264a179e383897cbfbc6354b961793c7d036a2688e64e

Openbsd

Arch SHA256
amd64 74a393f86602886cdd48a72379e5c89230631a6cdad5ff0c08ff8ce680dc1da9
arm64 8039de6cfb27f3d88f90aa24aa8cf4dfc7e9eec552b54620b9dedf7ca9cbeb93

Netbsd

Arch SHA256
amd64 b367a836f67ca9038c0f11e533aa8480d6b33a0f2db5de91d922dbcee2b584a1
arm64 2cfcbe931a9a2b81f4afecf66d9d01a7e11f1b4b08c6f062007a92691055c168

v0.3.0

21 Jul 12:10
Compare
Choose a tag to compare
  • Feature: Introduce meter command for metering resources
  • Feature: Get datapoints
  • Feature: Support users & orgs endpoints
  • Feature: Add waiters in create machine command
  • Feature: Add support for K8s clouds
  • Feature: Add support for create machine on Linode, Azure, GCE
  • Feature: Add support for get job command
  • Change: Update openapi-cli-generator

Installation

Instructions

Linux

  1. Download the latest release with the command:
    curl -LO "https://dl.mist.io/cli/v0.3.0/bin/linux/amd64/mist"
    
  2. Validate the binary (optional):
    Download the mist checksum file:
    curl -LO "https://dl.mist.io/cli/v0.3.0/bin/linux/amd64/mist.sha256"
    
    Validate the mist binary against the checksum file:
    echo "$(<mist.sha256) mist" | sha256sum --check
    
    If valid, the output is:
    mist: OK
    
    If the check fails, sha256 exits with nonzero status and prints output similar to:
    mist: FAILED
    sha256sum: WARNING: 1 computed checksum did NOT match
    
  3. Make mist binary executable:
    chmod +x ./mist
    
  4. Install mist on path (optional):
    e.g.
    mv mist /usr/local/bin/mist
    
  5. Enable mist autocompletion on all your sessions (optional):
    Bash
    echo 'source <(mist completion bash)' >>~/.bashrc
    
    Zsh
    echo 'source <(mist completion zsh)' >>~/.zshrc
    

MacOS

  1. Download the latest release with the command:
    curl -LO "https://dl.mist.io/cli/v0.3.0/bin/darwin/amd64/mist"
    
  2. Validate the binary (optional):
    Download the mist checksum file:
    curl -LO "https://dl.mist.io/cli/v0.3.0/bin/darwin/amd64/mist.sha256"
    
    Validate the mist binary against the checksum file:
    echo "$(<mist.sha256) mist" | sha256sum --check
    
    If valid, the output is:
    mist: OK
    
    If the check fails, sha256 exits with nonzero status and prints output similar to:
    mist: FAILED
    sha256sum: WARNING: 1 computed checksum did NOT match
    
  3. Make mist binary executable:
    chmod +x ./mist
    
  4. Install mist on path (optional):
    e.g.
    sudo mv ./mist /usr/local/bin/mist
    sudo chown root: /usr/local/bin/mist
    
  5. Enable mist autocompletion on all your sessions (optional):
    Bash
    • Check bash version
      echo $BASH_VERSION
      
    • Install/upgrade bash to v4.0+ if older
      brew install bash
      
    • Source completion script
      echo 'source <(mist completion bash)' >>~/.bash_profile
      
    Zsh
    echo 'source <(mist completion zsh)' >>~/.zshrc
    

Windows

  1. Download the latest release with the command:
    curl -LO "https://dl.mist.io/cli/v0.3.0/bin/windows/amd64/mist.exe"
    
  2. Validate the binary (optional):
    Download the mist checksum file:
    curl -LO "https://dl.mist.io/cli/v0.3.0/bin/windows/amd64/mist.exe.sha256"
    
    Validate the mist binary against the checksum file:
    • Using Command Prompt to manually compare CertUtil's output to the checksum file downloaded:
      CertUtil -hashfile mist.exe SHA256
      type mist.exe.sha256
      
    • Using PowerShell to automate the verification using the -eq operator to get a True or False result:
      $($(CertUtil -hashfile .\mist.exe SHA256)[1] -replace " ", "") -eq $(type .\mist.exe.sha256)
      
  3. Add the binary in to your PATH.
  4. Install mist on path (optional):
    e.g.
    mv mist /usr/local/bin/mist
    
  5. Enable mist autocompletion on all your sessions (optional):
    Powershell
    mist completion powershell
    
    Bash
    echo 'source <(mist completion bash)' >>~/.bashrc
    
    Zsh
    echo 'source <(mist completion zsh)' >>~/.zshrc
    

Binaries

Linux

Arch SHA256
amd64 27db377488ecac615fef2d05d33869502dc25220e41b06f50eeeed4fca84bb4e
arm64 88c562a06871414eecca47080ab575f16d5bf34e26098c5bb7fbf500a9397bec

Darwin

Arch SHA256
amd64 422c25124f9dc9e69f1b501033395401c552753f1d40a31474b976b9b6ac50db
arm64 ffd05dc13d5a9b32fed1c7df43ae645e586e98008c328237bd98a939a93c20ca

Windows

Arch SHA256
amd64 f0f5fcedb5c4c6838df90bbc3a83a1247f59e2544e4f95e5fbd7b40b1279384f

Freebsd

Arch SHA256
amd64 cc69eaa15c6c7a7a8caa047ca3a903179579236e1c907d1879a15347c8c193a7
arm64 c0f29e1be82ca248a0b608a62b22d2032798346071f776bbea36a544036e0e9d

Openbsd

Arch SHA256
amd64 e70fecfe4bd19461c20e25ead16b79643ce4a62afba92ceafa5f4fda14dd10f9
arm64 c17af1c6472bc14a599d66407463ce2ebc5cc0d86811d58032873491af2f41b5

Netbsd

Arch SHA256
amd64 d7f3b9df9191e2cab817bbdd289004c9c164af943d28111bf28e3fc5a491412f
arm64 843cd50850e210ba51b58b6b0e8f5aa4e85197ec72eeca63188aa0fb6156e883

v0.2.0

21 May 21:15
Compare
Choose a tag to compare

Installation

Instructions

Linux

  1. Download the latest release with the command:
    curl -LO "https://dl.mist.io/cli/v0.2.0/bin/linux/amd64/mist"
    
  2. Validate the binary (optional):
    Download the mist checksum file:
    curl -LO "https://dl.mist.io/cli/v0.2.0/bin/linux/amd64/mist.sha256"
    
    Validate the mist binary against the checksum file:
    echo "$(<mist.sha256) mist" | sha256sum --check
    
    If valid, the output is:
    mist: OK
    
    If the check fails, sha256 exits with nonzero status and prints output similar to:
    mist: FAILED
    sha256sum: WARNING: 1 computed checksum did NOT match
    
  3. Make mist binary executable:
    chmod +x ./mist
    
  4. Install mist on path (optional):
    e.g.
    mv mist /usr/local/bin/mist
    
  5. Enable mist autocompletion on all your sessions (optional):
    Bash
    echo 'source <(mist completion bash)' >>~/.bashrc
    
    Zsh
    echo 'source <(mist completion zsh)' >>~/.zshrc
    

MacOS

  1. Download the latest release with the command:
    curl -LO "https://dl.mist.io/cli/v0.2.0/bin/darwin/amd64/mist"
    
  2. Validate the binary (optional):
    Download the mist checksum file:
    curl -LO "https://dl.mist.io/cli/v0.2.0/bin/darwin/amd64/mist.sha256"
    
    Validate the mist binary against the checksum file:
    echo "$(<mist.sha256) mist" | sha256sum --check
    
    If valid, the output is:
    mist: OK
    
    If the check fails, sha256 exits with nonzero status and prints output similar to:
    mist: FAILED
    sha256sum: WARNING: 1 computed checksum did NOT match
    
  3. Make mist binary executable:
    chmod +x ./mist
    
  4. Install mist on path (optional):
    e.g.
    sudo mv ./mist /usr/local/bin/mist
    sudo chown root: /usr/local/bin/mist
    
  5. Enable mist autocompletion on all your sessions (optional):
    Bash
    • Check bash version
      echo $BASH_VERSION
      
    • Install/upgrade bash to v4.0+ if older
      brew install bash
      
    • Source completion script
      echo 'source <(mist completion bash)' >>~/.bash_profile
      
    Zsh
    echo 'source <(mist completion zsh)' >>~/.zshrc
    

Windows

  1. Download the latest release with the command:
    curl -LO "https://dl.mist.io/cli/v0.2.0/bin/windows/amd64/mist.exe"
    
  2. Validate the binary (optional):
    Download the mist checksum file:
    curl -LO "https://dl.mist.io/cli/v0.2.0/bin/windows/amd64/mist.exe.sha256"
    
    Validate the mist binary against the checksum file:
    • Using Command Prompt to manually compare CertUtil's output to the checksum file downloaded:
      CertUtil -hashfile mist.exe SHA256
      type mist.exe.sha256
      
    • Using PowerShell to automate the verification using the -eq operator to get a True or False result:
      $($(CertUtil -hashfile .\mist.exe SHA256)[1] -replace " ", "") -eq $(type .\mist.exe.sha256)
      
  3. Add the binary in to your PATH.
  4. Install mist on path (optional):
    e.g.
    mv mist /usr/local/bin/mist
    
  5. Enable mist autocompletion on all your sessions (optional):
    Powershell
    mist completion powershell
    
    Bash
    echo 'source <(mist completion bash)' >>~/.bashrc
    
    Zsh
    echo 'source <(mist completion zsh)' >>~/.zshrc
    

Binaries

Linux

Arch SHA256
amd64 38f7aad92c748e02a9323afb037cb8f9cb4a17f0657b3e9b2dfb707ebe27a079
arm64 963630ec2d0e34400fa86c6cb7e87641c20bcb7830cc9acc179ea5154cb27155

Darwin

Arch SHA256
amd64 5afdc3702dcf31862fac0c02bbc91c66ef3309d439d8974ae0229ffd381d487a
arm64 160a8e18bbb3a7230d56ecb75942c31802dee2cb6038159c72617a959cdfc309

Windows

Arch SHA256
amd64 48b012244bb66d3f8476e9fd24c0ca7a244bb953c58ba6b3249ea299e5d319a5

Freebsd

Arch SHA256
amd64 f83105c6f2c198a884d10e73fbe198570cf0d1970944fbce67f8dc67605f08e2
arm64 24e195157b6de3b012ed3c4dee8246d2ee3019f45c4a0ddc8189518368bf7ced

Openbsd

Arch SHA256
amd64 cf62b40109b24c511acf734d3f694a255e0c617a0f34ac022da8c99d68e7abab
arm64 552304a01a9ed1510855d3df39e77d2fbc19ba2ae67652235c85aa2bf06b8c32

Netbsd

Arch SHA256
amd64 cb9db32801984a18d542dd5ea3470ecf7a85966f7ac0075821f9209d676dd07b
arm64 5f4da3cda30150790919673b9baebca16809bfd0ab286435179fd59fcceaca0d

v0.1.0

11 Mar 21:43
Compare
Choose a tag to compare

Installation

Instructions

Linux

  1. Download the latest release with the command:
    curl -LO "https://dl.mist.io/cli/v0.1.0/bin/linux/amd64/mist"
    
  2. Validate the binary (optional):
    Download the mist checksum file:
    curl -LO "https://dl.mist.io/cli/v0.1.0/bin/linux/amd64/mist.sha256"
    
    Validate the mist binary against the checksum file:
    echo "$(<mist.sha256) mist" | sha256sum --check
    
    If valid, the output is:
    mist: OK
    
    If the check fails, sha256 exits with nonzero status and prints output similar to:
    mist: FAILED
    sha256sum: WARNING: 1 computed checksum did NOT match
    
  3. Make mist binary executable:
    chmod +x ./mist
    
  4. Install mist on path (optional):
    e.g.
    mv mist /usr/local/bin/mist
    
  5. Enable mist autocompletion on all your sessions (optional):
    Bash
    echo 'source <(mist completion bash)' >>~/.bashrc
    
    Zsh
    echo 'source <(mist completion zsh)' >>~/.zshrc
    

MacOS

  1. Download the latest release with the command:
    curl -LO "https://dl.mist.io/cli/v0.1.0/bin/darwin/amd64/mist"
    
  2. Validate the binary (optional):
    Download the mist checksum file:
    curl -LO "https://dl.mist.io/cli/v0.1.0/bin/darwin/amd64/mist.sha256"
    
    Validate the mist binary against the checksum file:
    echo "$(<mist.sha256) mist" | sha256sum --check
    
    If valid, the output is:
    mist: OK
    
    If the check fails, sha256 exits with nonzero status and prints output similar to:
    mist: FAILED
    sha256sum: WARNING: 1 computed checksum did NOT match
    
  3. Make mist binary executable:
    chmod +x ./mist
    
  4. Install mist on path (optional):
    e.g.
    sudo mv ./mist /usr/local/bin/mist
    sudo chown root: /usr/local/bin/mist
    
  5. Enable mist autocompletion on all your sessions (optional):
    Bash
    • Check bash version
      echo $BASH_VERSION
      
    • Install/upgrade bash to v4.0+ if older
      brew install bash
      
    • Source completion script
      echo 'source <(mist completion bash)' >>~/.bash_profile
      
    Zsh
    echo 'source <(mist completion zsh)' >>~/.zshrc
    

Windows

  1. Download the latest release with the command:
    curl -LO "https://dl.mist.io/cli/v0.1.0/bin/windows/amd64/mist.exe"
    
  2. Validate the binary (optional):
    Download the mist checksum file:
    curl -LO "https://dl.mist.io/cli/v0.1.0/bin/windows/amd64/mist.exe.sha256"
    
    Validate the mist binary against the checksum file:
    • Using Command Prompt to manually compare CertUtil's output to the checksum file downloaded:
      CertUtil -hashfile mist.exe SHA256
      type mist.exe.sha256
      
    • Using PowerShell to automate the verification using the -eq operator to get a True or False result:
      $($(CertUtil -hashfile .\mist.exe SHA256)[1] -replace " ", "") -eq $(type .\mist.exe.sha256)
      
  3. Add the binary in to your PATH.
  4. Install mist on path (optional):
    e.g.
    mv mist /usr/local/bin/mist
    
  5. Enable mist autocompletion on all your sessions (optional):
    Powershell
    mist completion powershell
    
    Bash
    echo 'source <(mist completion bash)' >>~/.bashrc
    
    Zsh
    echo 'source <(mist completion zsh)' >>~/.zshrc
    

Binaries

Linux

Arch SHA256
amd64 2a718479ea6c41b9938d5f44e0f8725b7d888623ee5a97dddc9dbbefc96eb1dc
arm64 f638d79f1e8f1234868cde121964570ea84b4836b1532ece0e19eb874f8c11ca

Darwin

Arch SHA256
amd64 694422de060fff2dd816ef602c0828b6d6bb3fe5e79cef47768661c36e60bded
arm64 019f424aad7fde635cfd474e4ea6ce6c8e6b44918e33b540e04c57c6e1c0fc0c

Windows

Arch SHA256
amd64 c11bc041ef094be98936474902710d18b01678922709e89db687a5fef3bc006a

Freebsd

Arch SHA256
amd64 7cdf7598b58517e03a74a94bec5bf22c4002ac4b94b84f8eb3d794ffaa3f6ee3
arm64 9a6421141e1a6d98419f76c1da7744d4abce88f7746f3c9d05fff64cebc115b1

Openbsd

Arch SHA256
amd64 16e16fd9f46d1872ea0b6d1ca6144d9e942a3fd9611dee26ed6a6f374f67a022
arm64 50371eea1ed7a370c0f09ecd8866a83382784d6f47df588630c966a4f0705d41

Netbsd

Arch SHA256
amd64 4eabb33af93f23286cfaecda28ac1c368719c03109a5ed451a85958674b4329b
arm64 a61ad71b626101586da6c44ad3da3629ebbaf90aca361262dbff672c892278f9