1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
Source: python-unpaddedbase64
Maintainer: Andrew Shadura <andrewsh@debian.org>
Section: python
Priority: optional
Build-Depends:
debhelper-compat (= 12),
dh-python,
python-all (>= 2.6.6-3),
python-setuptools (>= 0.6.24),
python3-all,
python3-setuptools (>= 0.6.24)
Standards-Version: 4.3.0
X-Python-Version: >= 2.7
Testsuite: autopkgtest-pkg-python
Vcs-Browser: https://salsa.debian.org/matrix-team/python-unpaddedbase64
Vcs-Git: https://salsa.debian.org/matrix-team/python-unpaddedbase64.git
Package: python-unpaddedbase64
Architecture: all
Depends:
${misc:Depends},
${python:Depends}
Provides: ${python:Provides}
Description: unpadded Base64 implementation in Python
A module to encode and decode Base64 without "=" padding.
.
RFC 4648 specifies that Base64 should be padded to a multiple of 4 bytes
using "=" characters. However this conveys no benefit so many protocols choose
to use Base64 without the "=" padding.
.
This package is for Python 2.
Package: python3-unpaddedbase64
Architecture: all
Depends:
${misc:Depends},
${python3:Depends}
Description: unpadded Base64 implementation in Python 3
A module to encode and decode Base64 without "=" padding.
.
RFC 4648 specifies that Base64 should be padded to a multiple of 4 bytes
using "=" characters. However this conveys no benefit so many protocols choose
to use Base64 without the "=" padding.
.
This package is for Python 3.
|