Sponsored Content
Top Forums UNIX for Dummies Questions & Answers SSL Problems with IE but not Mozilla Post 46072 by jsilva on Thursday 8th of January 2004 05:01:05 AM
Old 01-08-2004
Hi,

The problem is with the certificates that IE has installed, it looks that they're not updated... What is expired is the certificate above yours, that belongs to Verisign ( CPS Incorp. by Ref. LIABILITY LTD.(c)97 Verisign ), expired yesterday, so every certificate below, like yours, is not valid too...
I don't know if there're any update for this from MS, the PC where I tried this is not updated... try windowsupdate...

ps: this is not a unix question...
 

10 More Discussions You Might Find Interesting

1. News, Links, Events and Announcements

Mozilla fire...uh whatever

http://slashdot.org/article.pl?sid=04/03/27/0250250&mode=thread&tid=126&tid=154&tid=95 (0 Replies)
Discussion started by: norsk hedensk
0 Replies

2. Linux

Mozilla in Linux

This is kinda a Linux/Mozilla question. I have 2 versions of Mozilla and Firefox. Neither of them can recognise or install plugins. I tried installing plugins from the browser itself, but it doesn't seem to recognise that its there. Is there any way that I can install Java and Flash in Mozilla and... (2 Replies)
Discussion started by: gnerd
2 Replies

3. Linux

starting mozilla

every time I launch mozilla Im getiing this this error: Details: failed to execute child process "/root/mozilla" no such file or directory. (2 Replies)
Discussion started by: keliy1
2 Replies

4. UNIX for Dummies Questions & Answers

Does anyone use Mozilla Thunderbird

I'm using Mozilla Thunderbird for e-mail and it tells me cannot connect to mail.qs.com. Then it goes into SMTP Issues when I try to send e-mail out. Does anyone have any suggestions? (1 Reply)
Discussion started by: cnitadesigner
1 Replies

5. UNIX for Advanced & Expert Users

implicit ssl vs explicit ssl

Can someone explain the difference between the two. Thanks (1 Reply)
Discussion started by: jerardfjay
1 Replies

6. UNIX for Dummies Questions & Answers

to enable POP3(ssl) and SMTP(ssl) in Squid

i have configured Squid proxy server in Fedora 8 with two network interfaces. HTTP, HTTPS, FTP are working fine but we are unable to download mails using mail clients from mail server with POP3(ssl) and SMTP(ssl). so please someone help us how to enable pop and smtp in Squid. (1 Reply)
Discussion started by: praneel2k
1 Replies

7. AIX

mozilla installation

I am tryin to install Mozilla V1.7.13.1 on Power6 64 bit Blade JS12 server running aix 5.3 ML 11. ive installed the required rpm files. When i try to install Mozilla (downloaded from IBM site as Mozilla.base.tar.gz) . It always fails with the below msg. instal: Failed while executing the... (2 Replies)
Discussion started by: muzahed
2 Replies

8. Web Development

Apache, cgi script run twice when ssl, once when not ssl

I have interesting problem. https:/host/some/x.cgi - this script has run twice when I call this url But http:/host/some/x.cgi work fine, only once. Output is text/plain. If I change output format to the Content-type text/html, then both urls works fine - executed only once. (2 Replies)
Discussion started by: kshji
2 Replies

9. Solaris

Mozilla not working

I had a server which had minimal installation and at some point i had requirement to install an application which requires mozilla .. so i installed all firefox and mozilla packages and few of the library packages .. but mozilla is still not working I installed following mozilla packages. When... (2 Replies)
Discussion started by: fugitive
2 Replies

10. Linux

Apache wildcard ssl on subdomain serves same page for non ssl virtualhosts

Issue observed: I have configured ng.my-site.com using widlcard ssl cert. When I hit https://www.my-site.com it loads ng.my-site.com website! please advise if I missed any concept / configs... Thank you! httpd.conf <VirtualHost *:80> ServerName www.my-site.com ServerAdmin... (0 Replies)
Discussion started by: ashokvpp
0 Replies
SSL_CTX_load_verify_locations(3SSL)				      OpenSSL				       SSL_CTX_load_verify_locations(3SSL)

NAME
SSL_CTX_load_verify_locations - set default locations for trusted CA certificates SYNOPSIS
#include <openssl/ssl.h> int SSL_CTX_load_verify_locations(SSL_CTX *ctx, const char *CAfile, const char *CApath); DESCRIPTION
SSL_CTX_load_verify_locations() specifies the locations for ctx, at which CA certificates for verification purposes are located. The certificates available via CAfile and CApath are trusted. NOTES
If CAfile is not NULL, it points to a file of CA certificates in PEM format. The file can contain several CA certificates identified by -----BEGIN CERTIFICATE----- ... (CA certificate in base64 encoding) ... -----END CERTIFICATE----- sequences. Before, between, and after the certificates text is allowed which can be used e.g. for descriptions of the certificates. The CAfile is processed on execution of the SSL_CTX_load_verify_locations() function. If CApath is not NULL, it points to a directory containing CA certificates in PEM format. The files each contain one CA certificate. The files are looked up by the CA subject name hash value, which must hence be available. If more than one CA certificate with the same name hash value exist, the extension must be different (e.g. 9d66eef0.0, 9d66eef0.1 etc). The search is performed in the ordering of the extension number, regardless of other properties of the certificates. Use the c_rehash utility to create the necessary links. The certificates in CApath are only looked up when required, e.g. when building the certificate chain or when actually performing the verification of a peer certificate. When looking up CA certificates, the OpenSSL library will first search the certificates in CAfile, then those in CApath. Certificate matching is done based on the subject name, the key identifier (if present), and the serial number as taken from the certificate to be verified. If these data do not match, the next certificate will be tried. If a first certificate matching the parameters is found, the verification process will be performed; no other certificates for the same parameters will be searched in case of failure. In server mode, when requesting a client certificate, the server must send the list of CAs of which it will accept client certificates. This list is not influenced by the contents of CAfile or CApath and must explicitly be set using the SSL_CTX_set_client_CA_list(3) family of functions. When building its own certificate chain, an OpenSSL client/server will try to fill in missing certificates from CAfile/CApath, if the certificate chain was not explicitly specified (see SSL_CTX_add_extra_chain_cert(3), SSL_CTX_use_certificate(3). WARNINGS
If several CA certificates matching the name, key identifier, and serial number condition are available, only the first one will be examined. This may lead to unexpected results if the same CA certificate is available with different expiration dates. If a "certificate expired" verification error occurs, no other certificate will be searched. Make sure to not have expired certificates mixed with valid ones. EXAMPLES
Generate a CA certificate file with descriptive text from the CA certificates ca1.pem ca2.pem ca3.pem: #!/bin/sh rm CAfile.pem for i in ca1.pem ca2.pem ca3.pem ; do openssl x509 -in $i -text >> CAfile.pem done Prepare the directory /some/where/certs containing several CA certificates for use as CApath: cd /some/where/certs c_rehash . RETURN VALUES
The following return values can occur: 0 The operation failed because CAfile and CApath are NULL or the processing at one of the locations specified failed. Check the error stack to find out the reason. 1 The operation succeeded. SEE ALSO
ssl(3), SSL_CTX_set_client_CA_list(3), SSL_get_client_CA_list(3), SSL_CTX_use_certificate(3), SSL_CTX_add_extra_chain_cert(3), SSL_CTX_set_cert_store(3) 1.0.1e 2013-02-11 SSL_CTX_load_verify_locations(3SSL)
All times are GMT -4. The time now is 10:46 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy