I use Namecheap.com as a registrar, and they resale SSL Certs from a number of other companies, including Comodo.
These are the steps I went through to set up an SSL cert.
#include <stdio.h> | |
#include <signal.h> | |
#include <fcntl.h> | |
#include <errno.h> | |
#include <poll.h> | |
#include <unistd.h> | |
#include <sys/types.h> | |
#include <sys/stat.h> | |
#include <sys/time.h> |
I use Namecheap.com as a registrar, and they resale SSL Certs from a number of other companies, including Comodo.
These are the steps I went through to set up an SSL cert.
#!/usr/bin/env python | |
""" | |
Decrypting proxy for Snapchat | |
Based on mitmproxy + pysnap | |
https://github.com/mitmproxy/mitmproxy | |
https://github.com/martinp/pysnap | |
""" |
(require 'clojure.core.async :refer :all) | |
(def MOVES [:rock :paper :scissors]) | |
(def BEATS {:rock :scissors, :paper :rock, :scissors :paper}) | |
(defn rand-player | |
"Create a named player and return a channel to report moves." | |
[name] | |
(let [out (chan)] | |
(go (while true (>! out [name (rand-nth MOVES)]))) |
D [0-9] | |
L [a-zA-Z_] | |
H [a-fA-F0-9] | |
E ([Ee][+-]?{D}+) | |
P ([Pp][+-]?{D}+) | |
FS (f|F|l|L) | |
IS ((u|U)|(u|U)?(l|L|ll|LL)|(l|L|ll|LL)(u|U)) | |
%{ | |
#include <stdio.h> |
<?php | |
function rstr() //Random String Function | |
{ | |
$len=rand(3,6); | |
$chr=''; | |
for($i=1;$i<=$len;$i++) | |
{ | |
$chr.=rand(0,1) ? chr(rand(65,90)) : chr(rand(97,122)); | |
} | |
return $chr; |