The gpgme tag has no wiki summary.
4
votes
2answers
3k views
Best way to soft brute-force your own GPG/PGP passphrase?
I created a nice long passphrase, used it a few times, then forgot it ;) The twist is, I know the general theme and probably almost all of the characters. The perfectionist in me doesn't want to ...
2
votes
2answers
522 views
Using passphrase callback in ruby gpgme
I am using ruby gpgme gem (1.0.8). My passphrase callback isn't called:
def passfunc(*args)
fd = args.last
io = IO.for_fd(fd, 'w')
io.puts "mypassphrase"
io.flush
end
opts = {
...
1
vote
1answer
70 views
how to bypass pinentry (passphrase screen) while decrypting a file using gpgme
I am trying to decrypt a file from the server where I have the required public key of that server. The keyring has a password protection and so when I try to decrypt a file, it asks me for a ...
1
vote
2answers
232 views
View .gpg file content
I'm writing a C application and I wanna know if there is a way to view .gpg file content (then the encrypted content). The .gpg file in question concerns a simple .txt file that I encrypted.
I know a ...
0
votes
1answer
78 views
Help with gpgme_passphrase_cb_t
I'm working with GPGME...I need an example on use of gpgme_passphrase_cb_t and gpgme_set_passphrase_cb function because I don't understand how to create a gpgme_passphrase_cb_t.
0
votes
2answers
291 views
Using the gpgme library from .NET?
This question is actually two questions:
How to use the gpgme library in Windows?
Are there bindings for .NET available somewhere? (If not, I guess I can make my own.)
EDIT: Solution found: ...
0
votes
2answers
274 views
Problem decrypting PGP in python with pyme without user interaction
I am trying to decrypt messages using pyme (a python wrapper from gpgme). It works fine if I type in the password when it prompts but I cannot get the passphrase callback to work. Here is the code
...
0
votes
1answer
315 views
how do I sign data with pyme?
I just installed pyme on my ubuntu system. it was easy (thanks apt-get) and I can reproduce the example code (encrypting using a public key in my keyring). now I would like to sign some data and I ...
0
votes
2answers
575 views
Python Pyme: Simple decryption without user interaction
I am using Pyme to interface with GPGME and have had no problems signing / encrypting. When I try to decrypt, however, it always brings up the prompt for the passphrase despite having set it via a ...