I want to encrypt a file and be able to decrypt/encrypt it again only for me to use that file.
If I use a key pair to encrypt the file, then I need to move the key files around to new devices if I want to decrypt it there. But that is not very convinient, and if only I am going to use the file, it is nescessary to have a key pair then, or is it enough to just use gpg --symmetric file.example and make the file only ask for a password and not requiring key files as well?
Summary:
Is it recommended to encrypt a file with gpg --symmetric so that decrypting the file only requires the correct password to be provided if only one person(me) is going to use it? Compared to creating a key pair and using the key pair to encrypt/decrypt, in which case I will have to have the key files with me if I want to decrypt on a different device.