Skip to content

Instantly share code, notes, and snippets.

@lpf23
Created June 7, 2015 09:58
Show Gist options
  • Select an option

  • Save lpf23/e0942a6f087ee1b47688 to your computer and use it in GitHub Desktop.

Select an option

Save lpf23/e0942a6f087ee1b47688 to your computer and use it in GitHub Desktop.

Revisions

  1. lpf23 created this gist Jun 7, 2015.
    20 changes: 20 additions & 0 deletions openssl notes
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,20 @@
    A CA file has been bootstrapped using certificates from the system
    keychain. To add additional certificates, place .pem files in
    /usr/local/etc/openssl/certs

    and run
    /usr/local/opt/openssl/bin/c_rehash

    This formula is keg-only, which means it was not symlinked into /usr/local.

    Mac OS X already provides this software and installing another version in
    parallel can cause all kinds of trouble.

    Apple has deprecated use of OpenSSL in favor of its own TLS and crypto libraries

    Generally there are no consequences of this for you. If you build your
    own software and it requires this formula, you'll need to add to your
    build variables:

    LDFLAGS: -L/usr/local/opt/openssl/lib
    CPPFLAGS: -I/usr/local/opt/openssl/include