Skip to content

Instantly share code, notes, and snippets.

@DanielMieg
DanielMieg / openssl_commands.md
Created November 7, 2023 16:16 — forked from p3t3r67x0/openssl_commands.md
Some list of openssl commands for check and verify your keys

openssl

Install

Install the OpenSSL on Debian based systems

sudo apt-get install openssl
@DanielMieg
DanielMieg / visitorExample.java
Last active December 6, 2021 16:26
Example of a visitor implementation
import java.util.List;
/* Interfaces */
interface CarElement {
void accept(CarElementVisitor visitor);
}
interface CarElementVisitor {
@DanielMieg
DanielMieg / tls-client.go
Created August 19, 2021 15:10 — forked from michaljemala/tls-client.go
SSL Client Authentication Golang sample
package main
import (
"crypto/tls"
"crypto/x509"
"flag"
"io/ioutil"
"log"
"net/http"
)