I have around 50 secret Keys on my Old Server and I have been running script to decrypt the file
c:\gnupg\gpg.exe --passphrase-fd 0 --decrypt --quiet --batch --output "xx.txt" "xx.txt.pgp" I want to start doing this on another server, so I would need to export the private Key to the new Server. Question is that when I run the above command on my old server, it decrypts the file using a private key in those 50 keys, I want to know which private key is that one. How to do this
so I can get the list
c:\gnupg\gpg.exe --list-secret-keys and I can import the Key from there, but I want to find out which key to export. Any help