https://github.com/google/tink
Raw File
Tip revision: a7b23053cd421ce94900fc6730890ce288f01b51 authored by ckl on 12 July 2021, 19:07:50 UTC
Version bump to 1.6.1.
Tip revision: a7b2305
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.5.0.tar.gz"
  sha256 "bd148e684ffba85b8499bcfe29c8ed1e9dedef52eddd35dabb0a34e396790b90"

  bottle :unneeded

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