biddyweb / omapd

Automatically exported from code.google.com/p/omapd
GNU General Public License v3.0
0 stars 0 forks source link

Improve support for certificate and key formats #21

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
Add support for additional certificate and private key types.  Only PEM
certs and RSA keys are supported as of revision 58.

Original issue reported on code.google.com by smat...@gmail.com on 6 Apr 2010 at 4:30

GoogleCodeExporter commented 9 years ago
What about doing this for Der cert support:

            _serverCert = QSslCertificate(&certFile, QSsl::Pem);
            if ( _serverCert.isNull() )
                _serverCert = QSslCertificate(&certFile, QSsl::Der);

Simply assume pem .. if a pem load fails ... try a Der load.

Original comment by darren.l...@gmail.com on 14 Jul 2010 at 12:38

GoogleCodeExporter commented 9 years ago
r74 adds  Certificate DER format failover.  If loading by PEM format fails, 
trys to load by DER format.
Will look at key formats next.

Original comment by darren.l...@gmail.com on 14 Jul 2010 at 4:45