The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
29 views

Proxy re encryption

I'm trying to implement proxy re encryption(http://cs.jhu.edu/~susan/600.641/scribes/lecture17.pdf) but i cant find the code anywhere or a example of proxy re encryption based on elgamal algorithm. ...
1
vote
0answers
101 views

Elgamal Encryption & decryption

if a game is sending encrypted data by Elgamal and u have (p g y ) while game should send a=g^k mod p and b=(msg)*y^k mod p,so u gonna recieve (a,b) and the recieved msg is in hex form such w/e like ...
3
votes
2answers
702 views

Getting GPG Decryption To Work In Java (Bouncy Castle)

let me start by saying I'm extremely new to all of this. What I am trying to do is to use gpg from within Java in order to decrypt an encrypted file. What I've done successfully: Had a colleague ...
0
votes
1answer
348 views

ElGamal C# implementation

I want to implement ElGamal encryption. I need this for my school work but when I want do decryption the last step is always 0 cause of (b/Math.Pow(a,x))%primenumber is always less then 1. Here is ...
0
votes
1answer
663 views

Generate dsa/elgamal key pair with bouncy castle that imports in GPG without eror

I have created a small program to generate a DSA / El Gamal PGP Key Ring using Bouncy Castle 1.47 API. The key generation goes real well without an error. I export the private and public key to a file ...
0
votes
0answers
62 views

How can i use string instead of file when I want to decrypte with elgamal?

I want to use elgamal alg. but when i use that it must be with file not string. Like this: public static String decrypt(String encrypted_sql){ File f = new File(sPrFile); ...
3
votes
1answer
127 views

Has anybody Implemented ElGamal using OpenSSL or even inside?

I find out that OpenSSL hasn't implemented ElGamal. However, currently I need to use OpenSSL to implement ElGamal. I just wonder if anybody had done it before. And that may help me to reduce my work ...
0
votes
1answer
116 views

Encrypted RMI communication without using certificates

I need to make two java proceses on the same host to communicate securely. I do not need to authenticate the processes so I don't want to use certificates. I want to generate a random key in the ...
1
vote
0answers
277 views

Elliptic curve ElGamal Java implementation

Is there a simple implementation (using Java BigInteger) of ElGamal elliptic curve cryptosystem with key generation, encryption and decryption functions; one that could be used to explain to ...
2
votes
1answer
276 views

Data loss when encrypting and decrypting using libgcrypt and Elgamal

I am using Libgcrypt with Elgamal to encrypt a block of bytes, and I am having 2 problems: When I do not use padding and my block of bytes starts which an zero byte, I lose the first byte during ...
1
vote
1answer
592 views

Elgamal Or RSA Encryption in Bouncy castle is not taking large input [duplicate]

Possible Duplicate: RSA Encryption Problem [Size of payload data] I need a system in which I generate digital signatures on some data using say ECDSA in bouncy castle. & then use the ...
2
votes
0answers
301 views

Bouncy castle error: Unable to cast object of type RsaPrivateCrtKeyParameters to type ElGamalKeyParameters

I am having difficulties with decryption of a GPG file using Bouncy Castle. I have the encrypted file and I have a private key and the password for the private key. I can successfully decrypt the file ...
1
vote
1answer
100 views

ElGamal on SmartCards

I was wondering if a smartcard/Javacard is able to perform ElGamal cryptography? Is it implemented anywhere, i.e. is there an API that can be used for such purposes? Cheers!
4
votes
0answers
579 views

Free implementation of Elgamal

I'm looking for free implementations of the Elgamal encryption algorithm. As far as I can see, even though it's a widely known algorithm, there seems to be only two free implementations: libgcrypt ...
4
votes
2answers
646 views

El Gamal faster than RSA with the same modulus length?

Why is El Gamal faster than RSA with the same modulus length?
2
votes
2answers
645 views

What are good and safe keylength for El-Gamal?

What are good keylength for El-Gamal?
2
votes
2answers
3k views

How to encrypt/decrypt text files using ElGamal

I'm trying to encrypt and decrypt text files using ElGamal for my study but it seems that I could not make it work correctly. I have a group of text files ranging from 1kb - 1mb, and I'm using 512bit ...
1
vote
4answers
750 views

Why doesn't my implementation of ElGamal work for long text strings?

I'm playing with the El Gamal cryptosystem, and my goal is to be able to encipher and decipher long sequences of text. El Gamal requires the plaintext to be an integer. I have turned my string into ...
1
vote
1answer
755 views

How can i convert a string into a ZZ number?

I'm using the NTL library to implement ElGamal encryption/decryption algorithm. I've got it to the point that it's working but the algorithm wants the message to be converted to integers so it can be ...