libssl

Is libssl version 0.9.8e compatible with 0.9.7a?

I'm using a third party static library in my C++ project that has a dependency on libssl version 0.9.7a. Due to various reasons, the libssl version that my project used is 0.9.8e. Everything was working fine, until the third party made a recent change to their static library. I wasn't able to successfully compile my application when it ...

libssh + iPhone Implementation with multiple commands execution in sequence

Hi guys... It seems my questions are strange and i'm not getting enough help but I'm back. I've another strange question which needs to be solved in emergency. I'm developing an iPhone app. which uses libssh 2 for commands execution through iPhone over remote host. It's okay and working all methods and commands if i execute them in sin...

Session Authentication by keyboard-interactive + libssh2 iPhoneSDK

Hello there, I am having some problems with user authentications, I want the authentication through command prompt when user accesses it. I'm opening session with libssh2_session_init(). Then, i'm using libssh2_userauth_keyboard_interactive() to enable user to input password at command prompt. You can check the code at http://www.lib...

libssh2 wrong library for connection with User agent + iPhoneSDK

Hello Guys, back here with libssh2 again..! I'm encountering few problems with the user agent... I need to setup a connection with libssh2 in such manners, if password, username is not specified, they should be asked from virtual command-prompt on iPhone. We've developed a command-line emulator, its's working good.Right now the proble...

EMSA_PSS_ENCODE with libssl

Hi I'm trying to use libssl to get some EMSA_PSS_ENCODING through the function RSA_padding_add_PKCS1_type1 in libssl, but I can't find nor docs nor solutions, so this is the example code I've written: #include <stdio.h> #include <stdlib.h> #include <string.h> #include <openssl/rsa.h> #include <openssl/err.h> FILE *error_file; int main...

Using libssl in xCode

Hello, I have tried to include openssl (I try to implement a ssh client) and I've added libssl.dylib to my XCode Project. But I don't know which header I have to include to use it. Can anyone show me a tutorial how to use libssl in xcode? thanks ...