Submit
Path:
~
/
/
lib
/
cryptsetup
/
scripts
/
File Content:
decrypt_gnupg
#!/bin/sh decrypt_gpg () { echo "Performing GPG symmetric decryption ..." >&2 if ! /lib/cryptsetup/askpass "Enter passphrase for key $1: " | \ /usr/bin/gpg -q --batch --no-options \ --no-random-seed-file --no-default-keyring \ --keyring /dev/null --secret-keyring /dev/null \ --trustdb-name /dev/null --passphrase-fd 0 --decrypt -- "$1"; then return 1 fi return 0 } if [ ! -x /usr/bin/gpg ]; then echo "$0: /usr/bin/gpg is not available" >&2 exit 1 fi if [ -z "$1" ]; then echo "$0: missing key as argument" >&2 exit 1 fi decrypt_gpg "$1" exit $?
Edit
Rename
Chmod
Delete
FILE
FOLDER
Name
Size
Permission
Action
decrypt_derived
1106 bytes
0755
decrypt_gnupg
570 bytes
0755
decrypt_gnupg-sc
953 bytes
0755
decrypt_keyctl
2042 bytes
0755
decrypt_opensc
1396 bytes
0755
decrypt_ssl
347 bytes
0755
passdev
14648 bytes
0755
N4ST4R_ID | Naxtarrr