Re: [PATCH] Implement Public Key Pinning

2014-10-01 Thread moparisthebest
for me: sed -i '51,54 s/$/\r/' data/test2034 By placing \r before \n on lines 51 through 54. From 73114bb3941ecaeacccfbeff6512b02fa0d1a3c2 Mon Sep 17 00:00:00 2001 From: moparisthebest ad...@moparisthebest.com Date: Tue, 30 Sep 2014 22:31:17 -0400 Subject: [PATCH] Implement public key pinning Option

Re: [PATCH] Implement Public Key Pinning

2014-10-01 Thread moparisthebest
--enable-maintainer-mode --enable-werror --without-ssl --with-gnutls Looking forward to any comments, thanks! From ab2373939e81211319fd16b494af0f234b099271 Mon Sep 17 00:00:00 2001 From: moparisthebest ad...@moparisthebest.com Date: Wed, 1 Oct 2014 02:14:49 -0400 Subject: [PATCH] Implement public key

Re: [PATCH] Implement Public Key Pinning

2014-09-24 Thread moparisthebest
into curl? Thanks much, moparisthebest From 246dad003764f8b6c7e261925e51545768f6cd34 Mon Sep 17 00:00:00 2001 From: moparisthebest andr...@moparisthebest.org Date: Tue, 23 Sep 2014 22:39:31 -0400 Subject: [PATCH] Implement public key pinning Option --pinnedpubkey takes a path to a public key

Re: [PATCH] Implement Public Key Pinning

2014-08-27 Thread moparisthebest
Thanks for the input, and let me know anything else that needs done, moparisthebest From 3af97630b8c11e1ed56b28efb86549960ff66f04 Mon Sep 17 00:00:00 2001 From: moparisthebest andr...@moparisthebest.org Date: Tue, 26 Aug 2014 22:23:06 -0400 Subject: [PATCH] Implement public key pinning Option

[PATCH] Implement Public Key Pinning

2014-08-26 Thread moparisthebest
Hello all, This patch implements public key pinning (currently only for OpenSSL) in curl by providing a path to a public key in DER format. The command line option is --pinnedpubkey and if it isn't provided, curl functions just like it did before. For testing, the way I extracted DER formatted

Re: [PATCH] Implement Public Key Pinning

2014-08-26 Thread Daniel Stenberg
On Tue, 26 Aug 2014, moparisthebest wrote: This patch implements public key pinning (currently only for OpenSSL) in curl by providing a path to a public key in DER format. The command line option is --pinnedpubkey and if it isn't provided, curl functions just like it did before. Lovely!