Tagged Questions
4
votes
2answers
63 views
RSA Encryption process in PHP
In an effort to understand the asymmetric encryption process I outlined a simple PHP script to encrypt and decrypt simple numbers. I noticed that after a while given numbers to encrypt/decrypt the ...
1
vote
1answer
30 views
Problems with signature — openssl_sign
In JAVA code (BouncyCastle lib) we create signature using private key. Code below.
We have a task to get the same signature using PHP --- using the same private key.
Try to use PHP code like
...
1
vote
0answers
42 views
Look for a step by step Domain-Key Signature creation guide for PHP
So, I've lost some sleep, I've scoured the net and I've found libraries, explanations, etc., but I have not found a step by step guide to create a Domain-Key Signature to be added to an email header ...
0
votes
1answer
36 views
gmp_pow() will not accept a GMP number for exponent
I am playing around in PHP with RSA and big numbers. I need to be able to take numbers to the power of an exponent that has ~256 to ~512 bytes using gmp_pow(). Does anyone have any suggestions?
0
votes
1answer
95 views
RSA : Encrypt in Javascript and Decrypt in Php
I've found many websites with something related to the subject line (few are in stackoverflow.com itself). However, unfortunately I couldnt get what I want.
What I want is - I've a public-private key ...
-3
votes
1answer
88 views
PHP encryption/decryption using RSA differs between PHP and Java [closed]
I want to create script which encrypt the plain text using public key and decrypt using private key. I used phpseclic library but the encryption cipher text shows this:
§ñŽÔÌpn9ˆéí>piKÈ¡.
1
vote
0answers
53 views
RSA implementation with PHP
I'm trying to program an implementation of the RSA algorithm. For that I need to compute modular exponentiations with very big numbers in PHP.
For example: c^d Mod n, where c,d,n are about 1024 bits ...
2
votes
2answers
160 views
Encryption between web service users
I've got a web service (similar to an online store) where users save their data. I need to encrypt that data, so that only managers and users themselves could read that data.
Every manager and user ...
0
votes
3answers
210 views
C# encrypt PHP decrypt using RSA
I'm trying to build a simple RSA encryption decrpytion process between C# and PHP.
I've accomplished encrypting in PHP and decrpyt in C# with phpseclib(http://phpseclib.sourceforge.net/). However I'm ...
1
vote
1answer
130 views
Trouble with RSA using phpseclib in PHP
I'm trying to use the RSA implementation in phpseclib, I thought it would be easier to do the code once in a function and re-use the function.
When I've tried texting the code I get a error saying ...
0
votes
1answer
164 views
build public key PEM file with existing modulus and exponent in php with openssl library
I have public's key's modulus and exponent. Can I generate the public key with openssl api in php ? I've read the http://php.net/manual/en/ref.openssl.php but there seems no function that archive ...
0
votes
1answer
90 views
Calling openssl_pkey_get_private() on just created private key via Copy and Paste
The following code creates a public/private key pair, opens the key using openssl_pkey_get_private() function successfully and emits the key pair to the display. A previously created key is then copy ...
5
votes
5answers
653 views
Encryption PHP, Decryption Java
I have a web-service in php that generates a keypair to encrypt a message, and one application in java that retrives the privatekey and decrypt the message.
For php I'm using ...
0
votes
1answer
149 views
Decryption of encrypted text in PHP
I am trying to decode encrypted data in PHP, however the return value keeps coming back as null.
The data to be decrypted comes into the PHP file as a data argument.
$dataArg1 = $_REQUEST["data"];
...
1
vote
2answers
36 views
Convert a javascript private key to one usable in PHP
How do I convert the JavaScript notation:
// JavaScript Code
function decrypt()
{
// key = [ [d], [p], [q] ];
var key=[[119141457,185046352,2676254],[40632295,2191],[122927507,2595]];
...
0
votes
1answer
135 views
phpseclib is using openssl during create key?
I was under the impression that phpseclib didn't need openssl however when I try the following code...
$rsa = new Crypt_RSA();
$key = $rsa->createKey();
I get the following error as IF it is ...
5
votes
2answers
320 views
RSA encryption in Java, decrypt in PHP
Assume I have the following Java code to generate a Public-private keypair:
KeyPairGenerator generator = KeyPairGenerator.getInstance ("RSA");
SecureRandom random = ...
1
vote
2answers
1k views
Decryption with openssl not working
Here is my php script
<?php
$pubfile = fopen("public_key.pem", "r");
$public = fread($pubfile, 8192);
fclose($pubfile);
openssl_get_publickey($public);
$prifile = fopen("private_key.pem", "r");
...
0
votes
1answer
75 views
Android KeyPairGenerator + php openssl_public_encrypt
I have a client (android device) that generates a public+private key pair. It sends the public key to a server and the server should encrypt some data using the public key and return it so the client ...
0
votes
1answer
139 views
How I can encrypt message in Java, given PHP Public key (PHPSeclib)? [closed]
I have a public Key from PHP as XML format (phpseclib) I want encrypt the data in JAVA, How I can do this, I am PHP programmer I want to test RSA in different environment.
0
votes
1answer
60 views
Verify php certificate in node.js
I have the following php function which verifies a certificate:
<?php
function raven_check_sig($data, $sig) {
$key_path = '/path/to/pubkey.crt';
$key_crt = file_get_contents($key_path);
...
3
votes
2answers
143 views
What is the best way to store secure user data in php sessions?
I'm coding a private message system in PHP for secure encrypted communications.
Every time a user registers an account, I'll create a new RSA private key using phpseclib and will encrypt it in AES ...
3
votes
1answer
183 views
Android and PHP server: encrypt and decrypt data
I have an Android application that communicates with my own server. Since we don't have https, I want to implement my own data encryption. The server is implemented in PHP.
I wanted to use AES, but ...
-1
votes
1answer
53 views
Basic RSA theory: how does the server “remember” the private key [closed]
So far, my understanding of a password transfer using a public key algorithm is as follows:
AJAX call to PHP page retrieves generated public key
Password is encrypted using the public key
AJAX call ...
-1
votes
1answer
89 views
Modular multiplicative inverse program doesn't work [duplicate]
Possible Duplicate:
Translate program from Python to PHP
This is a follow up to this question, where I asked for help with translating a program from Python to PHP. I was refused, which is ...
0
votes
1answer
43 views
Native RSA functions in PHP
I know it's possible to make the keys for RSA using a coded process, but does PHP have any native functions that help with key generation?
1
vote
1answer
147 views
Securely generate RSA keys for a user
I have a user system that manages the users attributes, hashed salted password, an RSA Public Key and an RSA Private Key encrypted (by actual salt + password).
The RSA keys are generated during the ...
0
votes
3answers
378 views
RSA iOS encrypt & PHP decrypt
As referring to this link http://blog.iamzsx.me/show.html?id=155002, I generated a pair of key using
$ openssl req -x509 -out public_key.der -outform der -new -newkey rsa:1024 -keyout ...
1
vote
1answer
263 views
Encrypting in Javascript, decrypting PHP using PKCS#1
I have trying to do encryption/decryption in Javascript/PHP using PKCS#1.
I have the following variables:
e: Public exponent (for encryption)
d: Private exponent (for decryption)
n: modulus
I am ...
0
votes
2answers
197 views
PHPSecLib Password protected RSA and user authentication
I'm trying to connect to a SSH2 server through SFTP in PHP using PHPSecLib. But my problem is that, the server requires a key file that is password protected but also username and password. It seems ...
1
vote
0answers
299 views
Encrypting in Java and decrypting in PHP with Phpseclib
Edit 2:
Problem has been solved. I didn't understand how the loadkey function in php was supposed to work and I mistakenly assumed it would read a key file (it does not). The solution was to read the ...
1
vote
1answer
78 views
php keygen and pki
I have searched for almost an hour. What I want is a php implementation that allows you to generate a PGP key pair and to generate an encrypted message based on that. Also assuming you have the ...
0
votes
0answers
84 views
Speed up power and mod function for large numbers in PHP [closed]
I am implementing an RSA encryption system. It works fine, the only problem is, that the encrpytion process (which uses the mod and power methods) takes ages, sometimes the page times out. I am ...
0
votes
2answers
107 views
Quicker way to calculate RSA private key in PHP
Hi I am required to do my own implementation of the RSA algorithm in php. The only thing I have a problem with is the part that calculates the private key. The way my function works is by getting a ...
1
vote
1answer
177 views
Converting JavaScript RSA Function into a PHP one
I've got a Problem with converting a JS-based RSA File into PHP.
JavaScript:
Main File:
var RSAPublicKey = function($modulus_hex, $encryptionExponent_hex) {
this.modulus = new BigInteger( ...
1
vote
2answers
331 views
PhpSeclib <-> BouncyCastle RSA
I generated on server side a pair public/private keys using phpseclib like
include 'Crypt/RSA.php';
$rsa = new Crypt_RSA();
$rsa->setPrivateKeyFormat(CRYPT_RSA_PRIVATE_FORMAT_PKCS1);
...
0
votes
1answer
116 views
RSP encryption with my own key file
Ok so i am VERY new to cryptography
I want to encrypt a string using RSA. i have found many examples but most of them generate their own public/private keys or they use some other key format like ...
0
votes
1answer
170 views
phpseclib fails with verifying signature
I don't know what I am doing wrong or maybe I just haven't thought it through. I want to sign some text and verify it immediately after that. I am using the RSA signature algorithm from phpseclib. It ...
2
votes
1answer
140 views
openssl key generation - php. how to get all the values?
I am trying to implement the rsa encryption & decryption by using OPENSSL. Please have a look on the code given below and let me know, if it has any problem.
<?php
function pr($val){
echo ...
0
votes
0answers
115 views
openssl public, private key generation in hexcode format in php
I need a method for getting public key and private key generation of RSA using openssl method.I am using php.In normal case, I am getting the public encryption exponent as null while using the openssl ...
-1
votes
5answers
3k views
Encrypt in Javascript, decrypt in PHP, using public-key cryptography
I'd like to encrypt in JavaScript, decrypt in PHP, using public-key cryptography. I've been trying to find libraries that can accomplish this, but am having issues.
I am currently looking at ...
-7
votes
1answer
312 views
convert java to php [closed]
Hi i need to generate RSA signatures using SHA-256 in php.
The java code from here: developers.google.com/storage/docs/accesscontrol
import org.apache.commons.codec.binary.Base64; // From Apache ...
0
votes
1answer
237 views
Veryifying RSA signature using openssl_public_decrypt failing for .NET signed string
I am attempting to use X509Certificate2 and RSACryptoServiceProvider together with PHP OpenSSL commands to implement two-way mutual security.
It all seems to be fine sending a message from PHP to C#, ...
0
votes
1answer
186 views
Public/Private Key Based Licensing
I want to add licensing to my Delphi application.
This is the flow i have in mind :-
User sees the licensing screen when the program is run and is not licensed/activated.
He clicks export, which ...
0
votes
2answers
171 views
How can I encrypt and decrypt a small text using rsa in php?
How can I encrypt and decrypt a small text using rsa in php without open ssl? Both private and public keys are static and in the same program.
0
votes
2answers
575 views
How to acquire Modulus and Exponent from existing RSA Public Key in PHP OpenSSL Library
There are Private Key, Public Key, x509 Pem file.
I want to acquire information about RSA Public Key from these files.
I can confirm it by the shell script as follows.
$ openssl x509 -in cert.pem ...
0
votes
1answer
441 views
RSA in javascript different from PHP
I have a problem with RSA now.
I have same modulus and exponent in Javascript and PHP., both use PKCS#1
in javascript, I use http://www-cs-students.stanford.edu/~tjw/jsbn/rsa.js
var rsa = new ...
0
votes
0answers
162 views
Encrypt the string using Crypt RSA [closed]
I am encrypting the string Crypt RSA PHP( phpseclib ) modules. I am able do the encryption and decryption successfully. But the encryption string comes with junk characters, whether can I get the ...
0
votes
0answers
173 views
php sign data with RSA and verify in java
I'm having a really hard time getting this to work; I've looked at an tried nearly all the examples and suggestions on stackoverblown and elsewhere, but nothing seem to work. I need to sign some data ...
2
votes
3answers
909 views
RSA decryption using private key
I have a private key and encrypted string. Actually string has been encrypted using .NET modules. Now I need to decrypted the string . I tried in php but it throws me following error
...


