class Cfssl < Formula desc "CloudFlare's PKI toolkit" homepage "https://cfssl.org/" url "https://github.com/cloudflare/cfssl/archive/1.3.3.tar.gz" sha256 "299ff47700ca323d1b18a691c189afe7d610ede75f08c6935afb409c01fa006b" head "https://github.com/cloudflare/cfssl.git" bottle do cellar :any_skip_relocation sha256 "d0913d189fa05fde1e7942d2ca4be72f920df10e6c1765ba8387be2f0cad3582" => :mojave sha256 "a91377d0a08ae3907b3a71985b0816216cce4d53173e3fd8a3b74b8a093f9d00" => :high_sierra sha256 "97a7646ac9a6435714d6fead6026ca4300292b6ab5f7c5cdf1aa213d072c19d1" => :sierra end depends_on "go" => :build depends_on "libtool" def install ENV["GOPATH"] = buildpath cfsslpath = buildpath/"src/github.com/cloudflare/cfssl" cfsslpath.install Dir["{*,.git}"] cd "src/github.com/cloudflare/cfssl" do system "go", "build", "-o", "#{bin}/cfssl", "cmd/cfssl/cfssl.go" system "go", "build", "-o", "#{bin}/cfssljson", "cmd/cfssljson/cfssljson.go" system "go", "build", "-o", "#{bin}/cfsslmkbundle", "cmd/mkbundle/mkbundle.go" end end def caveats; <<~EOS `mkbundle` has been installed as `cfsslmkbundle` to avoid conflict with Mono and other tools that ship the same executable. EOS end test do (testpath/"request.json").write <<~EOS { "CN" : "Your Certificate Authority", "hosts" : [], "key" : { "algo" : "rsa", "size" : 4096 }, "names" : [ { "C" : "US", "ST" : "Your State", "L" : "Your City", "O" : "Your Organization", "OU" : "Your Certificate Authority" } ] } EOS shell_output("#{bin}/cfssl genkey -initca request.json > response.json") response = JSON.parse(File.read(testpath/"response.json")) assert_match(/^-----BEGIN CERTIFICATE-----.*/, response["cert"]) assert_match(/.*-----END CERTIFICATE-----$/, response["cert"]) assert_match(/^-----BEGIN RSA PRIVATE KEY-----.*/, response["key"]) assert_match(/.*-----END RSA PRIVATE KEY-----$/, response["key"]) end end