pgp Questions

1

<?php $res = gnupg_init(); gnupg_clearsignkeys($res); $key = get_pub_key();// Value pasted below $publicImp = gnupg_import($res, $key); gnupg_addsignkey($res, $publicImp['fingerprint']); e...
Koons asked 8/11, 2019 at 13:33

1

Solved

I am making this question because I didn't find a clear explanation about the difference between these 3 gpg options: gpg --sign file # produces file.gpg gpg --clear-sign file # produces file.asc ...
Jung asked 26/7, 2019 at 16:14

2

Solved

What is the format of the public_key field returned from GitHub REST API v3 for GPG Keys? For example, the command curl -v -H "Accept: application/vnd.github.cryptographer-preview" https://api.git...
Ganny asked 4/9, 2017 at 0:33

2

Solved

I want to use PGP encryption to encrypt a CSV files, I am generating through a PHP script and then send that file to client via email. Client will give me the encryption key, which I need to use fo...
Flunkey asked 12/4, 2013 at 11:4

1

Solved

Since GnuPG 2.1 (https://www.gnupg.org/faq/whats-new-in-2.1.html), private keys of GnuPG are stored in the private-keys-v1.d subdirectory. After experimenting with key creation etc., I found that I...
Airliah asked 20/12, 2018 at 13:43

1

Solved

I've created a private PGP key and then added a photo to it in my Ubuntu's Passwords and keys manager. I can see the photo there, but is there any way to view it from shell and export it as image f...
Maloriemalory asked 3/1, 2019 at 19:21

1

I just need to trust a bunch public keys to use it with pass. Unfortunately I didn't find an easy way to trust all the public keys I've stored locally. The procees I found it its quite expensive in...
Bellyache asked 21/12, 2018 at 14:49

2

I installed Git for Windows including Git Bash on Windows 10 and Gpg4win. By default, I had to re-import all keys I created via Kleopatra into the GPG version built into the Git Bash, and it won't ...
Seriema asked 28/10, 2017 at 17:38

2

Solved

I'm looking for an implementation of Bouncy Castle PGP 'sign and encrypt'. Ideally in one operation, if that makes any difference. I've taken the encrypt example and the signing example and tried...
Sanford asked 6/12, 2017 at 23:2

2

I have multiple signing subkeys on my main PGP key, so that I have one for my laptop, and one for my desktop. However, it seems like both computers try to use the key for my laptop, which was creat...
Yvette asked 20/9, 2017 at 19:47

1

Solved

I am trying to print a PGP public key in an ASCII armored encoding using Go's openpgp/armor package. The output I would expect: -----BEGIN PGP PUBLIC KEY BLOCK----- <base64 encoded bytes of p...
Guddle asked 22/2, 2018 at 23:51

2

I'm trying to write a sample decryptor for GnuPG encrypted files in JavaScript using openpgp.js. So I tried it naively without even asking if it is even possible. I made the following page. popup...
Eden asked 13/11, 2015 at 8:1

6

I am trying to install the Ruby Version Manager( RVM) on my CentOS 6.6 machine. I followed the instructions on the home page at https://rvm.io/rvm/install When I run this command : gpg --keyser...
Femoral asked 23/3, 2015 at 18:58

3

Solved

I'm currently trying to add PGP signing support to my small e-mail sending script (which uses Python 3.x and python-gnupg module). The code that signs message is: gpg = gnupg.GPG() basetext = bas...
Flintlock asked 8/5, 2012 at 10:32

1

I've been trying to get gpg-agent to work as an ssh agent, but without any luck. I'm running the KDE version of Linux Mint (Sarah). First, I disabled the built-in ssh agent in /etc/X11/Xsession.op...
Terisateriyaki asked 2/12, 2017 at 11:22

1

Solved

I have a PGP file named 'filename.txt.pgp' that I need to decrypt. When I run decryption from command-line it asks me only for the password. I use gpg command: gpg filename.txt.pgp The password ...
Scifi asked 8/12, 2017 at 13:47

3

Solved

If I sign a git commit with an OpenPGP key that has an expiration date, what does that mean for people looking at that commit after the expiration date? Should all keys used for commit signing like...
Cryolite asked 20/7, 2016 at 17:14

1

Solved

I've been working on a task to upload a file to a partner's ftp site using a public PGP key in an asc file he sent me. The file looks like this (with the bulk of the key censored out): -----BEGIN...
Placia asked 3/10, 2017 at 21:20

3

Solved

I'm trying to write a parallel compress / encrypt backup script for archiving using GNU parallel, xz and GnuPG. The core part's of script is: tar --create --format=posix --preserve-permissions --s...
Mohammedanism asked 17/9, 2017 at 5:33

1

Solved

I've used my OpenPGP key to sign a git commit, but it shows up as "Unverified" on github: https://github.com/cweiske/jsonmapper/commits/master The usage flags for the key that signed this don't ...
Eddaeddana asked 13/7, 2017 at 19:16

2

Solved

I want to encrypt an xml file and I am using gpg4win (kleopatra). Using the kleopatra interface I set an option to produce files with extension pgp instead of gpg which is the default extension. I...
Tamaru asked 20/4, 2016 at 6:58

3

I'm trying to decrypt and verify a PGP message using the java BouncyCastle libraries, but am running into issues, complaining about premature ends of PartialInputStream. I know the encrypt works f...
Chamade asked 4/10, 2013 at 4:21

2

I am using bouncycastle (JAVA) for signing, encryption, decryption and signatures' verification in implementation of SSO. I have raw PGP public and private keys and I need to store them in Java key...
Pragmatism asked 5/4, 2012 at 13:55

4

Solved

I'm looking to do some client-side PGP encryption in Javascript. I've found some GPL library scattered on the web, but for obvious reason, I cannot use that code due to licensing issues. I'm looki...
Mallett asked 10/5, 2010 at 12:25

1

I have a utility that is using the BouncyCastle.Crypto dll (version 1.7.4, runtime version 1.1.4), in order to decrypt a file that is given to it by another system. I just updated the pgp key (and...
Iiette asked 3/12, 2015 at 1:5

© 2022 - 2025 — McMap. All rights reserved.