How to setup your own CA with OpenSSL
For educational reasons I've decided to create my own CA. Here is what I learned.
First things first
Lets get some context first.
For educational reasons I've decided to create my own CA. Here is what I learned.
Lets get some context first.
<?PHP | |
/** | |
* Spintax - A helper class to process Spintax strings. | |
* | |
* @author Jason Davis - https://www.codedevelopr.com/ | |
* | |
* Tutorial: https://www.codedevelopr.com/articles/php-spintax-class/ | |
* | |
* Updated with suggested performance improvement by @PhiSYS. |
#!/bin/bash | |
sourcedir="$HOME/.local/src/" | |
mkdir "$sourcedir" | |
export CFLAGS='-march=native -O3 -pipe -fstack-protector -Wall' | |
export CXXFLAGS='-march=native -O3 -pipe -fstack-protector -Wall' | |
function install-dependencies() { | |
# Install build tools and Mesa VDPAU support. | |
sudo apt-fast install -y cmake yasm autoconf build-essential mesa-vdpau-drivers \ | |
libvdpau-va-gl1 |
#!/bin/bash -e | |
# checkv6cfd.sh | |
# Copyright (c) 2021, Francis Turner | |
# All rights reserved. | |
# | |
# Script that automates checking and if required downloading and replacing of the | |
# latest armv6 cloudflared as built by Darren Hobin (https://github.com/hobindar) | |
# for use on pi zeros and other armv6 devices | |
<?php | |
/** | |
* Credits to : | |
* @see https://gist.github.com/psampaz/7f2aad5d1d54eeeec8ae | |
*/ | |
use GuzzleHttp\Handler\CurlMultiHandler; | |
use GuzzleHttp\HandlerStack; | |
use GuzzleHttp\Middleware; |
mysql -Nse 'show tables' DATABASE_NAME | while read table; do mysql -e "truncate table $table" DATABASE_NAME; done |
#!/bin/sh | |
# umurmur_raspi . sh | |
# | |
# Copyright (c) 2016 Bilal Tonga | |
# | |
# | |
echo "building Dependencies . . . " | |
sudo apt-get install git |