Difference between revisions of "Certificate Authority"
Jump to navigation
Jump to search
imported>Jeremy-busk |
|||
(2 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
+ | https://github.com/letsencrypt/boulder | ||
+ | cfssl & certstrap, openssl smallstep certificates | ||
# Extended Validation Certificate | # Extended Validation Certificate | ||
Line 15: | Line 17: | ||
Below are links to PDF templates for Symantec, GeoTrust, and Thawte attorney and accountant opinion letters. | Below are links to PDF templates for Symantec, GeoTrust, and Thawte attorney and accountant opinion letters. | ||
+ | ``` | ||
+ | |||
+ | Adding Cert or Self Signed Cert from website to Debian with .crt | ||
+ | ``` | ||
+ | Add ca issuer certs from browser in chain file to | ||
+ | -----BEGIN CERTIFICATE----- | ||
+ | -----END CERTIFICATE----- | ||
+ | -----BEGIN CERTIFICATE----- | ||
+ | -----END CERTIFICATE----- | ||
+ | |||
+ | /usr/local/share/ca-certificates/internal-rootca.crt | ||
+ | sudo update-ca-certificates | ||
+ | # sudo update-ca-certificates --fresh # delete by using fresh | ||
``` | ``` |
Latest revision as of 21:04, 5 December 2023
https://github.com/letsencrypt/boulder cfssl & certstrap, openssl smallstep certificates
Extended Validation Certificate
- https://www.thesslstore.com/support/ev/professional-opinion-letter.aspx
- https://certs.godaddy.com/anonymous/professional-opinion-letter/movew6cbppyiumjgmj76uymcizsl5yzv
Professional Opinion Letters A Professional Opinion Letter, sometimes known as a Legal Opinion Letter, is a letter written by an attorney or accountant essentially vouching for the authenticity of a company or organization. The Certificate Authorities are quick to suggest a POL when applying for an Organization Validated or Extended Validated SSL certificate. And while the prospect of getting one may seem daunting, its convenience is undeniable–a POL can satisfy the majority of the requirements needed during the organization validation and extended validation processes. It can also satisfy three of the four requirements when applying for a Code Signing certificate. If your company has in-house legal or a close relationship with a willing accountant, this is a very good option for expediting the validation process. Below are links to PDF templates for Symantec, GeoTrust, and Thawte attorney and accountant opinion letters.
Adding Cert or Self Signed Cert from website to Debian with .crt
Add ca issuer certs from browser in chain file to -----BEGIN CERTIFICATE----- -----END CERTIFICATE----- -----BEGIN CERTIFICATE----- -----END CERTIFICATE----- /usr/local/share/ca-certificates/internal-rootca.crt sudo update-ca-certificates # sudo update-ca-certificates --fresh # delete by using fresh