gpg batch: criou um arquivo secring vazio

0

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?

    
por daisy 05.09.2018 / 08:28

0 respostas

Tags