Estou usando o seguinte comando para gerar uma chave gpg
#!/bin/bash
cat > /tmp/gpg.txt << EOF
%echo Generating a basic OpenPGP key
Key-Type: DSA
Key-Length: 1024
Subkey-Type: ELG-E
Subkey-Length: 1024
Name-Real: test
Name-Comment: test
Name-Email: [email protected]
Expire-Date: 0
Passphrase: test
%pubring test.pub
%secring test.sec
%commit
%echo done
EOF
gpg2 --armor --batch --gen-key /tmp/gpg.txt
rm -f /tmp/gpg.txt
Funciona parcialmente. Somente test.pub
é criado e test.sec
está vazio.
Alguma idéia?
Tags gpg