[go-nuts] Re: Complete SSL certificate workflow

2016-08-20 Thread Josh V
Thanks! I wish I would have found that repo a week ago. It would have saved me a lot of stress :) On Saturday, August 20, 2016 at 1:11:57 PM UTC-6, Manlio Perillo wrote: > > You can take a look at > https://github.com/perillo/tls-cert > > > Manlio > > Il giorno mercoledì 17 agosto 2016 18:58:18 U

[go-nuts] Re: Complete SSL certificate workflow

2016-08-20 Thread Manlio Perillo
You can take a look at https://github.com/perillo/tls-cert Manlio Il giorno mercoledì 17 agosto 2016 18:58:18 UTC+2, Mi-e Foame ha scritto: > > Sorry, I should have mentioned that the primary goal here is to generate > certificates for the specific purpose of client authentication. > > On Wedne

[go-nuts] Re: Complete SSL certificate workflow

2016-08-20 Thread Josh V
I ended up figuring out what I needed to do. Here are some things that I did differently when it started working: - I created a self-signed root CA. This is possible with generate_cert.go with one minor modification: the KeyUsage must include x509.KeyUsageCertSign. - I created an in

[go-nuts] Re: Complete SSL certificate workflow

2016-08-17 Thread Mi-e Foame
Sorry, I should have mentioned that the primary goal here is to generate certificates for the specific purpose of client authentication. On Wednesday, August 17, 2016 at 10:01:01 AM UTC-6, Josh V wrote: > > Hi all, > > I'm trying to come up with an example of how to create SSL certificates > and