Difference between pages "Merge Funtoo 1.0 profile support into gentoo" and "Package:OpenSSL"

From Funtoo
(Difference between pages)
Jump to navigation Jump to search
(Created page with "Steps to merge funtoo 1.0 style profile support into gentoo: 1.) eselect-profile support We want eselect-profile to support both the funtoo style profiles and the gentoo...")
 
 
Line 1: Line 1:
Steps to merge funtoo 1.0 style profile support into gentoo:
{{Ebuild
|Summary=Full-strength general purpose cryptography library (including SSL and TLS.)
|CatPkg=dev-libs/openssl
|Homepage=http://www.openssl.org
}}
{{PageNeedsUpdates}}
OpenSSL is a cryptography package used with {{Package|net-misc/openssh}}, web servers, and more.  ftps, https, smtps, imaps, etc use SSL/TLS.  SSL/TLS is used to prevent man in the middle attacks on plain text streams of data. As this is a security package it is frequently cycled from testing, & bug repairs.
{{note|ssl is old, tls is new.  If you have the option to run tls, run tls rather than ssl}}


1.) eselect-profile support
=== Installation ===
    We want eselect-profile to support both the funtoo style profiles and the gentoo style profiles at the same time
{{console|body=###i## emerge dev-libs/openssl}}
    First thought, says if /etc/{,portage}/make.profile is a symlink, only show gentoo style profiles; this will hide the changes from unsuspecting users so they don't    
 
        accidently set an experimental profile as gentoo tries to catch up.
=== Usage ===
    If /etc/{,portage}/make.profile is not a symlink, then show a list of old style profiles and new style profiles.
ssl uses several certificates with differing coverage, and use cases. Certificates are obtained by 3rd party sites.  go-daddy, namecheap, and verisign are popular ssl certificate providers, though several others exist.
        This may require funtoo to remove profiles.desc and profiles.eselect.desc from gentoo before replicating.
 
2.) catalyst support
The general overview is buy certificate, send private files, send extra information if required, get files back, insert files into openssl configs, change program configs ports to S version of the protocol, (as in for web port 80, now listens to port 443, and i address the server as https instead of http now.) reorder the cert next year.
    seems trivial, support catalyst setting new style profiles.
 
    input requested from funtoo team on suggested syntax
==== Self Signed Certificates ====
3.) build prototype profiles in gentoo for all possible x86/amd64 varients.
Free:
    mgorny has some good ideas here for multilib stuff
Self signed certificates are free, self made, quick, easy to setup, and insecure.  They are great for lab experiments, and testing out new technologies that you're not familiar with.
    blueness has some good ideas for hardened and alternative libc implementations
 
==== Free Certificates ====
Free:  (with restrictions)
You can get free certificates from places like StartSSL.com. The free certificates from them are not recommended if you are a company or doing E-Commerce as they only validate that you own the domain, not anything beyond that.  However, for personal sites, you can't beat the cost.
 
==== Single Domain Certificates ====
Generally $10/yr:
Single domain certificates are probably the cheapest ssl certificate you will find on the web. This certificate does not cover subdomains.
 
==== Unified Communications Certificate ====
Generally $300/yr
This certificate is meant for small businesses. This type of certificate will generally cover 20-30 domains, sites, or subdomains.
 
==== Wildcard Certificates ====
Generally $300/yr
Wildcard certificates are expensive, however they cover every subdomain name you add.
 
==== Other Misc Certs ====
*domain validated SSL Certificates
*organization validated SSL Certificates
*Extended Validation SSL Certificates
 
=== Using SSL With Nginx or Tengine ===
See this page:  [[HOWTO:WebServer_SSL]]
 
=== External Resources ===
https://wiki.archlinux.org/index.php/OpenSSL
{{EbuildFooter}}

Latest revision as of 05:58, July 9, 2015

OpenSSL

   Tip

We welcome improvements to this page. To edit this page, Create a Funtoo account. Then log in and then click here to edit this page. See our editing guidelines to becoming a wiki-editing pro.

OpenSSL is a cryptography package used with net-misc/openssh, web servers, and more. ftps, https, smtps, imaps, etc use SSL/TLS. SSL/TLS is used to prevent man in the middle attacks on plain text streams of data. As this is a security package it is frequently cycled from testing, & bug repairs.

   Note

ssl is old, tls is new. If you have the option to run tls, run tls rather than ssl

Installation

root # emerge dev-libs/openssl

Usage

ssl uses several certificates with differing coverage, and use cases. Certificates are obtained by 3rd party sites. go-daddy, namecheap, and verisign are popular ssl certificate providers, though several others exist.

The general overview is buy certificate, send private files, send extra information if required, get files back, insert files into openssl configs, change program configs ports to S version of the protocol, (as in for web port 80, now listens to port 443, and i address the server as https instead of http now.) reorder the cert next year.

Self Signed Certificates

Free: Self signed certificates are free, self made, quick, easy to setup, and insecure. They are great for lab experiments, and testing out new technologies that you're not familiar with.

Free Certificates

Free: (with restrictions) You can get free certificates from places like StartSSL.com. The free certificates from them are not recommended if you are a company or doing E-Commerce as they only validate that you own the domain, not anything beyond that. However, for personal sites, you can't beat the cost.

Single Domain Certificates

Generally $10/yr: Single domain certificates are probably the cheapest ssl certificate you will find on the web. This certificate does not cover subdomains.

Unified Communications Certificate

Generally $300/yr This certificate is meant for small businesses. This type of certificate will generally cover 20-30 domains, sites, or subdomains.

Wildcard Certificates

Generally $300/yr Wildcard certificates are expensive, however they cover every subdomain name you add.

Other Misc Certs

  • domain validated SSL Certificates
  • organization validated SSL Certificates
  • Extended Validation SSL Certificates

Using SSL With Nginx or Tengine

See this page: HOWTO:WebServer_SSL

External Resources

https://wiki.archlinux.org/index.php/OpenSSL