Shubham Khanshubhamkhan.hashnode.dev·Oct 12, 2024Step-by-Step RSA Key Generation in JavaScript and Python for BeginnersIn today’s digital world, security is a top priority. One of the key technologies that help in securing data is RSA, an asymmetric cryptographic algorithm widely used for encryption, digital signatures, and secure data transmission. Generating RSA ke...DiscussSecurityJavaScript
Cloud Tunedcloudtuned.hashnode.dev·May 31, 2024Cheat Sheet #day5 - OpenSSL CommandsOpenSSL Cheat Sheet OpenSSL is a powerful tool for managing SSL/TLS certificates and encryption. Below is a comprehensive cheat sheet covering common OpenSSL commands for various tasks such as generating keys, creating certificate signing requests (C...DiscussCheat Sheetsopenssl
Wilmer AlmazanProdevnetjourney.com·May 17, 2024Implementing RSA Encryption with OpenSSL: A Hands-On GuideIn our previous article, we delved into the fundamentals of RSA encryption, explored the key generation process, and demonstrated how encryption and decryption work with RSA. Now that we have a solid understanding of the RSA process, let's take our k...Discuss·508 readsCryptographyCryptography
utsab sapkotautsabsapkota.hashnode.dev·May 15, 2024Add new user in Kubernetes clusterAdding users to a Kubernetes cluster is crucial for managing access control, enhancing security, and ensuring efficient operations. By incorporating Role-Based Access Control (RBAC), you can define and enforce specific permissions for each user, main...DiscussKubernetes
Maisy Tsemaisyt.hashnode.dev·Apr 20, 2024Importing a Self-signed Cert for a Rust reqwest HTTP clientI have set up a HTTP server with TLS using rust and a self-signed certification. It works fine when I import the cert and test the APIs in Postman. However, I got into trouble when writing a HTTP client using the rust library reqwest. This is a note ...Discuss·182 readsRust
Rushabh Shahiamrushabhshahh.hashnode.dev·Feb 28, 2024Setup a Static Website Using NginxAs an DevOps engineer we host website in server where we have to make sure it's always up and running. So let's understand today how Static Websites got hosted in server. Also the best practices for hosting static website. Key Concepts Covered : DNS...Discuss·1 like·86 readsSataticSite
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 \...Discuss·304 readsopenssl
Repro Devreprodev.hashnode.dev·Feb 16, 2024Simplify your OpenSSL CSR Requests with PowerCSR GUI ToolLet's all take a moment to think about all those Web Servers and Services that are secured with an SSL (Secure Socket Layer) certificate. That little padlock in the address bar that makes sure the traffic is trusted, encrypted and going through a HTT...Discussopenssl
Mohamed Abdullamohamed786.hashnode.dev·Jan 26, 2024Setting Up Nginx with SSL for "localhost" on UbuntuIntroduction Howdy🙋 In this guide, we'll go through creating a self-signed SSL certificate for your localhost, affectionately named "devnext," and configuring Nginx to act as a reverse proxy for a Node.js application. Let's get started! Prerequisite...Discuss·10 likes·31 readsBlogsWithCC
Amanhekshot.hashnode.dev·Jan 20, 2024Building a Secure Communication Channel with OpenSSL and StunnelIntroduction In today's interconnected world, securing communication between servers and clients is paramount. This tech blog will guide you through the process of setting up a secure communication channel using OpenSSL and Stunnel. We will cover the...Discussopenssl