Sponsored Content
Full Discussion: GPG Encription problem
Top Forums Shell Programming and Scripting GPG Encription problem Post 302332743 by pludi on Friday 10th of July 2009 03:08:23 AM
Old 07-10-2009
Since you started a second thread for the same question (apparently) without reading the man-page, I'll provide a solution this time.

Code:
> cat pass
s3cr3t
> gpg --batch --no-tty --armor --passphrase-file pass --symmetric test.file
> ls test.*
test.file  test.file.asc
> file test.file.asc
test.file.asc: PGP armored data message

 

10 More Discussions You Might Find Interesting

1. 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

2. UNIX for Dummies Questions & Answers

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: gpg: 421E287E:... (4 Replies)
Discussion started by: risshanth
4 Replies

3. 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

4. Linux

GPG error on Debian 4 using apt-get

Hello, I wish to update a debian 4.0 server we have but cannot get past the following error message. my keys are as follows: Any help would be good. (0 Replies)
Discussion started by: pobman
0 Replies

5. 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

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. 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

8. 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

9. 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

10. 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
GnuPG(3pm)						User Contributed Perl Documentation						GnuPG(3pm)

NAME
GnuPG - Perl module interface to the GNU Privacy Guard (v1.x.x series) SYNOPSIS
use GnuPG qw( :algo ); my $gpg = new GnuPG(); $gpg->encrypt( plaintext => "file.txt", output => "file.gpg", armor => 1, sign => 1, passphrase => $secret ); $gpg->decrypt( ciphertext => "file.gpg", output => "file.txt" ); $gpg->clearsign( plaintext => "file.txt", output => "file.txt.asc", passphrase => $secret, armor => 1, ); $gpg->verify( signature => "file.txt.asc", file => "file.txt" ); $gpg->gen_key( name => "Joe Blow", comment => "My GnuPG key", passphrase => $secret, ); DESCRIPTION
GnuPG is a perl interface to the GNU Privacy Guard. It uses the shared memory coprocess interface that gpg provides for its wrappers. It tries its best to map the interactive interface of the gpg to a more programmatic model. API OVERVIEW
The API is accessed through methods on a GnuPG object which is a wrapper around the gpg program. All methods takes their argument using named parameters, and errors are returned by throwing an exception (using croak). If you wan't to catch errors you will have to use eval. When handed in a file handle for input or output parameters on many of the functions, the API attempts to tie that handle to STDIN and STDOUT. In certain persistent environments (particularly a web environment), this will not work. This problem can be avoided by passing in file names to all relevant parameters rather than a Perl file handle. There is also a tied file handle interface which you may find more convenient for encryption and decryption. See GnuPG::Tie(3) for details. CONSTRUCTOR
new ( [params] ) You create a new GnuPG wrapper object by invoking its new method. (How original !). The module will try to finds the gpg program in your path and will croak if it can't find it. Here are the parameters that it accepts : gnupg_path Path to the gpg program. options Path to the options file for gpg. If not specified, it will use the default one (usually ~/.gnupg/options). homedir Path to the gpg home directory. This is the directory that contains the default options file, the public and private key rings as well as the trust database. trace If this variable is set to true, gpg debugging output will be sent to stderr. Example: my $gpg = new GnuPG(); METHODS
gen_key( [params] ) This methods is used to create a new gpg key pair. The methods croaks if there is an error. It is a good idea to press random keys on the keyboard while running this methods because it consumes a lot of entropy from the computer. Here are the parameters it accepts : algo This is the algorithm use to create the key. Can be DSA_ELGAMAL, DSA, RSA_RSA or RSA. It defaults to DSA_ELGAMAL. To import those constant in your name space, use the :algo tag. size The size of the public key. Defaults to 1024. Cannot be less than 768 bits, and keys longer than 2048 are also discouraged. (You *DO* know that your monitor may be leaking sensitive information ;-). valid How long the key is valid. Defaults to 0 or never expire. name This is the only mandatory argument. This is the name that will used to construct the user id. email Optional email portion of the user id. comment Optional comment portion of the user id. passphrase The passphrase that will be used to encrypt the private key. Optional but strongly recommended. Example: $gpg->gen_key( algo => DSA_ELGAMAL, size => 1024, name => "My name" ); import_keys( [params] ) Import keys into the GnuPG private or public keyring. The method croaks if it encounters an error. It returns the number of keys imported. Parameters : keys Only parameter and mandatory. It can either be a filename or a reference to an array containing a list of files that will be imported. Example: $gpg->import_keys( keys => [ qw( key.pub key.sec ) ] ); export_keys( [params] ) Exports keys from the GnuPG keyrings. The method croaks if it encounters an error. Parameters : keys Optional argument that restricts the keys that will be exported. Can either be a user id or a reference to an array of userid that specifies the keys to be exported. If left unspecified, all keys will be exported. secret If this argument is to true, the secret keys rather than the public ones will be exported. all If this argument is set to true, all keys (even those that aren't OpenPGP compliant) will be exported. output This argument specifies where the keys will be exported. Can be either a file name or a reference to a file handle. If not specified, the keys will be exported to stdout. armor Set this parameter to true, if you want the exported keys to be ASCII armored. Example: $gpg->export_keys( armor => 1, output => "keyring.pub" ); encrypt( [params] ) This method is used to encrypt a message, either using assymetric or symmetric cryptography. The methods croaks if an error is encountered. Parameters: plaintext This argument specifies what to encrypt. It can be either a filename or a reference to a file handle. If left unspecified, STDIN will be encrypted. output This optional argument specifies where the ciphertext will be output. It can be either a file name or a reference to a file handle. If left unspecified, the ciphertext will be sent to STDOUT. armor If this parameter is set to true, the ciphertext will be ASCII armored. symmetric If this parameter is set to true, symmetric cryptography will be used to encrypt the message. You will need to provide a passphrase parameter. recipient If not using symmetric cryptography, you will have to provide this parameter. It should contains the userid of the intended recipient of the message. It will be used to look up the key to use to encrypt the message. The parameter can also take an array ref, if you want to encrypt the message for a group of recipients. sign If this parameter is set to true, the message will also be signed. You will probably have to use the passphrase parameter to unlock the private key used to sign message. This option is incompatible with the symmetric one. local-user This parameter is used to specified the private key that will be used to sign the message. If left unspecified, the default user will be used. This option only makes sense when using the sign option. passphrase This parameter contains either the secret passphrase for the symmetric algorithm or the passphrase that should be used to decrypt the private key. Example: $gpg->encrypt( plaintext => file.txt, output => "file.gpg", sign => 1, passphrase => $secret ); sign( [params] ) This method is used create a signature for a file or stream of data. This method croaks on errors. Parameters : plaintext This argument specifies what to sign. It can be either a filename or a reference to a file handle. If left unspecified, the data read on STDIN will be signed. output This optional argument specifies where the signature will be output. It can be either a file name or a reference to a file handle. If left unspecified, the signature will be sent to STDOUT. armor If this parameter is set to true, the signature will be ASCII armored. passphrase This parameter contains the secret that should be used to decrypt the private key. local-user This parameter is used to specified the private key that will be used to make the signature . If left unspecified, the default user will be used. detach-sign If set to true, a digest of the data will be signed rather than the whole file. Example: $gpg->sign( plaintext => "file.txt", output => "file.txt.asc", armor => 1, ); clearsign( [params] ) This methods clearsign a message. The output will contains the original message with a signature appended. It takes the same parameters as the sign method. verify( [params] ) This method verifies a signature against the signed message. The methods croaks if the signature is invalid or an error is encountered. If the signature is valid, it returns an hash with the signature parameters. Here are the method's parameters : signature If the message and the signature are in the same file (i.e. a clearsigned message), this parameter can be either a file name or a reference to a file handle. If the signature doesn't follows the message, than it must be the name of the file that contains the signature. file This is a file name or a reference to an array of file names that contains the signed data. When the signature is valid, here are the elements of the hash that is returned by the method : sigid The signature id. This can be used to protect against replay attack. date The data at which the signature has been made. timestamp The epoch timestamp of the signature. keyid The key id used to make the signature. user The userid of the signer. fingerprint The fingerprint of the signature. trust The trust value of the public key of the signer. Those are values that can be imported in your namespace with the :trust tag. They are (TRUST_UNDEFINED, TRUST_NEVER, TRUST_MARGINAL, TRUST_FULLY, TRUST_ULTIMATE). Example : my $sig = $gpg->verify( signature => "file.txt.asc", file => "file.txt" ); decrypt( [params] ) This method decrypts an encrypted message. It croaks, if there is an error while decrypting the message. If the message was signed, this method also verifies the signature. If decryption is sucessful, the method either returns the valid signature parameters if present, or true. Method parameters : ciphertext This optional parameter contains either the name of the file containing the ciphertext or a reference to a file handle containing the ciphertext. If not present, STDIN will be decrypted. output This optional parameter determines where the plaintext will be stored. It can be either a file name or a reference to a file handle. If left unspecified, the plaintext will be sent to STDOUT. symmetric This should be set to true, if the message is encrypted using symmetric cryptography. passphrase The passphrase that should be used to decrypt the message (in the case of a message encrypted using a symmetric cipher) or the secret that will unlock the private key that should be used to decrypt the message. Example: $gpg->decrypt( ciphertext => "file.gpg", output => "file.txt" passphrase => $secret ); BUGS AND LIMITATIONS
This module doesn't work (yet) with the v2 branch of GnuPG. AUTHOR
Francis J. Lacoste <francis.lacoste@Contre.COM> COPYRIGHT
Copyright (c) 1999,2000 iNsu Innovations. Inc. Copyright (c) 2001 Francis J. Lacoste This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. SEE ALSO
GnuPG::Tie Alternative module: GnuPG::Interface gpg(1) perl v5.14.2 2012-04-15 GnuPG(3pm)
All times are GMT -4. The time now is 09:11 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy