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

Changelog

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

  * New upstream version 1.0.4
  * Updated Standards-Version: 4.4.1 (no changes needed)
  * Set 'Rules-Requires-Root: no' in debian/control

 -- Philipp Huebner <email address hidden>  Mon, 11 Nov 2019 16:10:52 +0100

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.4-1.dsc 2.1 KiB 6fc2d1b100e0f871fc0e5c3588aa93cf8ac0fe0eea82f117893c0968616b337f
erlang-p1-pkix_1.0.4.orig.tar.gz 202.4 KiB 27a55d3952406cbedcda03fee455e057c96511090fd3d24b4f07aa549d36cdc8
erlang-p1-pkix_1.0.4-1.debian.tar.xz 2.6 KiB 5d2e91a021492685bbfd184d5c6042359ce3f72488771e42a0fc5a4a841049fd

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.