nix/home/program/bash/module/Gpg.nix

70 lines
1.3 KiB
Nix
Raw Normal View History

2024-04-09 16:30:33 +03:00
{ ... }: {
text = ''
# Encrypt files to myself.
# Usage: encrypt <FILES>
function encrypt() {
local IFS=$'\n'
local targets=(''${@})
if [[ "''${targets}" = "" ]]; then
help encrypt
return 2
fi
2024-04-09 16:30:33 +03:00
process() {
gpg --encrypt --armor --recipient hi@voronind.com --output "''${target}.gpg" "''${target}"
2024-04-09 16:30:33 +03:00
}
_iterate_targets process ''${targets[@]}
}
# Decrypt files to myself.
# Usage: decrypt [FILES]
2024-04-09 16:30:33 +03:00
function decrypt() {
local IFS=$'\n'
local targets=(''${@})
[[ "''${targets}" = "" ]] && targets=(*.gpg)
2024-04-09 16:30:33 +03:00
process() {
gpg --decrypt --output "''${target%.gpg}" "''${target}"
2024-04-09 16:30:33 +03:00
}
_iterate_targets process ''${targets[@]}
}
# Sign a file.
# Usage: sign <FILES>
function sign() {
local IFS=$'\n'
local targets=(''${@})
if [[ "''${targets}" = "" ]]; then
help sign
return 2
fi
2024-04-09 16:30:33 +03:00
process() {
gpg --detach-sig --armor --output "''${target}.sig" "''${target}"
}
_iterate_targets process ''${targets[@]}
}
# Verify a signature. All .sig files by default.
# Usage: verify [FILES]
2024-04-09 16:30:33 +03:00
function verify() {
local IFS=$'\n'
local targets=(''${@})
2024-04-09 16:30:33 +03:00
[[ "''${targets}" = "" ]] && targets=(*.sig)
process() {
gpg --verify "''${target}"
}
_iterate_targets process ''${targets[@]}
}
'';
}