Of course, you can use tranditional tar command
$ tar cvf archive.tar path
You can encrypt file using gpg
$ gpg -c archive.tar
This will prompt you for a passphrase and create an encrypted file acrhive.tar.gpg
You can decrypt the encrypted file using gpg.
$ gpg -d archive.tar.gpg