Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-02-18 | Fix public_key documentation typos | Magnus Henoch | |
2015-11-05 | ssh, public_key: updates after doc review | Hans Nilsson | |
2015-11-04 | ssh, public_key: random selection of diffie-hellman moduli | Hans Nilsson | |
Also tool (public_key:gen_moduli_hrl) to convert an openssh moduli file to erlang format. | |||
2015-09-11 | Fix public_key doc | Yuki Ito | |
2015-06-28 | Updated documentation to match implementation | Red | |
Line number references are with respect to sources in public_key.erl Changes: - pkix_sign replaced public with private (L510) (Certificates are signed by private keys) - pki_asn1_type() added 'CertificateList' (L73) - pkix_sign_types added ecdsa (L404) - pkix_verify added ec_public_key() (L530) - pkix_is_issuer added 'CertificateList' (L569) | |||
2015-06-18 | Change license text to APLv2 | Bruce Yinhe | |
2015-05-11 | public_key: Align "=" sign in type declarations to decided policy | Ingela Anderton Andin | |
2015-05-07 | public_key: Align to alphabetical order | Ingela Anderton Andin | |
2015-05-07 | public_key: Correct application names and typos | Ingela Anderton Andin | |
2015-05-07 | public_key: Change structure to what editor intended | Ingela Anderton Andin | |
2015-05-07 | Editorial changes | tmanevik | |
2015-03-09 | Merge branch 'mururu/fix-type' into maint | Zandra Hird | |
* mururu/fix-type: Fix typos in the public_key doc OTP-12549 | |||
2015-03-09 | public_key: Improve CRL handling support | Ingela Anderton Andin | |
2015-02-24 | Fix typos in the public_key doc | Yuki Ito | |
2014-09-11 | public_key: Fix link errors in documentation | Ingela Anderton Andin | |
2014-09-09 | ssl, public_key: Add new option partial_chain | Ingela Anderton Andin | |
Check that the certificate chain ends with a trusted ROOT CA e.i. a self-signed certificate, but provide an option partial_chain to enable the application to define an intermediat CA as trusted. TLS RFC says: "unknown_ca A valid certificate chain or partial chain was received, but the certificate was not accepted because the CA certificate could not be located or couldn't be matched with a known, trusted CA. This message is always fatal." and also states: "certificate_list This is a sequence (chain) of certificates. The sender's certificate MUST come first in the list. Each following certificate MUST directly certify the one preceding it. Because certificate validation requires that root keys be distributed independently, the self-signed certificate that specifies the root certificate authority MAY be omitted from the chain, under the assumption that the remote end must already possess it in order to validate it in any case." X509 RFC says: "The selection of a trust anchor is a matter of policy: it could be the top CA in a hierarchical PKI, the CA that issued the verifier's own certificate(s), or any other CA in a network PKI. The path validation procedure is the same regardless of the choice of trust anchor. In addition, different applications may rely on different trust anchors, or may accept paths that begin with any of a set of trust anchors." | |||
2014-08-27 | public_key: Fix spec and documentation for pkix_crls_validate | Ingela Anderton Andin | |
2014-08-27 | public_key: Fix spec and documentation for PBES | Ingela Anderton Andin | |
2014-08-14 | public_key: Updated User Guide with ECC records | Ingela Anderton Andin | |
2014-04-03 | public_key: Fix typo | Ingela Anderton Andin | |
2014-04-02 | public_key: Document issuer_fun option to pkix_crls_validate/3 | Ingela Anderton Andin | |
2014-04-01 | public_key: Update outdated links | Ingela Anderton Andin | |
2014-02-06 | public_key(3): fix private_key/0 type definition | Tuncer Ayaz | |
2014-01-28 | Consistently format public_key(3) | Tuncer Ayaz | |
When documenting public_key/0 and private_key/0, I noticed the inconsistent state of formatting in public_key(3)'s Data Types section. This should be fixed for consistency and readability. | |||
2014-01-28 | Fix incorrect use of public_key:private_key/0 type | Tuncer Ayaz | |
public_key:private_key/0 was referenced but undefined, and lib/ssl had a local definition of private_key/0. To fix that, make the following changes: * add public_key:private_key/0 type * document public_key/0 and private_key/0 * fix incorrect definitions and references | |||
2014-01-28 | Fix incorrect proplists type reference | Tuncer Ayaz | |
ssh and public_key were referring to proplists:proplists/0 which does not exist. Fix by using the correct type proplists:proplist/0. | |||
2013-06-10 | Merge remote-tracking branch 'upstream/maint' | Ingela Anderton Andin | |
2013-06-10 | Merge branch 'ia/public_key/crypto/prepare-for-release' into maint | Ingela Anderton Andin | |
* ia/public_key/crypto/prepare-for-release: public_key & ssl: Add ASN-1 dependency crypto & public_key: prepare for release | |||
2013-06-10 | Merge remote-tracking branch 'upstream/maint' | Ingela Anderton Andin | |
2013-06-07 | crypto & public_key: Clearify documentation. | Ingela Anderton Andin | |
2013-06-07 | public_key & ssl: Add ASN-1 dependency | Ingela Anderton Andin | |
As the ASN-1 application relies on a nif in R16 for decodeing (that was not the case in R15), public_key currently has a runtime dependency on ASN-1. Hopefully we will be able to remove this dependency again in the future. | |||
2013-05-08 | Merge remote-tracking branch 'upstream/maint' | Ingela Anderton Andin | |
Conflicts: lib/crypto/doc/src/crypto_app.xml | |||
2013-05-08 | ssl & public_key: Use standard name | Ingela Anderton Andin | |
2013-05-08 | public_key: Add new API functions to the documentation | Ingela Anderton Andin | |
2013-05-08 | crypto: Deprecate functions, update doc and specs | Ingela Anderton Andin | |
2013-05-08 | PUBLIC_KEY: add support for Elliptic Curves to public_key app | Andreas Schultz | |
2013-04-19 | Convert XML files to UTF-8 | Hans Bolinder | |
2013-03-13 | public_key & ssl: Add support for ISO oids 1.3.14.3.2.29 and 1.3.14.3.2.27 | Ingela Anderton Andin | |
Some certificates may use these OIDs instead of the ones defined by PKIX/PKCS standard. Refactor code so that all handling of the "duplicate" oids is done by public_key. Update algorithm information in documentation. | |||
2013-01-17 | public_key: Fix spelling errors | Ingela Anderton Andin | |
2013-01-11 | public_key: Enhance documentation | Ingela Anderton Andin | |
2013-01-11 | public_key: Document pkix_path_validation/3 and pkix_crls_validate/3 | Ingela Anderton Andin | |
2013-01-09 | Fix some FOP warnings | Hans Bolinder | |
Examples overflowing the width of PDF pages have been fixed. The remaining warnings are due to table cells, and require more work. | |||
2012-11-16 | public_key: Add PKCS-10 documentation and PKCS-7 test case | Ingela Anderton Andin | |
Note that PKCS-7 is an undocumented feature for now. Also added some minor enhancements to the documentation. | |||
2012-08-22 | public_key: Fix documentation typo | Sverker Eriksson | |
dsa -> dss | |||
2012-08-22 | public_key: Add sha224 to RSA sign/verify | Sverker Eriksson | |
2012-08-22 | public_key: Align the interface of sign and verify with crypto | Sverker Eriksson | |
2012-08-22 | public_key: Generalised API | Ingela Anderton Andin | |
2012-01-03 | Fix some broken links in documentation | Lukas Larsson | |
2011-11-01 | Clean up of public_key code adding specs and documentation | Sverker Eriksson | |
2011-09-21 | Revert "Support md2WithRSAEncryption certificates in public_key" | Sverker Eriksson | |
This reverts commit c7e5f7576e213060cbb332be64a7c3798f6a2cc2. |