Difference between revisions of "Main Page"
(Added link to Guidelines for Manual Page Authors) |
(New look, for better or worse) |
||
Line 3: | Line 3: | ||
This wiki is intended as a place for collecting, organizing, and refining useful information about OpenSSL that is currently strewn among multiple locations and formats. | This wiki is intended as a place for collecting, organizing, and refining useful information about OpenSSL that is currently strewn among multiple locations and formats. | ||
− | + | == OpenSSL Quick Links == | |
− | |||
− | |||
− | |||
− | |||
<TABLE border=0> | <TABLE border=0> | ||
Line 33: | Line 29: | ||
</TABLE> | </TABLE> | ||
− | === Using This Wiki | + | == Administrivia == |
+ | Site guidelines, legal and admininstrative issues. | ||
+ | :* [[Basic rules]], [[Commercial Product Disclaimer]], [[Contributions]], [[Copyright]], [[License]] | ||
+ | :* Using This Wiki | ||
+ | :: [http://meta.wikimedia.org/wiki/Help:Contents Wiki User's Guide], [http://www.mediawiki.org/wiki/Manual:Configuration_settings Configuration settings list], [http://www.mediawiki.org/wiki/Manual:FAQ MediaWiki FAQ], [https://lists.wikimedia.org/mailman/listinfo/mediawiki-announce MediaWiki Mailing List] | ||
− | + | == Reference == | |
− | + | This section contains the automagically generated man pages from the OpenSSL git repository, and similar "man" style reference documentation. The man pages are automatically imported from the OpenSSL git repository and local wiki modifications are submitted as patches. | |
− | + | :* OpenSSL Manual Pages | |
− | + | ::* [[Manual:Openssl(1)]], [[Manual:Ssl(3)]], [[Manual:Crypto(3)]], [[Documentation Index]] | |
− | + | :: If you wish to edit any of the Manual page content please refer to the [[Guidelines for Manual Page Authors]] page. | |
− | + | :* [[API]], [[Libcrypto API]], [[Libssl API]] | |
− | + | :* [[FIPS mode()]], [[FIPS_mode_set()]] | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | == | + | == Usage and Programming == |
− | + | This section has discussions of practical issues in using OpenSSL | |
− | + | :* Building from Source | |
− | + | :: Where to find it, the different versions, how to build and install it. | |
− | + | :* [[OpenSSL Overview]] | |
− | + | :* [[Versioning]] | |
− | + | :* [[Compilation and Installation]] | |
− | + | :* EVP | |
− | + | :: Programming techniques and example code | |
− | + | :: Use of EVP is preferred for most applications and circumstances | |
− | + | ::* [[EVP Asymmetric Encryption and Decryption of an Envelope]] | |
− | + | ::* [[EVP Authenticated Encryption and Decryption]] | |
− | + | ::* [[EVP Symmetric Encryption and Decryption]] | |
− | + | ::* [[EVP Key and Parameter Generation]] | |
− | + | ::* [[EVP Key Agreement]] | |
− | + | ::* [[EVP Message Digests]] | |
− | + | ::* [[EVP Key Derivation]] | |
− | + | ::* [[EVP Signing and Verifying|EVP Signing and Verifying (including MAC codes)]] | |
+ | :* Low Level APIs | ||
+ | :: More specialized non-EVP usage | ||
+ | ::* [[Diffie-Hellman parameters]] | ||
− | + | == Concepts and Theory == | |
+ | Discussions of basic cryptographic theory and concepts | ||
+ | Discussions of common operational issues | ||
+ | :* [[Base64]] | ||
+ | :* [[FIPS 140-2]] | ||
+ | :* [[Random Numbers]] | ||
+ | :* [[Diffie Hellman]] | ||
+ | :* [[Elliptic Curve Diffie Hellman]] | ||
+ | :* [[Elliptic Curve Cryptography]] | ||
− | [[ | + | == Internals and Development == |
+ | This section is for internal details of primary interest to OpenSSL maintainers and power users | ||
+ | :* [[Internals]] | ||
+ | :* [[Code Quality]] | ||
+ | :* [[Static and Dynamic Analysis]] |
Revision as of 14:16, 31 May 2013
If this is your first visit please see the Welcome page. Your participation and Contributions are valued.
This wiki is intended as a place for collecting, organizing, and refining useful information about OpenSSL that is currently strewn among multiple locations and formats.
OpenSSL Quick Links
OpenSSL Overview | Compilation and Installation | Internals | ||
libcrypto API | libssl API | Examples | ||
License | Command Line Utilities | Related Links |
Administrivia
Site guidelines, legal and admininstrative issues.
- Basic rules, Commercial Product Disclaimer, Contributions, Copyright, License
- Using This Wiki
Reference
This section contains the automagically generated man pages from the OpenSSL git repository, and similar "man" style reference documentation. The man pages are automatically imported from the OpenSSL git repository and local wiki modifications are submitted as patches.
- OpenSSL Manual Pages
- If you wish to edit any of the Manual page content please refer to the Guidelines for Manual Page Authors page.
Usage and Programming
This section has discussions of practical issues in using OpenSSL
- Building from Source
- Where to find it, the different versions, how to build and install it.
- Programming techniques and example code
- Use of EVP is preferred for most applications and circumstances
- Low Level APIs
- More specialized non-EVP usage
Concepts and Theory
Discussions of basic cryptographic theory and concepts Discussions of common operational issues
Internals and Development
This section is for internal details of primary interest to OpenSSL maintainers and power users