Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
560 views

Any good examples on programming using libssl?

I was wondering whether someone knows any good examples on using libssl as a programming library. Its kind of annoying only digging through the code of libssl trying to make sense of it. In the worst ...
1
vote
0answers
39 views

CryptoLock issue with multiple instance of same binrary

I am using http://www.openssl.org/docs/crypto/threads.html to make crypto library thread safe. It is working find if I am linking with static library of libssl and libcrypto. But if I am linking ...
1
vote
1answer
445 views

Using libssl in xCode

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 ...
1
vote
1answer
102 views

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: ...
1
vote
2answers
1k views

libssh + iPhone Implementation with multiple commands execution in sequence

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 ...
0
votes
1answer
40 views

openssl libs in Xcode 4

as the title suggests, I'm struggling to make the inclusion of openssl libs in my xcode iOs project, such as: #include <openssl/md5.h> #include <openssl/sha.h> #include ...
0
votes
2answers
64 views

How can I use libssl with Cocoa on Lion?

I'm linking against a static library build from source, and including local headers, not the headers in /usr/include, but Xcode still lists may functions as depreciated, and it's failing to find ...
0
votes
1answer
84 views

Why I get gcc -static linking and undefined reference to error

I'm trying to compile libpcap and libssl statically (with -static) and linker get me these errors: more undefined references to `ASN1_const_check_infinite_end' follow myprogram line 0, external ...
0
votes
0answers
36 views

ssh2_connect (libssl.so) with XAMPP on Mac

Would anyone know how to add the ssh2_* functions (libssl.so) to XAMPP under Mac (Lion?) Any help is appreciated. Thanks
0
votes
0answers
16 views

How to check if any other crypto callback is set?

According to this blog point Solution A) Beware of other libraries in your locking callback implementation We should check if another callback is set if not then only set the callback. But how to ...
0
votes
1answer
41 views

How to print libssl and libnspr version from c++ code?

How can I print the version of libssl and libnspr in c++ code ? I want to print version for both defined in header and library .
0
votes
1answer
299 views

How do i compile my app in Xcode with these errors - LibCurl

I've been porting icy (iPhone Debian-Based Package manager -- Jailbreak ) to iOS 5. i've allready ported it once 4.0 came out, but now i'm getting errors wich untill now, i didn't solve. When i ...
0
votes
1answer
122 views

Mongoose statically linking with libssl?

I want to compile moongose with static library of libssl . I have given .a file with -L option. But still it is loading .so file. why ? how can I force it to use static lib ?
0
votes
1answer
381 views

erlang on 64bit ubuntu

First, there is not specif 64bit download FOR ERLANG When I tried to make with crypto enabled, I get this error make[2]: Entering directory `/home/axon/erlang-src/otp_src_R14B01/lib/crypto' === ...
0
votes
1answer
476 views

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 ...