https://github.com/google/tink
Raw File
Tip revision: 4738fc399edd4a2e0f778a7451922f854ba9b3c4 authored by ambrosin on 05 April 2024, 13:06:30 UTC
Upgrade default tink-cc dep to 2.1.2
Tip revision: 4738fc3
tinkey.rb
# A Homebrew formula for Tinkey on Linux and macOS.
# Usage:
# brew tap google/tink https://github.com/google/tink
# brew install tinkey

class Tinkey < Formula
  desc "A command line tool to generate and manipulate keysets for the Tink cryptography library"
  homepage "https://github.com/google/tink/tree/master/tools/tinkey"
  url "https://storage.googleapis.com/tinkey/tinkey-1.7.0.tar.gz"
  sha256 "2c9e69e5bc7561ce37918cecd3eeabb4571e01c915c4397bce25796ff04d92a3"

  def install
    bin.install "tinkey"
    bin.install "tinkey_deploy.jar"
  end
end
back to top