erlang-p1-pkix 1.0.8-1 source package in Ubuntu

Changelog

erlang-p1-pkix (1.0.8-1) unstable; urgency=medium

  * New upstream version 1.0.8
  * Updated Standards-Version: 4.6.0 (no changes needed)

 -- Philipp Huebner <email address hidden>  Sun, 29 Aug 2021 21:32:00 +0200

Upload details

Uploaded by:
Ejabberd Packaging Team
Uploaded to:
Sid
Original maintainer:
Ejabberd Packaging Team
Architectures:
any
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Downloads

File Size SHA-256 Checksum
erlang-p1-pkix_1.0.8-1.dsc 2.1 KiB e0fd9e8503020ac8fafbeca0a703cf2ae87493f471d55b8a8663073b54fb922e
erlang-p1-pkix_1.0.8.orig.tar.gz 202.9 KiB b799d0fba9084d1c3ed4fd40abc422f5ff21b208809936cf8f83cd68e3840314
erlang-p1-pkix_1.0.8-1.debian.tar.xz 2.8 KiB 2ecfdf61530d27120bd23d1e5695f0344092c9ad39cc7a1549b08792ad007273

Available diffs

No changes file available.

Binary packages built by this source

erlang-p1-pkix: PKIX certificates management library for Erlang

 The idea of the library is to simplify certificates configuration in Erlang
 programs. Typically an Erlang program which needs certificates (for HTTPS/
 MQTT/XMPP/etc) provides a bunch of options such as certfile, chainfile,
 privkey, etc. The situation becomes even more complicated when a server
 supports so called virtual domains because a program is typically required to
 match a virtual domain with its certificate. If a user has plenty of virtual
 domains it's quickly becoming a nightmare for them to configure all this.
 The complexity also leads to errors: a single configuration mistake and a
 program generates obscure log messages, unreadable Erlang tracebacks or,
 even worse, just silently ignores the errors.
 Fortunately, the large part of certificates configuration can be automated,
 reducing a user configuration to something as simple as:
 .
 certfiles:
   - /etc/letsencrypt/live/*/*.pem
 .
 The purpose of this library is to do this dirty job under the hood.