python-lib25519 0~20230630.1-2 source package in Ubuntu

Changelog

python-lib25519 (0~20230630.1-2) unstable; urgency=medium

  * Source-only upload.

 -- Jan Mojžíš <email address hidden>  Sat, 30 Dec 2023 14:49:39 +0100

Upload details

Uploaded by:
Jan Mojžíš
Uploaded to:
Sid
Original maintainer:
Jan Mojžíš
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc
Noble release universe misc

Builds

Noble: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
python-lib25519_0~20230630.1-2.dsc 2.2 KiB 5bfeae22f18afc2f5763eb8f4a0c5400e86ce8ce3f687f2edb5312534bf37e61
python-lib25519_0~20230630.1.orig.tar.gz 4.9 KiB 8a90dde1de88a10c7cdccb2f16d88c866475868da1b5f73b1783d856c2a8c4c6
python-lib25519_0~20230630.1-2.debian.tar.xz 1.7 KiB 0772ed483dbcb524ddaae04a8da289bc5a0d5802d5ce0928fc2eb89ee6fa98d9

Available diffs

No changes file available.

Binary packages built by this source

python3-lib25519: microlibrary X25519/Ed25519 - Python wrapper

 lib25519 is a microlibrary for the X25519 encryption system and the Ed25519
 signature system, both of which use the Curve25519 elliptic curve.
 .
 lib25519 has a very simple stateless API based on the SUPERCOP API, with
 wire-format inputs and outputs, providing functions that directly match the
 central cryptographic operations in X25519 and Ed25519:
 .
 lib25519.x25519.keypair(pk, sk): X25519 key generation
 lib25519.x25519.dh(k, pk, sk): shared-secret generation
 lib25519.ed25519.keypair(pk, sk): Ed25519 key generation
 lib25519.ed25519.sign(sm, &smlen, m, mlen, sk): signing
 lib25519.ed25519.open(m, &mlen, sm, smlen, pk): verification + message recovery