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

Changelog

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

  * New upstream version 1.0.9
  * Updated Standards-Version: 4.6.1 (no changes needed)
  * Updated Erlang dependencies
  * Updated years in debian/copyright

 -- Philipp Huebner <email address hidden>  Thu, 02 Jun 2022 10:28:07 +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.9-1.dsc 2.1 KiB f981c6447d7b536942a0e4a5733f8cd1edcfbb0916e940b9dba66567f4ddcffb
erlang-p1-pkix_1.0.9.orig.tar.gz 196.8 KiB a71ccaf32f333b91470817232eb38a059d0ca651e681aeffee42fb3d19f85a48
erlang-p1-pkix_1.0.9-1.debian.tar.xz 3.0 KiB 17c5b856f23a8b261fa9c8fc61aac66bb711e150cb3a09fa0d26dca64e0adbc5

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.