Forwarded from Hadi
.pkcs12 .pfx .p12
Originally defined by RSA in the Public-Key Cryptography Standards, the "12" variant was enhanced by Microsoft. This is a passworded container format that contains both public and private certificate pairs. Unlike .pem files, this container is fully encrypted. Openssl can turn this into a .pem file with both public and private keys: openssl pkcs12 -in file-to-convert.p12 -out converted-file.pem -nodes
Originally defined by RSA in the Public-Key Cryptography Standards, the "12" variant was enhanced by Microsoft. This is a passworded container format that contains both public and private certificate pairs. Unlike .pem files, this container is fully encrypted. Openssl can turn this into a .pem file with both public and private keys: openssl pkcs12 -in file-to-convert.p12 -out converted-file.pem -nodes
Forwarded from Hadi
.der
A way to encode ASN.1 syntax in binary, a .pem file is just a Base64 encoded .der file. OpenSSL can convert these to .pem (openssl x509 -inform der -in to-convert.der -out converted.pem). Windows sees these as Certificate files. By default, Windows will export certificates as .DER formatted files with a different extension. Like...
A way to encode ASN.1 syntax in binary, a .pem file is just a Base64 encoded .der file. OpenSSL can convert these to .pem (openssl x509 -inform der -in to-convert.der -out converted.pem). Windows sees these as Certificate files. By default, Windows will export certificates as .DER formatted files with a different extension. Like...
Forwarded from Hadi
.cert .cer .crt
A .pem (or rarely .der) formatted file with a different extension, one that is recognized by Windows Explorer as a certificate, which .pem is not.
A .pem (or rarely .der) formatted file with a different extension, one that is recognized by Windows Explorer as a certificate, which .pem is not.
Forwarded from Hadi
.p7b
Defined in RFC 2315, this is a format used by windows for certificate interchange. Java understands these natively. Unlike .pem style certificates, this format has a defined way to include certification-path certificates
Defined in RFC 2315, this is a format used by windows for certificate interchange. Java understands these natively. Unlike .pem style certificates, this format has a defined way to include certification-path certificates
Forwarded from Hadi
.crl
A certificate revocation list. Certificate Authorities produce these as a way to de-authorize certificates before expiration. You can sometimes download them from CA websites
A certificate revocation list. Certificate Authorities produce these as a way to de-authorize certificates before expiration. You can sometimes download them from CA websites
Forwarded from Hadi
مراحل راه اندازی وب سرور امن wamp در ویندوز :
http://www.phpjoel.com/2011/04/07/installing-ssl-using-openssl-on-a-wamp-localhost/
http://www.phpjoel.com/2011/04/07/installing-ssl-using-openssl-on-a-wamp-localhost/
Phpjoel
Installing SSL using OpenSSL on a WAMP localhost | phpJoel
I'm working on a project that is requiring me to use SSL (to make a https connection) on my local installation of WAMP. After much searching and a couple
Forwarded from Hadi
Forwarded from Hadi
کتاب آشنائی با زیرساخت کلید عمومی
http://www.slideshare.net/albertjeremy/windows-server-2008-pki-and-certificate-security?qid=543b8017-ca36-4ef6-b0ea-9d2e0b6a1a7b&v=&b=&from_search=3
http://www.slideshare.net/albertjeremy/windows-server-2008-pki-and-certificate-security?qid=543b8017-ca36-4ef6-b0ea-9d2e0b6a1a7b&v=&b=&from_search=3
www.slideshare.net
Windows server 2008 pki and certificate security
PUBLISHED BYMicrosoft PressA Division of Microsoft CorporationOne Microsoft WayRedmond, Washington 98052-6399Copyright © 2008 by Brian KomarAll rights reserved…
Forwarded from Hadi