ssl
Contents
1. what is https
https is a extension of http, and a secure http.
2. certificatin
- contents:
- The domain name that the certificate was issued for
- Which person, organization, or device it was issued to
- Which certificate authority issued it
- The certificate authority’s digital signature
- Associated subdomains
- Issue date of the certificate
- Expiration date of the certificate
- The public key (the private key is kept secret)
2. tls handshake
- send a random string, tls version, cipher suites supported,etc;
- send chosen chiper suite , certificate
- verify the certificate; send a pre-master key
- decrypt the per-master key
after above; both client and server generate symmetrical secrect from random key and pre-mater key
use (public key)asymmetric encryption to generate pre-master key
2. SSL/TLS
1. SSL vs TLS?
Protocol | Published | Status |
---|---|---|
SSL 1.0 | Unpublished | Unpublished |
SSL 2.0 | 1995 | Deprecated in 2011 (RFC 6176) |
SSL 3.0 | 1996 | Deprecated in 2015 (RFC 7568) |
TLS 1.0 | 1999 | Deprecated in 2020 (RFC 8996)[8][9][10] |
TLS 1.1 | 2006 | Deprecated in 2020 (RFC 8996)[8][9][10] |
TLS 1.2 | 2008 | |
TLS 1.3 2018 |
2. what is SSL certification
used to provide the public key;
the client must verify the certification before using it;
3. types of SSL certification
- DV: domain validated: only validate you own the URL
- OV: organization validated: validate you own the url while you own the orgation
- EV: Extended validation: provide more information
4. how does the brower verify the cerfification
the superior use the public key to validate the signature which generated by private key;(证书里声明的哈希算法对明文部分进行哈希和公钥解开后的签名进行比较)
1. what is signature,how to verify
generate the signature
- use hash algorithm to generate a digest of the content;
- use private key to encrypt the digest
verify the signature
- hash the content: A1
- use public key tp decrypt the signature: A2
- compare A1 and A2;
antoher question
1. why need CA ?
CA(certificate authority)颁发证书和提供证书验证机制
防止中间人攻击: 中间人可以使用自己的公钥替换服务端公钥;CA提供一种安全机制确保证书是可信的;
generate
-
acme: automatic certificate management environment between certificate authorities and user’s web services;;
-
free ca:
- let’s encrypt it
- zero ssl