pem/bio/evp help

2001-04-09 Thread Gila Monstre
Hi! I've been pouring over the online documentation somewhat, but I'm afraid that I've been running in circles and I'm hoping that someone can give me a clue or point me in the right direction. My ultimate goal is to get the openssh client to authenticate to a server using a private key (DSA fo

Re: pem/bio/evp help

2001-04-09 Thread Kenneth R. Robinette
Date sent: Mon, 09 Apr 2001 14:52:57 -0400 From: Gila Monstre <[EMAIL PROTECTED]> Organization: Gemplus To: [EMAIL PROTECTED] Subject: pem/bio/evp help Send reply to: [EMAIL PROTECTED] Gila Convinc

Re: pem/bio/evp help

2001-04-10 Thread Ferdinando Ricchiuti
Hello, BIO is an I/O abstraction. To create a new BIO use the BIO_new() function. You have to pass a method that is used to define the BIO type. In your case you have to create a Memory BIO to read from your char*. BIO *mybio=BIO_new(BIO_s_mem()); this method allows some specific function to s