Mercurial > p > roundup > code
view tools/base64 @ 5177:b440da5b28ca
Check in the signed cert needed to complete an http connection to a
site with a let's encrypt signed certificate.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Thu, 12 Jan 2017 21:24:18 -0500 |
| parents | 740102dfad1d |
| children | c75defc1c2f0 |
line wrap: on
line source
#!/usr/bin/env python import zlib, base64, sys print base64.encodestring(zlib.compress(sys.stdin.read()))
