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
|
Source: libsecrecy
Section: science
Priority: optional
Maintainer: Debian Med Packaging Team <debian-med-packaging@lists.alioth.debian.org>
Uploaders: Étienne Mollier <emollier@debian.org>
Build-Depends: debhelper-compat (= 13),
pkgconf,
libgpgme-dev,
nettle-dev
Standards-Version: 4.7.0
Vcs-Browser: https://salsa.debian.org/med-team/libsecrecy
Vcs-Git: https://salsa.debian.org/med-team/libsecrecy.git
Homepage: https://gitlab.com/german.tischler/libsecrecy
Rules-Requires-Root: no
Package: libsecrecy-dev
Architecture: any
Multi-Arch: same
Section: libdevel
Depends: ${shlibs:Depends}, ${misc:Depends},
pkgconf,
libgpgme-dev,
nettle-dev
Description: C++ header only library for random access to encrypted files
libsecrecy is a header only C++ library implementing an encrypted file format
based on GCM (Galois Counter Mode) and AES128 or AES256.
.
It uses nettle routines for file encryption and decryption via GCM using
AES128 or AES256 as cipher function and gpgme for key storage.
.
While encryption is currently only supported in a streaming fashion,
decryption allows random access in the encrypted file due to independently
encoded subunits.
Package: secrecy
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: tool to handle libsecrecy keys and encrypted files
libsecrecy is a header only C++ library implementing an encrypted file format
based on GCM (Galois Counter Mode) and AES128 or AES256.
.
The libsecrecy distribution comes with a command line tool called secrecy.
This tool has subcommands to manage libsecrecy encryption keys, encrypt, and
decrypt files encrypted with the libsecrecy.
|