Skip to content

Latest commit

 

History

History
173 lines (110 loc) · 6.21 KB

CHANGELOG.md

File metadata and controls

173 lines (110 loc) · 6.21 KB

Changes

Release 0.10.0 - September 29, 2022

  • Update x509-parser to 0.14.
  • Increase minimum supported Rust version to 1.58.1.
  • Update edition to 2021.
  • Change IsCa enum to have NoCa and ExplicitNoCa and Ca(...). Contributed by doraneko94.

Release 0.9.4 - September 28, 2022

  • yanked due to breaking API changes, see 0.10.0 instead. *

Release 0.9.3 - July 16, 2022

  • Add a KeyPair::serialized_der function. Contributed by jean-airoldie.

Release 0.9.2 - February 21, 2022

  • Update x509-parser to 0.13. Contributed by matze.

Release 0.9.1 - February 9, 2022

  • Change edition to 2018 in order to support Rust 1.53.0.

Release 0.9.0 - February 2, 2022

  • Add RemoteKeyError for usage by remote keys.
  • Support non utf8 strings. Contributed by omjadas.
  • Switch from chrono to time. Contributed by connec.
  • Update edition to 2021.

Release 0.8.14 - October 14, 2021

  • Update pem to 1.0.
  • Update x509-parser to 0.12.

Release 0.8.13 - August 22, 2021

  • Bugfix release to make Certificate Send and Sync again.

Release 0.8.12 - August 22, 2021

  • Use public key as default serial number. Contributed by jpastuszek.
  • Add support for PKCS_RSA_SHA512 and PKCS_RSA_SHA384 signature algorithms.
  • Add support for the keyUsage extension. Contributed by jaredwolff.
  • Ability to use remote keys. Contributed by daxpedda.

Release 0.8.11 - April 28, 2021

  • Add getters for the criticality, content, and oid_components of a CustomExtension
  • Update yasna to 0.4

Release 0.8.10 - April 15, 2021

  • Implement some additional traits for some of the types. Contributed by zurborg.
  • Adoption of intra-doc-links
  • Addition of the ability to zero key pairs. Contributed by didier-wenzek.

Release 0.8.9 - December 4, 2020

  • Switch CI to Github Actions.
  • Strip nanos from DateTime as well. Contributed by @trevor-crypto.

Release 0.8.7 - December 1, 2020

  • Turn botan back into a dev-dependency. Contributed by @nthuemmel.
  • Fix signing when CA uses different signing algorithm . Contributed by @nthuemmel.

Release 0.8.6 - December 1, 2020

  • Add KeyPair::from_der
  • Add botan based test to the testsuite
  • Update x509-parser to 0.9. Contributed by @djc.
  • Ability to create certificates from CSRs. Contributed by @djc.

Release 0.8.5 - June 29, 2020

  • Add some more DnTypes: OrganizationalUnitName, LocalityName, StateOrProvinceName
  • Add remove function to DistinguishedName
  • Add ability to specify NameConstraints

Release 0.8.4 - June 5, 2020

  • Improve spec compliance in the notBefore/notAfter fields generated by using UTCTime if needed

Release 0.8.3 - May 24, 2020

  • Fix regression of 0.8.1 that generated standards non compliant CSRs and broke Go toolchain parsers. Contributed by @thomastaylor312.

Release 0.8.2 - May 18, 2020

  • Disable chrono default features to get rid of time crate
  • Improve openssl tests to do a full handshake with the generated cert

Release 0.8.1 - April 2, 2020

  • Fix non-standard-compliant SubjectKeyIdentifier X.509v3 extension format
  • BasicConstraints X.509v3 extension is now marked as critical
  • Use RFC 7093 to calculate calculate subject key identifiers
  • Add option to insert AuthorityKeyIdentifier X.509v3 extension into non-self-signed certificates
  • Update to x509-parser 0.7

Release 0.8.0 - March 12, 2020

  • Update to pem 0.7
  • Correct number of nanoseconds per second. Contributed by @samlich.
  • Adoption of the non_exhaustive feature in the API

Release 0.7.0 - September 14, 2019

  • Bugfix release for ip address subject alternative names. Turns out they aren't CIDR subnets after all :)

Release 0.6.0 - September 12, 2019

  • Support for email and cidr subnet (ip address) subject alternative names
  • Support for the extended key usage extension

Release 0.5.1 - August 19, 2019

  • Update to x509-parser 0.6

Release 0.5.0 - July 19, 2019

  • Update to ring 0.16 and webpki 0.21
  • Update to x509-parser 0.5
  • Expose an API to get the raw public key of a key pair

Release 0.4.1 - June 28, 2019

  • Allow inspection of DistinguishedName via iterators and get functions
  • Fix a bug in is_compatible not saying false. Contributed by @fzgregor.
  • Extend the public interface of KeyPair. Contributed by @fzgregor.

Release 0.4.0 - June 18, 2019

  • Support for user supplied keypairs. Contributed by @fzgregor.
  • Support for signing with user supplied CA certificates. Contributed by @fzgregor.
  • Correct a bug with distinguished name serialization (PR link). Contributed by @fzgregor.
  • Addition of limited (no key generation) RSA support
  • Proper error handling with Result and our own Error type
  • Improvements of the testsuite

Release 0.3.1 - June 6, 2019

  • Ability to disable the dependency on the pem crate
  • Support for creating CSRs (Certificate Signing Requests). Contributed by @djc.
  • Ability to specify custom extensions for certificates
  • Ability to craft acmeIdentifier extensions
  • Update yasna to 0.3.0

Release 0.3.0 - May 18, 2019

  • Support for CA certificate generation. Contributed by @djc.
  • Support for certificate signing. Contributed by @djc.
  • Support for ED25519 certificates
  • Support for SHA-384 certificates
  • API cleanups (Future proofing CertificateParams, public constant renames)

Release 0.2.1 - April 26, 2019

  • Updated to pem 0.6

Release 0.2 - January 10, 2019

  • Updated to ring 0.14.0

Release 0.1 - January 7, 2019

Initial release. Ability to generate self-signed ECDSA keys.