How to create a digital signature in Puppy?

Using applications, configuring, problems
Post Reply
Message
Author
Raj
Posts: 75
Joined: Tue 17 Dec 2013, 15:44

How to create a digital signature in Puppy?

#1 Post by Raj »

Friends,

After a long time......Hope all are fine.

I need a little expertise from you. A digital signature is needed for a small institution in my area for a govt. donation. I am requested to create it, if possible.

Any idea about how it may be created on puppy? Any special application requirements?

Thanks & Regards in advance.

Raj

User avatar
Semme
Posts: 8399
Joined: Sun 07 Aug 2011, 20:07
Location: World_Hub

#2 Post by Semme »

Raj, so long as GnuPG's installed --read here. It's not tough, but requires hands-on practice.

Yeah well.. you got questions >> shoot away. Still, I wanna hear you tried.
>>> Living with the immediacy of death helps you sort out your priorities. It helps you live a life less trivial <<<

boolean

#3 Post by boolean »

gpg2 --gen-keys >>>[generate keypair]

gpg2 --list-keys

gpg2 --export --armor --output $key.pub


gpg2 --clearsign --output $signed_file $raw_file >>>[signed raw file]

gpg2 --sign --output $signed_enc_file $raw_file >>>[signed encrypted file]

gpg2 --detach-sig --output $signature $raw_file >>>[signature only]

Post Reply