Shubham Khanshubhamkhan.hashnode.dev路Oct 12, 2024Step-by-Step RSA Key Generation in JavaScript and Python for BeginnersIn today鈥檚 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
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路210 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路310 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
Emmanuel GautierforCerberAuthcerberauth.hashnode.dev路Oct 8, 2023Generating RSA Key Pairs with OpenSSL for signing JWTOpenSSL is a powerful tool for generating RSA key pairs for various cryptographic purposes including signing JSON Web Tokens (JWT). Below are the steps to generate RSA key pairs using OpenSSL, along with some commonly used options and commands. Gene...Discuss路2.9K readsopenssl