Mercurial > p > roundup > code
view tools/base64 @ 7227:1e004afe87bb
Update expiration date for gpg release signing key to 2028-07-17.
Was due to expire 2023-07-10. Also updated documentation with the
new public key.
Added gpg directions on how to update the signing key to RELEASE.txt.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Thu, 16 Mar 2023 16:34:11 -0400 |
| parents | c75defc1c2f0 |
| children | 9c3ec0a5c7fc |
line wrap: on
line source
#!/usr/bin/env python from __future__ import print_function import zlib, base64, sys print(base64.encodestring(zlib.compress(sys.stdin.read())))
