Re: incrementing serial by 2

2000-09-26 Thread Heath . Kitchin
Thanks Mike, I was just testing that out on a hunch as it was. Good to know I hunched right for a change. Heath. >Line 898 in openssl 0.9.6a in apps/ca.c change: > >if (!BN_add_word(serial,1)) goto err; > >to > >if (!BN_add_word(serial,2)) goto err; > >Mike --

RE: incrementing serial by 2

2000-09-26 Thread Barnes, Michael L.
EMAIL PROTECTED] > Subject: incrementing serial by 2 > > > Hi, I'm using openssl as the basis of a CA using req and ca > to generate > request and do signing. I'd like to test load balancing by > round robin DNS > with two copies of my CA server and want to incremen

incrementing serial by 2

2000-09-26 Thread Heath . Kitchin
Hi, I'm using openssl as the basis of a CA using req and ca to generate request and do signing. I'd like to test load balancing by round robin DNS with two copies of my CA server and want to increment serials by 2 on each server so one will do odds and the other evens. I've had a cursory look at