I hereby claim:
- I am hermannbjorgvin on github.
- I am hermann (https://keybase.io/hermann) on keybase.
- I have a public key ASB3_z64uQ41GLO8ahFle9A6-jzh2T4Sh0mADpUWyINWVQo
To claim this, I am signing this object:
This Gist confirms the Linked Identity in my OpenPGP key, and links it to this GitHub account. | |
Token for proof: | |
[Verifying my OpenPGP key: openpgp4fpr:2a4e9744ab54c45b03cb66998bbffe2d4add1adb] |
This Gist confirms the Linked Identity in my OpenPGP key, and links it to this GitHub account. | |
Token for proof: | |
[Verifying my OpenPGP key: openpgp4fpr:2a4e9744ab54c45b03cb66998bbffe2d4add1adb] |
This Gist confirms the Linked Identity in my OpenPGP key, and links it to this GitHub account. | |
Token for proof: | |
[Verifying my OpenPGP key: openpgp4fpr:2a4e9744ab54c45b03cb66998bbffe2d4add1adb] |
#!/bin/bash | |
# Copyright (c) 2015 by Roderick W. Smith | |
# Licensed under the terms of the GPL v3 | |
echo -n "Enter a Common Name to embed in the keys: " | |
read NAME | |
openssl req -new -x509 -newkey rsa:2048 -subj "/CN=$NAME PK/" -keyout PK.key \ | |
-out PK.crt -days 3650 -nodes -sha256 | |
openssl req -new -x509 -newkey rsa:2048 -subj "/CN=$NAME KEK/" -keyout KEK.key \ |
I hereby claim:
To claim this, I am signing this object:
FROM ubuntu:18.04 | |
# set environmental variables | |
ENV PYENV_ROOT="/root/.pyenv" \ | |
PATH="/root/.pyenv/shims:/root/.pyenv/bin:${PATH}" \ | |
PIPENV_YES=1 \ | |
PIPENV_DONT_LOAD_ENV=1 \ | |
LC_ALL="C.UTF-8" \ | |
LANG="en_US.UTF-8" |