Re: [apache-ssl] More then one trusted CA's in Apache-SSL ?
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [apache-ssl] More then one trusted CA's in Apache-SSL ?



Thanks, Ralf.

However, I was really looking to learn a bit more about
what the hash files were for.

Thanks,

  Dave

-----Original Message-----
From: Ralf S. Engelschall <rse@engelschall.com>
To: apache-ssl@lists.aldigital.co.uk <apache-ssl@lists.aldigital.co.uk>
Date: Monday, August 24, 1998 2:34 PM
Subject: Re: [apache-ssl] More then one trusted CA's in Apache-SSL ?


>
>In article <056501bdcf85$a93e8a10$c3e33dce@schooner.syncinc.com> you wrote:
>
>> Could you elaborate, a bit, on the hash sym-links, please?
>
>In mod_ssl we use the following Makefile which keeps
>the hash-symlinks up to date:
>
>| ##
>| ##  Makefile to keep the SSLCACertificatePath up to date
>| ##  Copyright (c) 1998 Ralf S. Engelschall, All Rights Reserved.
>| ##
>|
>| update:
>| -@rm -f *.0
>| -@for file in *.pem; do \
>|     if [ ".`grep 'HAS TO BE REPLACED' $$file`" != . ]; then \
>| echo "$$file [skipped - is still a dummy file]"; \
>| else \
>|         hash="`ssleay x509 -noout -hash <$$file`"; \
>|     echo "$$file -> $$hash.0"; \
>|     rm -f $$hash.0; \
>|     ln -s $$file $$hash.0; \
>| fi \
>| done
>
>Greetings,
>                                       Ralf S. Engelschall
>                                       rse@engelschall.com
>                                       www.engelschall.com
>