0
votes
3answers
34 views

Is there any library for javascirpt to read .cer file and get key from it?

I want to encrypt data on client side and web application take .cer file from user local computer.After take I will use keys to encrypt data but I want to library or any way to read .cer file I ...
-3
votes
1answer
25 views

RSA encryption theory - modulo theory [closed]

I'm a bit mathematically challenged and have been working on the RSA cipher (good start). I can find the public and private keys and know how to work do modulo operations on a calculator. The ...
-1
votes
0answers
17 views

Which algorithm encrypt byte array with public key (modulus , exponent) in c# [closed]

I want to encrypt array byte for example {0x1, 0x2, 0x3, 0x4, 0x5, 0x6, 0x7, 0x8} I want to encrypt the array with public key (modulus AND exponent) Please help me
0
votes
1answer
21 views

Questions about RSA padding algorithm

So I have this JavaScript encrypted library which I will be using for a chrome extension that encrypts text strings in RSA then sends it to my server, However I noticed that it uses PKCS#1 (type 2) ...
-6
votes
0answers
36 views

How to encrypt the a string with a public key? [closed]

I want to encrypt the bytes of a string in c# with a modulus and an exponent. Why is there a different result from RSACryptoServiceProvider in C#
4
votes
2answers
62 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 ...
2
votes
1answer
58 views

Encrypt a DSA private key with RSA public key

I want to encrypt the DSA secret key with the RSA public key using java. However, when I do so, I get this error: javax.crypto.IllegalBlockSizeException: Data must not be longer than 245 bytes at ...
0
votes
0answers
26 views

Windows Phone 8 RSA Encryption

Hi i am trying o generate my public key for my RSA 4096 encryption in my windows phone 8 ecryption app i am using this method: RSACryptoServiceProvider rsaProvider = new ...
1
vote
0answers
51 views

Encrypt with Cryptico.js, Decrypt with OpenSSL

I am creating a public/private key on the server, sending the key to the JavaScript client where it encrypts a users password. The client sends the password to the server, and the server uses the ...
0
votes
1answer
32 views

Openssl CMS encrypt in ruby

I have a task which requires encrypting a big chunk of data in ruby. Encryption should be done as follows. Generate a random key. Encrypt the data with generated random key and in AES_256_CBC ...
0
votes
1answer
64 views

RSA Encryption not working in java

I am working on the RSA algorithm and have made some progress but it is not working. I have the following code. public class RSA { public static void main(String args[]) { String ...
0
votes
0answers
34 views

Javascript RSA-OAEP Encryption [closed]

I'm using a Javascript library, https://github.com/tao-software/jsrsa for doing RSA Encryption/Decryption. It works very well except that it does not provide a way for doing RSA-OAEP encryption (I ...
-1
votes
1answer
19 views

Why is RSA using fixed point type numbers? [closed]

Why is RSA using fixed point type numbers? And not floating point type? Is it because the implementation of floating type arithmetics are to various? Is it because only the fixed point arithmetics ...
1
vote
1answer
45 views

Sanity check SSH public key? [closed]

I have asked users for their public "id_rsa.pub" ssh key, that I then place in "/home/theiraccount/.ssh/authorized_keys", so they can login to the server by SSH. I'd like to automate this process. ...
1
vote
1answer
86 views

In RSA encryption, how do I find d, given p, q, e and c?

I know I need to use the extended euclidean algorithm, but I'm not sure exactly what calculations I need to do. I have huge numbers. Thanks
1
vote
1answer
38 views

What determines the size of the message in the algorithm RSA?

I read about RSA algorithm and How it work? But I don't understand some think.I ask for plaintext length Why specify the size of the plaintext in the 64-bit algorithm rsa? also Is plaintext length is ...
-4
votes
1answer
84 views

Encrypt NSString With RSA [closed]

I have modulus ...
1
vote
3answers
139 views

Random Number Seed Generator: Using System On Time

I'm trying to understand why this code is a security flaw. From my understanding, it is not safe to generate a random number seed using the system time when the program is turned on, but how is that ...
0
votes
1answer
43 views

How to access a MS SQL Server public key in Java

We are trying to encrypt a file using a RSA 2048 public key created directly in the MS SQL Server. These public keys can supposedly be queried with sys.asymmetric_keys view. We don't really have ...
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 ...
0
votes
0answers
35 views

kSecPaddingPKCS1 or kSecPaddingPKCS1SHA1 are not supported on server?

I'm trying to decrypt on my server (with SSL https okay) and get this error: rsa routines: RSA_padding_check_PKCS1_type_2: block type is not 02 I believe it is error in the way I am encrypting in the ...
1
vote
2answers
114 views

How long would it take to factor a RSA 128-bit key length? [closed]

Ive done some research online and it seems to suggest the recommended key length for RSA encryption is 1024-bits. However i have a question as to how long would it take to factor a 128-bit RSA key ...
0
votes
1answer
100 views

Use preexisting RSA SSH keys to decrypt a text in C#

I have a pair of RSA public/private keys generated by the 'ssh-keygen' command in a Linux computer. There is a Ruby application in this Linux computer that encrypts a string using this public key, and ...
0
votes
2answers
311 views

RSA Implementation in C#

I am trying to implement the RSA Algorithm in C#. The code below works when p and q are small, but not when trying to replicate RSA-100 or greater where p and q are very large. For example when: p = ...
1
vote
1answer
99 views

Java Encryption with OpenSSL key

I have situation where I have generated a public/private key pair using OpenSSL for use with gdcmanon following the instructions listed on their website. Specifically, I used the following commands ...
0
votes
1answer
107 views

how to convert a BigInteger into a string of ascii

Was looking for some help on transforming a large on how to convert am large integer value into a a string of ascii characters; After doing some work with RSA encryption/decryption i decrypted this ...
0
votes
1answer
70 views

c# equivalent of “java.security.spec.RSAPublicKeySpec” and “java.security.PublicKey”

I'm developing a new version in c# of an existing java application. The existing application uses RSA encryption with java.security.spec.* and boncycastle api. I'm looking for equivalent code in c# ...
1
vote
0answers
40 views

Application “crashes” when i try to decrypt the CipherBuffer the second time

Hello i am trying to implement an iPhone app the takes notes and encrypts them and then decrypts them when you enter the correct PIN on a UIAlertView. When the Application loads for the first time i ...
0
votes
1answer
72 views

RSA Encryption in iPhone using existing Public Key and MOD

I have RSA Encryption implemented in Android using BouncyCastle API. I have Public Key and MOD which I want to use for iPhone app. The only thing I am concern with using RSA encryption is the ...
0
votes
0answers
90 views

RSA decryption knowing n,p,q and cipher only

I would like to decrypt a cipher in RSA. I have n,p, q and the cipher. I do not have e or d. I know that i should calculate k = (p-1)*(q-1). d = 1/e mod k and gcd(e,k) has to be 1. So, my question ...
0
votes
2answers
221 views

A way to do RSA “encryption” of padded SHA256 hash using command line openssl

I'm trying to come up with a one-liner solution using openssl, that will take in padded SHA256 digest of a message (256 bytes in this case, for RSA2048), and apply RSA "decryption" to the 256 byte ...
0
votes
0answers
56 views

Implement RSA_public_decrypt, or encryption verification, kernel mode

I want to check whether a string is encrypted by RSA algorithm or not. This encryption checker must implemented in Kernel mode and worse than that it has to write in Win XP. I investigate OpenSSL and ...
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
1answer
89 views

Is there any alternative to the map class in C++?

I'm making a simple RSA crypter in C++ and I have all the calculation algorithms done, but I ran into the problem of getting the text input and converting it into numbers so that I can Xor the numbers ...
0
votes
0answers
27 views

Encrypting Client Data: Advice Needed [closed]

I am trying to come up with a way of using encryption to achieve the security goals for a project I am working on. I'm looking for advice, comments or criticism on the solution I've come up with. ...
3
votes
2answers
254 views

Getting error java.lang.ArrayIndexOutOfBoundsException: too much data for RSA block

I have private pem key file, I am using that file for signing and encrypting the data. Signing works fine and I am also able to verify on another platform, but while encrypting the data, I am getting ...
1
vote
3answers
35 views

Alternative to RSA encryption in java

RSA encryption system with key size 1024 has a size limitation of 117bytes which can be used for encryption. This is for encrypting objects. Can any one suggest an alternative solution??
-1
votes
3answers
226 views

How to import a Public Key into RSA For decryption

This may seem like a stupid question but I have been searching for the last hour and a half. I have a message that is encrypted with a PRIVATE KEY of a RSA key pair. I have the PUBLIC KEY that I need ...
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
0answers
124 views

RSA in objective C for iPhone

I am trying to get asymmetric encryption working in a program... I started out using code from the Apple documentation site (Certificate, Key, and Trust Services Programming Guide, section on ...
0
votes
1answer
65 views

Unable to properly encrypt data in Javascript using jsbn

I am having trouble encrypting data in JavaScript using Tom Wu's jsbn library. I wind up with an encrypted data, however when I try and decrypt the data on PHP, openssl_private_decrypt returns false. ...
0
votes
1answer
371 views

rsa encryption decryption using c

I'm trying to write C code of RSA encryption and decryption using Open SSL. But I am not able to do so. I googled it but whatever code I got from internet it was out of my head. main function goes ...
1
vote
2answers
51 views

Standard format for digital signature

I want to make a javascript library for signing messages. I expect the format to be something like... --- BEGIN SIGNED MESSAGE --- This is a plain old message It goes on and on... --- BEGIN RSA OF ...
1
vote
1answer
733 views

Read RSA PrivateKey in C# and Bouncy Castle

I have successfully written to public and private key files with OpenSSL format. Files: -----BEGIN PUBLIC KEY----- MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCpHCHYgawzNlxVebSKXL7vfc/i ...
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
156 views

RSA encryption/decryption crashes on android 2.2 [duplicate]

i'm developing an android app. Unfortunately i have a compatibility problem. My source code works with firmware 4.1, but crashes with devices with firmware 2.2. The error seems to be a ...
4
votes
0answers
168 views

Problems outsourcing RSA encryption and decryption

i have a problem with RSA encryption and decryption. I'm developing in android and would like to outsource the RSA encryption and decryption. My source code worked well before i tried to outsource it. ...
4
votes
1answer
36 views

RSA Algorythm key generation

I'm currently struggling with RSA encryption algorythm. My problem is located at the public/private key generation ,here are my steps: 1. -Generate 2 prime numbers p, q with p > q and nbBits(p) ...
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 ...
1
vote
1answer
88 views

Why do I get different RSA encrypted files between Ruby and command-line OpenSSL?

I'm trying to test the interoperability of openssl when used in Ruby on one side, and on the command line on the other side. I generated a RSA certificate and extracted its public key this way: ...

1 2 3 4 5 10