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
From: Kyle J. McKay <mackyle@gmail.com> | |
Subject: [PATCHv2 1/2] nc: support -T tlscompat option | |
Some services are still provided using TLS 1.0 and older ciphers. | |
It is possible to use the nc command to connect to these services | |
using the "-T tlsall" option, but that also enables legacy and | |
insecure ciphers and is not desirable. | |
Instead add a new "-T tlscompat" option that can be used to access | |
older servers while not also enabling insecure and very old legacy |
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
From: Kyle J. McKay <mackyle@gmail.com> | |
Subject: [PATCH] allow notAfter after 2038 with 32-bit time_t | |
RFC 5280 section 4.1.2.5 states: | |
To indicate that a certificate has no well-defined expiration date, | |
the notAfter SHOULD be assigned the GeneralizedTime value of | |
99991231235959Z. | |
Unfortunately, if sizeof(time_t) == 4, 9999-12-31T23:59:59Z cannot be |
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
From: Kyle J. McKay <mackyle@gmail.com> | |
Subject: [PATCH] ocspcheck/http.c: allow DEFAULT_CA_FILE override | |
The value of DEFAULT_CA_FILE is hard-coded to "/etc/ssl/cert.pem" | |
in the ocpscheck/http.c file. | |
This may not always be the desired default location. Allow the | |
default to be changed with a command-line define via CPPFLAGS the | |
same way the same-named value can be changed for nc/netcat.c. |
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
From: Kyle J. McKay <mackyle@gmail.com> | |
Subject: [PATCH] objects: add EV subject OID names | |
The "EV SSL Certificate Guidelines" available from: | |
https://cabforum.org/extended-validation/ | |
defines three OIDs commonly seen in leaf certificates: | |
jurisdictionLocalityName |
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
Patch and discussion at: | |
https://public-inbox.org/git/git-log-times@mackyle-at-gmail-com/ | |
Clone from: | |
https://github.com/mackyle/git-log-compact.git | |
Project page at: | |
https://mackyle.github.io/git-log-compact/ |
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/sh | |
# git-checkpoint -- save a stash of current work in progress | |
# Copyright (C) 2014,2015 Kyle J. McKay. All rights reserved. | |
# License GPLv2. | |
# Usage: git checkpoint [<stash message>] | |
# Optional: git config --global alias.cp checkpoint | |
if [ "$1" = "-h" ] || [ "$1" = "--help" ]; then |
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
commit 92149f8ee6cfb16c59a173395f5ae1749ce12c96 | |
Author: Kyle J. McKay <mackyle@gmail.com> | |
Date: Wed Jun 11 22:31:13 2014 -0700 | |
Always send update & error messages to mail-failure address | |
diff --git a/ddclient b/ddclient | |
index 945745d0..671def55 100755 | |
--- a/ddclient | |
+++ b/ddclient |