Revision cf800b640205049aa535eef1462b5d94ebc9d521 authored by juerg on 19 March 2024, 07:53:20 UTC, committed by Copybara-Service on 19 March 2024, 07:55:06 UTC
"any" was introduced in go version 1.18. It is an alias of "interface{}":
https://tip.golang.org/doc/go1.18

PiperOrigin-RevId: 617082326
1 parent ea6f5f9
Raw File
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