| 19,6 → 19,10 |
| SRVCERT=$DIR_CERT/certs/alcasar.crt |
| SRVPEM=$DIR_CERT/private/alcasar.pem |
| SRVCHAIN=$DIR_CERT/certs/server-chain.pem |
| CONF_FILE="/usr/local/ets/alcasar.conf" |
| HOSTNAME=`grep ^HOSTNAME= $CONF_FILE|cut -d"=" -f2` |
| DOMAIN=`grep ^DOMAIN= $CONF_FILE|cut -d"=" -f2` |
| DOMAIN=${DOMAIN:=localdomain} |
| |
| CACERT_LIFETIME="1460" |
| SRVCERT_LIFETIME="1460" |
| 37,27 → 41,23 |
| default_ca = AlcasarCA |
| |
| [ AlcasarCA ] |
| dir = $DIR_TMP # Where everything is kept |
| certs = \$dir # Where the issued certs are kept |
| crl_dir = \$dir # Where the issued crl are kept |
| database = \$dir/index.txt # database index file. |
| new_certs_dir = \$dir # default place for new certs. |
| dir = $DIR_TMP # Where everything is kept |
| certs = \$dir # Where the issued certs are kept |
| crl_dir = \$dir # Where the issued crl are kept |
| database = \$dir/index.txt # database index file. |
| new_certs_dir = \$dir # default place for new certs. |
| certificate = $CACERT # The CA certificate |
| serial = \$dir/serial # The current serial number |
| crl = \$dir/crl.pem # The current CRL |
| private_key = $CAKEY # The private key |
| x509_extensions = usr_cert # The extentions to add to the cert |
| crl_extensions = crl_ext |
| default_days = 365 # how long to certify for |
| default_crl_days = 30 # how long before next CRL |
| default_md = sha256 # which message digest to use. |
| preserve = no # keep passed DN ordering |
| policy = policy_anything |
| |
| certificate = $CACERT # The CA certificate |
| serial = \$dir/serial # The current serial number |
| crl = \$dir/crl.pem # The current CRL |
| private_key = $CAKEY # The private key |
| |
| x509_extensions = usr_cert # The extentions to add to the cert |
| crl_extensions = crl_ext |
| |
| default_days = 365 # how long to certify for |
| default_crl_days= 30 # how long before next CRL |
| default_md = sha256 # which message digest to use. |
| preserve = no # keep passed DN ordering |
| |
| policy = policy_anything |
| |
| [ policy_anything ] |
| countryName = optional |
| stateOrProvinceName = optional |
| 71,108 → 71,61 |
| default_bits = 2048 |
| distinguished_name = req_distinguished_name |
| # attributes = req_attributes |
| x509_extensions = v3_ca # The extentions to add to the self signed cert |
| |
| [ req_distinguished_name ] |
| countryName = Country Name (2 letter code) |
| countryName_default = FR |
| countryName_min = 2 |
| countryName_max = 2 |
| countryName = Country Name (2 letter code) |
| countryName_default = FR |
| countryName_min = 2 |
| countryName_max = 2 |
| |
| stateOrProvinceName = State or Province Name (full name) |
| stateOrProvinceName_default = Some-State |
| stateOrProvinceName = State or Province Name (full name) |
| stateOrProvinceName_default = Some-State |
| |
| localityName = Locality Name (eg, city) |
| localityName_default = Lyon |
| localityName = Locality Name (eg, city) |
| localityName_default = Paris |
| |
| 0.organizationName = Organization Name (eg, company) |
| 0.organizationName_default = your organization name |
| 0.organizationName = Organization Name (eg, company) |
| 0.organizationName_default = your organization name |
| |
| # we can do this but it is not needed normally :-) |
| #1.organizationName = Second Organization Name (eg, company) |
| #1.organizationName_default = World Wide Web Pty Ltd |
| #1.organizationName = Second Organization Name (eg, company) |
| #1.organizationName_default = World Wide Web Pty Ltd |
| |
| organizationalUnitName = Organizational Unit Name (eg, section) |
| #organizationalUnitName_default = |
| organizationalUnitName = Organizational Unit Name (eg, section) |
| #organizationalUnitName_default = |
| |
| commonName = Common Name (eg, your name or your server\'s hostname) |
| commonName_max = 255 |
| commonName = Common Name (eg, your name or your server\'s hostname) |
| commonName_max = 255 |
| emailAddress = Email Address |
| emailAddress_max = 255 |
| |
| emailAddress = Email Address |
| emailAddress_max = 255 |
| |
| # SET-ex3 = SET extension number 3 |
| |
| [ usr_cert ] |
| # These extensions are added when 'ca' signs a request. |
| # This goes against PKIX guidelines but some CAs do it and some software |
| # requires this to avoid interpreting an end user certificate as a CA. |
| #basicConstraints=CA:FALSE |
| basicConstraints=CA:FALSE |
| nsCertType = server |
| keyUsage = nonRepudiation, digitalSignature, keyEncipherment, dataEncipherment |
| subjectKeyIdentifier = hash |
| authorityKeyIdentifier = keyid,issuer |
| |
| # Here are some examples of the usage of nsCertType. If it is omitted |
| # the certificate can be used for anything *except* object signing. |
| |
| # This is OK for an SSL server. |
| # nsCertType = nsCertType |
| # For normal client use this is typical |
| # nsCertType = client, email |
| nsCertType = server |
| |
| keyUsage = nonRepudiation, digitalSignature, keyEncipherment |
| |
| # This will be displayed in Netscape's comment listbox. |
| nsComment = "OpenSSL Generated Certificate" |
| |
| # PKIX recommendations harmless if included in all certificates. |
| subjectKeyIdentifier=hash |
| authorityKeyIdentifier=keyid,issuer:always |
| |
| # This stuff is for subjectAltName and issuerAltname. |
| # Import the email address. |
| subjectAltName=email:copy |
| |
| subjectAltName = @alt_names |
| # Copy subject details |
| issuerAltName=issuer:copy |
| issuerAltName = issuer:copy |
| |
| #nsCaRevocationUrl = http://www.domain.dom/ca-crl.pem |
| #nsBaseUrl |
| #nsRevocationUrl |
| #nsRenewalUrl |
| #nsCaPolicyUrl |
| #nsSslServerName |
| [alt_names] |
| DNS.1 = $HOSTNAME.$DOMAIN |
| |
| [ v3_ca ] |
| # PKIX recommendation. |
| subjectKeyIdentifier=hash |
| authorityKeyIdentifier=keyid:always,issuer:always |
| |
| # This is what PKIX recommends but some broken software chokes on critical |
| # extensions. |
| basicConstraints = critical,CA:true |
| # So we do this instead. |
| #basicConstraints = CA:true |
| |
| # Key usage: this is typical for a CA certificate. However since it will |
| # prevent it being used as an test self-signed certificate it is best |
| # left out by default. |
| keyUsage = cRLSign, keyCertSign |
| nsCertType = sslCA |
| EOF |
| |
| hostname=`hostname` |
| if [ -z "$hostname" ]; |
| then |
| echo "Impossible de déterminer le nom d'hôte !!!" |
| exit 1 |
| fi |
| |
| # The value for organizationalUnitName must be 64 chars or less; |
| # thus, hostname must be 36 chars or less. If it's too big, |
| # try removing domain (merci REXY ;-) ). |
| hostname_len=`echo $hostname| wc -c` |
| hostname_len=`echo $HOSTNAME| wc -c` |
| if [ $hostname_len -gt 36 ]; |
| then |
| hostname=`echo $hostname | cut -d '.' -f 1` |
| HOSTNAME=`echo $HOSTNAME | cut -d '.' -f 1` |
| fi |
| |
| CAMAIL= |
| 193,8 → 146,8 |
| $PROVINCE |
| $LOCATION |
| $ORGANIZATION |
| Certification Authority for $hostname |
| $hostname-local-CA |
| Certification Authority for $HOSTNAME.$DOMAIN |
| $HOSTNAME-local-CA |
| $CAMAIL" | |
| openssl req -config $DIR_TMP/ssl.conf -new -x509 -sha256 -days $CACERT_LIFETIME -key $CAKEY -out $CACERT 2>> $DIR_TMP/openssl-log |
| |
| 209,8 → 162,8 |
| $PROVINCE |
| $LOCATION |
| $ORGANIZATION |
| Server certificate for $hostname |
| $hostname |
| Server certificate for $HOSTNAME.$DOMAIN |
| $HOSTNAME.$DOMAIN |
| $SRVMAIL" | |
| openssl req -config $DIR_TMP/ssl.conf -new -key $SRVKEY -out $SRVREQ 2>> $DIR_TMP/openssl-log |
| |
| 217,7 → 170,7 |
| # Sign the server certificate "request" to create server certificate |
| rm -f $SRVCERT |
| echo "*********SRVCERT*********" >> $DIR_TMP/openssl-log |
| openssl ca -config $DIR_TMP/ssl.conf -name AlcasarCA -batch -days $SRVCERT_LIFETIME -in $SRVREQ -out $SRVCERT 2>> $DIR_TMP/openssl-log |
| openssl ca -config $DIR_TMP/ssl.conf -name $HOSTNAME-local-CA -batch -days $SRVCERT_LIFETIME -in $SRVREQ -out $SRVCERT 2>> $DIR_TMP/openssl-log |
| rm -f $SRVREQ |
| |
| (cat $SRVKEY; echo; cat $SRVCERT) > $SRVPEM |