Cloud Tunedcloudtuned.hashnode.dev·May 31, 2024Daily Hack #day58 - Shell Script for Creating [self] CA-Signed Certificates for Your Dev SitesBy using self-signed certificates, developers can ensure their development sites are secured with HTTPS, facilitating the testing of secure connections and encryption-related functionality. While not suitable for production, self-signed certificates ...Daily Hacksself signed certificates
Murtaza Udaipurwalablog.murtazau.xyz·Feb 24, 2024A Practical Guide to Self-Signed X.509 Certificates Using OpenSSLCertificate Authority (CA) The CA serves as the root authority. All certificates generated for different services will be signed by it. Let's create our CA first. mkdir ca openssl req \ -x509 \ -newkey rsa:4096 \ -days 365 \ -nodes \...319 readsopenssl
Akash Sblog.akkupy.com·Sep 24, 2023Self Signed SSL Certificate Generation.Private CA and self-signed certs that work with Chrome This method is for testing and development only. The vast majority of users should not use this method, as it requires loading a cert on each of your devices, which is both error-prone and requir...33 readsSSL
Kumarkmdev.hashnode.dev·Aug 20, 2023Recovering a Lost Keystore: A Step-by-Step Guide (Signed Bundle or APK)Losing a keystore file can be a stressful experience for any software engineer. However, fear not! In this blog post, we will guide you through the process of recovering a lost keystore by creating a new JKS file with a new alias and password. We’ll ...10 likesself signed certificates
Ganesh Balimidiatozdevopscenter.hashnode.dev·May 28, 2023Build a Multi-tenant Kubernetes ClusterScenario Description: In this Scenario, you will assume the role of a Kubernetes Engineer in the Automation team of a Marketing company. The company relies on Kubernetes to power its operations. Currently, each internal department has its own dedicat...clusterrolebindings
Sundeep Kamathtrystwithcode.hashnode.dev·Dec 23, 2019Creating self-signed certificates using OpenSSLIn an earlier post, I discussed how the makecert.exe tool in Windows OS can be used to create self-signed certificates. We'll now check how the popular OpenSSL tool can be used to create these self-signed certificates. One major advantage of this too...260 readsopenssl