Skip to main content
Search type Search syntax
Tags [tag]
Exact "words here"
Author user:1234
user:me (yours)
Score score:3 (3+)
score:0 (none)
Answers answers:3 (3+)
answers:0 (none)
isaccepted:yes
hasaccepted:no
inquestion:1234
Views views:250
Code code:"if (foo != bar)"
Sections title:apples
body:"apples oranges"
URL url:"*.example.com"
Saves in:saves
Status closed:yes
duplicate:no
migrated:no
wiki:no
Types is:question
is:answer
Exclude -[tag]
-apples
For more details on advanced search visit our help page
Results tagged with
Search options not deleted user 333086

HTTPS stands for HTTP Secure and is a combination of HTTP and SSL/TLS (Secure Sockets Layer/Transport Layer Security) and is used to provide an encrypted connection to a website.

0 votes
Accepted

Accessing a HTTPS server using old ciphers

Old distros are available from: https://soft.lafibre.info/ …
garethTheRed's user avatar
  • 4,464
2 votes
Accepted

AuthorityKeyIdentifier missing from keypair generated with java keytool

It seems that keytool's list of possible extensions is limited and does not include the Authority Key Identifier you need. Therefore, instead, use openssl to create the self-signed certificate; conve …
garethTheRed's user avatar
  • 4,464
2 votes

self signed certificate with openssl for server at home and no domain name

To answer your actual question: You need to look at Subject Alternate Names. These allow a certificate to have more than one domain name assigned to them. The recommendation is that you leave Commo …
garethTheRed's user avatar
  • 4,464
1 vote

https from Internet to a private server

The type of names permitted is defined in RFC 5280 but for HTTPS boils down to either a domain name, URI, or an IP address. …
garethTheRed's user avatar
  • 4,464
35 votes
Accepted

How do I view Current User Certificates, and not Local Machine Certificates, on Windows?

That's because you have opened the Certificate Manager for the local machine - certlm.msc. If instead, you open the Certificate Manager for the user - certmgr.msc you should see your certificates. On …
garethTheRed's user avatar
  • 4,464
1 vote
Accepted

What order are TLS/SSL certificate attributes checked for validity? Is there a standard?

RFC 5246, says the following about the ServerHello message: The server will send this message in response to a ClientHello message when it was able to find an acceptable set of algorithms. If it cann …
garethTheRed's user avatar
  • 4,464
2 votes

SSL / TLS on EC2 load balancer - why does it work?

Alter the Security Group (firewall) protecting the original servers so that they don't accept HTTP from the Internet.
garethTheRed's user avatar
  • 4,464
1 vote

SSL lock invalid certificate

Your server certificate is missing important extensions that keep modern browsers happy. In fact, it's missing all extensions as it is a Version 1 certificate (3rd line) which pre-dates extensions. …
garethTheRed's user avatar
  • 4,464