This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
function deploy_challenge { | |
# This hook is called once for every domain that needs to be | |
# validated, including any alternative names you may have listed. | |
# | |
# Parameters: | |
# - DOMAIN | |
# The domain name (CN or subject alternative name) being | |
# validated. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\usepackage{tikz} | |
\usetikzlibrary{positioning,shapes,calc} | |
\tikzset{XOR/.style={draw,minimum width=0.5cm,circle,append after command={ | |
[shorten >=\pgflinewidth, shorten <=\pgflinewidth,] | |
(\tikzlastnode.north) edge (\tikzlastnode.south) | |
(\tikzlastnode.east) edge (\tikzlastnode.west) | |
} | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# 4633c8a2a16a8e0428d253baafb76bbc18f29562390c84d1c85ba98865531a2b | |
CRYPTER="base64 -b 78" | |
HEADER="----BEGIN PGP MESSAGE----" | |
FOOTER="-----END PGP MESSAGE-----" | |
do_encryption() { | |
local plain="$1" |