Gpg


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Gpg
# 1  
Old 06-24-2008
Gpg

Hi,
I have imported the details given by my friend using
gpg --import <file>

Now i am using the encryption technique with my friend's key in the following way:

gpg --output out.pgp --batch --encrypt --recipient "FRIEND_KEY" test

and i am getting the follwoing error:
Code:
gpg: 421E287E: There is no indication that this key really belongs to the owner

So my doubt is , can i use the key generated by a different person ?

I tried to create a key of my own and I am able to encrypt and decrypt files with that key. But not able to do with my friend's key. What to do be done to use my friend's key in my login.

Last edited by Yogesh Sawant; 06-25-2008 at 01:55 AM.. Reason: added code tags
# 2  
Old 06-24-2008
IIRC, after importing the key, you have to sign it:
Code:
gpg --edit-key me@somewhere.org

And yes, you can use the key of your friend as it will be encrypted with his key as recipient, which you did correct.
# 3  
Old 06-25-2008
hi

i gave gpg--edit-key "FriendKey" and then gave sign. So now i am able to encrypt files using the FriendKey. But not able to decrypt the files. What to be done for that ??

I am getting the following eeror:
gpg: decryption failed: secret key not available
# 4  
Old 06-25-2008
Your friend must have your pub key in his keyring and when encrypting used your keyname as address/recipient.
When that was all correct, it should ask you for your passphrase, iirc.
# 5  
Old 06-25-2008
Can you please explain how to do that ???
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

GPG encryption error ...

Hi. I'm hitting issues using gpg to encrypt a text file on Linux. gpg -c --passphrase 123 --cipher-algo AES256 test gpg: cancelled by user gpg: error creating passphrase: Operation cancelled gpg: symmetric encryption of `test' failed: Operation cancelled In this case the file test just... (3 Replies)
Discussion started by: user052009
3 Replies

2. Shell Programming and Scripting

GPG email attachment

Hi, Can we send gpg encrypted file as an email attachment using uuencode in linux??if so can you give me the code.. Regards, Sandeep. (1 Reply)
Discussion started by: sandeep karna
1 Replies

3. Solaris

GPG encryption utility in Solaris 10

Hi All, I am working on Solaris 10 OS on X4170M2 server. I have some .gpg encrypted files and i want to decrypt them but i dont know how to install the binary of gpg. Here is the binary in system : root@ecmstest # ls -larth total 1273904 -rw-r--r-- 1 root root 3.5M Oct 14 ... (1 Reply)
Discussion started by: Deepa Jain
1 Replies

4. Shell Programming and Scripting

To pass the variable in gpg

Hi, While m using gpg manually it works fine. I want to include this command in my auto script. how to pass the passphrase and Use this key anyway? (y/N) in my script. Advance thanks. $ gpg --sign --output xx.gpg --encrypt --recipient GXS_CTE xx.ext You need a passphrase to unlock the secret... (3 Replies)
Discussion started by: chakkaravarthy
3 Replies

5. UNIX and Linux Applications

Using gpg

I am trying to use gig in linux but it is hanging. $ gpg --passphrase=test /tmp/test.sh Reading passphrase from file descriptor 0 ... When i press enter, it gives the below message: $ gpg --passphrase=test /tmp/test.sh Reading passphrase from file descriptor 0 ... gpg: no valid... (1 Reply)
Discussion started by: tcssk
1 Replies

6. Shell Programming and Scripting

Need help on File Encryption using gpg

Folks, Is there anyone to help on GPG file encryptions here. I got a public key from third party. I imported the key in server. I want to encrypt the public key. But without being signed , the key cannot be encrypted. When I try to sign the key using lsign command, I am getting the below... (1 Reply)
Discussion started by: dinesh1985
1 Replies

7. Shell Programming and Scripting

Cannot see GPG installation

Hello all I have installed gpg key be executing command gpg --gen-key and followed the on screen prompts. I have done all this stuff from my home directory Now i am unable to see the results. Where are these keys stored. Doesn't it create a new folder in my home directory and create the... (1 Reply)
Discussion started by: vasuarjula
1 Replies

8. Shell Programming and Scripting

GPG Encription problem

Dear Friends, I have been using symmetric gpg encryption. I encrypt a file as follows gpg --symmetric <file name> then It asks to enter password two times Now the problme is, I have some 700 odd files to be encrypted by using symmetric gpg encription Can u plz tell me how to do that by... (14 Replies)
Discussion started by: anushree.a
14 Replies

9. UNIX for Dummies Questions & Answers

How to use GPG for myself on Thumb drive?

I have some sensitive data I would like to keep on a thumb drive. Now I know this is a UNIX/Linux forum and I regret to say that I'm using windows but I'm hoping that is irrelevant. So I install gpg on both windows machines: one at home and the other at work. I encrypt some stuff on the... (2 Replies)
Discussion started by: siegfried
2 Replies

10. Shell Programming and Scripting

GnuPG (gpg command)

I've been blessed with the task of writing functions that will be used to encrypt / decrypt data files using the Gnupg (gpg command) software on our Solaris 9. This was just installed last friday and I've got no documentation other than what I've found on the web. I was successful in writing... (4 Replies)
Discussion started by: BCarlson
4 Replies
Login or Register to Ask a Question