├── .gitignore ├── LICENSE ├── README.md ├── curl └── notes.md ├── general └── getting_started.md ├── java ├── host_validation.md └── trust_validation.md ├── openssl └── s_client.md ├── php ├── curl.md └── file_get_contents.md ├── python3 └── requests.md ├── ruby └── notes.md └── wget └── notes.md /.gitignore: -------------------------------------------------------------------------------- 1 | *.pem -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewX192/checkthatcert/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewX192/checkthatcert/HEAD/README.md -------------------------------------------------------------------------------- /curl/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewX192/checkthatcert/HEAD/curl/notes.md -------------------------------------------------------------------------------- /general/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewX192/checkthatcert/HEAD/general/getting_started.md -------------------------------------------------------------------------------- /java/host_validation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewX192/checkthatcert/HEAD/java/host_validation.md -------------------------------------------------------------------------------- /java/trust_validation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewX192/checkthatcert/HEAD/java/trust_validation.md -------------------------------------------------------------------------------- /openssl/s_client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewX192/checkthatcert/HEAD/openssl/s_client.md -------------------------------------------------------------------------------- /php/curl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewX192/checkthatcert/HEAD/php/curl.md -------------------------------------------------------------------------------- /php/file_get_contents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewX192/checkthatcert/HEAD/php/file_get_contents.md -------------------------------------------------------------------------------- /python3/requests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewX192/checkthatcert/HEAD/python3/requests.md -------------------------------------------------------------------------------- /ruby/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewX192/checkthatcert/HEAD/ruby/notes.md -------------------------------------------------------------------------------- /wget/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndrewX192/checkthatcert/HEAD/wget/notes.md --------------------------------------------------------------------------------