pgp extension file


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting pgp extension file
# 1  
Old 08-03-2010
pgp extension file

Hello all

Generate key: gpg --gen-key and follow onscreen prompts
List Keys: gpg --list-keys
Import the key: gpg --import ken-pgp.key.txt
Trust the Key: gpg --edit-key support@ken.com trust
Encrypt the file: gpg -r support@ken.com-e test2

I have used the above commands to generate the keys in my home directory, import the public key sent by third party, trust that key with my public key and generate a file. I am expecting when I used the last command I get a file with .pgp extension. But I am getting a .gpg extension.
Please let me know what command I should use to get a .pgp extension file.

Last edited by rbatte1; 12-02-2016 at 07:19 AM..
# 2  
Old 08-11-2010
this link may help you: Summary: GPG vs PGP?
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Rename specific file extension in directory with match to another file in bash

I have a specific set (all ending with .bam) of downloaded files in a directory /home/cmccabe/Desktop/NGS/API/2-15-2016. What I am trying to do is use a match to $2 in name to rename the downloaded files. To make things a more involved the date of the folder is unique and in the header of name... (1 Reply)
Discussion started by: cmccabe
1 Replies

2. UNIX for Dummies Questions & Answers

File Extension Missing in file-$var.csv

I'm afraid this is a silly question but I can't figure it out. I have a script like so... echo "Enter DRDL Signature Version Number" read DRDL_Number mv signature_output.csv SERVICE_OBJECTS_S-$DRDL_Number.csv The resultant filename does not contain the .csv as follows.... (3 Replies)
Discussion started by: Cludgie
3 Replies

3. UNIX for Dummies Questions & Answers

Display the .csv extension files based on .done extension fine

Hi All, I want to fetch the files based on .done file and display the .csv files and Wil take .csv files for processing. 1.I need to display the .done files from the directory. 2.next i need to search for the .Csv files based on .done file.then move .csv files for the one directory ... (2 Replies)
Discussion started by: girija.g6
2 Replies

4. Shell Programming and Scripting

Getting the file extension

I have a file n06-z30-sr65-rgdt0p25-varp0.25-8x6drw-test.cmod and I want to get the extension. At the moment I have set filextension = `echo $f | awk 'BEGIN {FS="."} {print $2}'` which of course does not work as there is a point in varp0.25 (13 Replies)
Discussion started by: kristinu
13 Replies

5. UNIX for Dummies Questions & Answers

creating separate directories according to file extension and keeping file in different directory as

unix program to which a directory name will be passed as parameter. This directory will contain files with various extensions. This script will create directories with the names of the extention of the files and then put the files in the corresponding folder. All files which do not have any... (2 Replies)
Discussion started by: Deekay.p
2 Replies

6. UNIX for Dummies Questions & Answers

About the file extension

Hi everyone, Can we know that which type of file is there without opening a file thanks in advance.... kunal patil (3 Replies)
Discussion started by: kunalpatil09
3 Replies

7. UNIX for Dummies Questions & Answers

File size after pgp encryption

Hello, Does anyone know if it's normal to have a very different file size after a file has been encrypted using pgp? Before encryption: 582.7618598938 MB After encryption: 98.73 MB Thanks in advance for any help, (2 Replies)
Discussion started by: tekster757
2 Replies

8. UNIX for Advanced & Expert Users

Ftp a pgp encripted file

Hi All, I am new to unix script. I want to ftp a file with pgp encription from my server to client server. the file name like 'xxxx_0102_yyyymmdd_hhmmss.aer'. this file name will change when ever i ftp my file. please help me any one to do this.. Thanks (2 Replies)
Discussion started by: krishna.apps
2 Replies

9. Shell Programming and Scripting

ftp a pgp encripted file

Hi. I am new to unix script. I want to ftp a file with pgp encription from my server to client server. the file name like 'xxxx_0102_yyyymmdd_hhmmss.aer'. this file name will change when ever i ftp my file. please help me any one to do this.. Thanks (2 Replies)
Discussion started by: krishna.apps
2 Replies

10. Cybersecurity

How to use PGP File Encryption

Hi All, I am new to the concept of encryption and shell and i have been assigned to do pgp encryption of a file before ftping it. I am developing the script using MKS Toolkit on Windows XP and the script will run later on actual unix box. I am going through documents provided by pgp... (2 Replies)
Discussion started by: sandeepb
2 Replies
Login or Register to Ask a Question