Tagged Questions

0
votes
3answers
267 views

OpenSSL and generating CSRs at client side

I need a favour from you. My infrastructure is IIS 6.0 and windows server 2003. I need to investigate the use of OpenSSL and the construction of media that can be sent to end users, allowing them to …
0
votes
2answers
2k views

How to create a private key for iPhone Distribution Certificate?

In iPhone Developer Program Portal, there's a video to demonstrate how to create a development certificate and assign a private key Now I have finished the development process and starting to …
0
votes
1answer
16 views

Is there a way to check with calls into my web-application API came from my distributed client???

Hi, Is there a way to check with calls into my web-application API came from my distributed client??? That is if I have both a thick client (windows forms client say) and the server side web …
0
votes
2answers
71 views

What are some efficient ways to generate challenge/response for a backdoor entry scheme?

We have a system that uses password authentication to access a database, the usernames and encrypted passwords are stored in the database. when a user forgets their password, (or the administrator …
0
votes
2answers
117 views

How to import PKCS#8 RSA privateKey (created by OpenSSL) in C#

I'm trying to find a way to read a privateKey created using OpenSSL PKCS#8 RSA in C# without use external library. Someone know how can i do this?
2
votes
3answers
165 views

How to communicate AES initialization Vector to client for hybrid cryptosystem.

I need to implemented security for client-server communication. I have implemented the following hybrid cryptosystem: http://en.wikipedia.org/wiki/Hybrid%5Fcryptosystem To encrypt a message addressed …
1
vote
2answers
528 views

Encrypting with RSA private key in Java

I'm trying to encrypt some content with an RSA private key. I'm following this example: http://www.junkheap.net/content/public_key_encryption_java but converting it to use private keys rather than …
2
votes
4answers
163 views

Protect private key in Qt application

I have a Qt application written in C++ that uses a SSL-connection (QSslSocket) with another application for extra security. However, the application has a private key embedded in it. With …
0
votes
2answers
173 views

Loading my private key for use in git on Mac

I'm trying to use git on a Mac (I'm a Mac newbie.) I obviously have to load my private key. On my Windows machine I just use pageant and msysgit. How do I load my private key into git on the Mac?
1
vote
1answer
211 views

RSA decrypt with Java

I am trying to decrypt a string with RSA. It was encrypted in C# on the iPhone and I have the private key. This seems like a silly problem, but all of the examples I have seen show generating the …
0
votes
1answer
94 views

I need to sign a binary stream with a certificate

I basically need to create a self signed certificate and then sign a binary stream with it to create a signature. I tried searching Google but i can't seem to get the right keywords for related …
2
votes
3answers
769 views

Encrypting a BouncyCastle RSA Key Pair and storing in a SQL2008 database

I have a function that generates a BouncyCastle RSA key pair. I need to encrypt the private key and then store the encrypted private and public keys into separate SQL2008 database fields. I am using …
0
votes
0answers
115 views

SSL Cert with exportable private key

Hi, I got a trial server certificate from completeSSL with the plan to use it to sign my Azure production site. It turns out that I need a certificate with an exportable private key ... and my new …
1
vote
1answer
154 views

Internet Explorer and client authetication

I would like to have Intenet Explorer allow me to choose an identity when connecting to a client-authentication enabled web server. Currently I have my Tomcat web server configured to use client …
0
votes
0answers
246 views

Clientside CSR generation using openSSL

Hello All, I am sending an openSSL script to the client along with my companies PublicKey. The idea is, client has to run a batch file which it will run some openSSL commands in the background and …