OpenSSL returns the path to the "openssl" executable or calls t.Skip.
(t testing.TB)
| 19 | |
| 20 | // OpenSSL returns the path to the "openssl" executable or calls t.Skip. |
| 21 | func OpenSSL(t testing.TB) string { t.Helper(); return openssl(t) } |
| 22 | |
| 23 | var openssl = executable("openssl", "version", "-a") |
| 24 |