podman-build/vendor/github.com/containers/luksy
2025-10-11 12:30:35 +09:00
..
.cirrus.yml First commit for v5.6.2 2025-10-11 12:30:35 +09:00
.dockerignore First commit for v5.6.2 2025-10-11 12:30:35 +09:00
.gitignore First commit for v5.6.2 2025-10-11 12:30:35 +09:00
decrypt.go First commit for v5.6.2 2025-10-11 12:30:35 +09:00
Dockerfile First commit for v5.6.2 2025-10-11 12:30:35 +09:00
encrypt.go First commit for v5.6.2 2025-10-11 12:30:35 +09:00
encryption.go First commit for v5.6.2 2025-10-11 12:30:35 +09:00
LICENSE First commit for v5.6.2 2025-10-11 12:30:35 +09:00
luks.go First commit for v5.6.2 2025-10-11 12:30:35 +09:00
Makefile First commit for v5.6.2 2025-10-11 12:30:35 +09:00
OWNERS First commit for v5.6.2 2025-10-11 12:30:35 +09:00
README.md First commit for v5.6.2 2025-10-11 12:30:35 +09:00
tune.go First commit for v5.6.2 2025-10-11 12:30:35 +09:00
v1header.go First commit for v5.6.2 2025-10-11 12:30:35 +09:00
v2header.go First commit for v5.6.2 2025-10-11 12:30:35 +09:00
v2json.go First commit for v5.6.2 2025-10-11 12:30:35 +09:00

luksy: offline encryption/decryption using LUKS formats Cirrus CI Status

luksy implements encryption and decryption using LUKSv1 and LUKSv2 formats. Think of it as a clunkier cousin of gzip/bzip2/xz that doesn't actually produce smaller output than input, but it encrypts, and that's nice.

  • The main goal is to be able to encrypt/decrypt when we don't have access to the Linux device mapper. Duplicating functions of cryptsetup that it can perform without accessing the Linux device mapper is not a priority.
  • If you can use cryptsetup instead, use cryptsetup instead.