/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

malgregator.com
| | gist.github.com
2.4 parsecs away

Travel
| | Self Signed Certificate with Custom Root CA. GitHub Gist: instantly share code, notes, and snippets.
| | memo.mx
2.5 parsecs away

Travel
| | A Certificate Authority or CA is an entity that signs digital certificates. These digital certificates are used to validate the connection while using secure mechanisms. Generating a root CA We will use a root CA to create intermediate CA's which are trusted to sign certificates on its behalf. First, prepare the environment. mkdir /root/ca && cd /root/ca mkdir certs crl newcerts private chmod 700 private touch index.txt echo 1000 > serial Then download the template for /root/ca/openssl....
| | younes.codes
2.5 parsecs away

Travel
| | Learn how to run Rails over HTTPS on localhost, in development environment.
| | developerlife.com
21.0 parsecs away

Travel
| TLS is the backbone of web security. We will explore using TLS with Rust, and CFSSL to create a certificate authority to issue self signed certificates & keys. We will also create a server and client that communicate securely over the network using tokio and upgrade insecure TcpStream to TLSStream, and work with TLSAcceptor and TLSConnector.