Re: [openssl-users] beginner needs advice on data signature/verification

2015-07-14 Thread Jakob Bohm
(continuing top posting to keep thread consistent) Note that the point of using an X.509 signature at file creation time and/or client approval time was to reuse the internal file structure that is already designed to hold that particular signature format (specifically, the internal file struc

Re: [openssl-users] beginner needs advice on data signature/verification

2015-07-11 Thread Michael Wojcik
el Wojcik Technology Specialist, Micro Focus From: openssl-users [mailto:openssl-users-boun...@openssl.org] On Behalf Of Jakob Bohm Sent: Wednesday, June 24, 2015 01:53 To: openssl-users@openssl.org Subject: Re: [openssl-users] beginner needs advice on data signature/verification (Contin

Re: [openssl-users] beginner needs advice on data signature/verification

2015-06-23 Thread Jakob Bohm
*From:*openssl-users [mailto:openssl-users-boun...@openssl.org] *On Behalf Of *Marco Warga *Sent:* Saturday, June 20, 2015 04:48 *To:* openssl-users@openssl.org *Subject:* [openssl-users] beginner needs advice on data signature/verification Hi, I hope some of you could give me advice on

Re: [openssl-users] beginner needs advice on data signature/verification

2015-06-23 Thread Marco Warga
.org] *On Behalf Of *Marco Warga *Sent:* Saturday, June 20, 2015 04:48 *To:* openssl-users@openssl.org *Subject:* [openssl-users] beginner needs advice on data signature/verification Hi, I hope some of you could give me advice on my project using openssl. MW: Why are you using OpenSSL for this ap

Re: [openssl-users] beginner needs advice on data signature/verification

2015-06-22 Thread Michael Wojcik
ehalf Of Marco Warga Sent: Saturday, June 20, 2015 04:48 To: openssl-users@openssl.org Subject: [openssl-users] beginner needs advice on data signature/verification Hi, I hope some of you could give me advice on my project using openssl. MW: Why are you using OpenSSL for this application? You w

[openssl-users] beginner needs advice on data signature/verification

2015-06-20 Thread Marco Warga
Hi, I hope some of you could give me advice on my project using openssl. Lets say I have a server/service on a machine processing a file a corresponding client sends. That file is usually created by me on a clean third machine. The server side is assumed to be uncompromised (no hacker). The c

Re: OpenSSL beginner...

2012-07-18 Thread Funshine
http://www.openssl.org > User Support Mailing Listopenssl-users@openssl.org > Automated List Manager majord...@openssl.org > > -- View this message in context: http://old.nabble.com/OpenSSL-beginner...-tp34171527p34176099.html Sent f

Re: OpenSSL beginner...

2012-07-17 Thread Dominik Oepen
On 17/07/12 05:28, Funshine wrote: > > Hi ! I want to learn OpenSSL and I'm having trouble getting any meaningful > result from their example program. No matter the argument I seem to pass I > get 'Unknown message digest' error. What exactly is > EVP_get_digestbyname(const char*) expecting to see

OpenSSL beginner...

2012-07-17 Thread Funshine
pdate(mdctx, mess2, strlen(mess2)); EVP_DigestFinal_ex(mdctx, md_value, &md_len); EVP_MD_CTX_destroy(mdctx); printf("Digest is: "); for(i = 0; i < md_len; i++) printf("%02x", md_value[i]); printf("\n"); } -- View this message in context: http://old.na

Re: [Beginner] generating DSA keypair in .der format

2012-03-31 Thread yyy
> C:\OpenSSL-Win32\bin>openssl genrsa -out privkey.pem 2048 This generates a RSA key, it has nothing to do with DSA. > C:\OpenSSL-Win32\bin>openssl dsaparam -out dsaparam.pem 2048 This generated DSA parameters. > C:\OpenSSL-Win32\bin>openssl gendsa -out privkey.pem dsaparam.pem This generates DSA

[Beginner] generating DSA keypair in .der format

2012-03-31 Thread lumo
696:Expecting: TRUSTED CERTIFICATE [/Quote] any help wellcome ludwig -- View this message in context: http://old.nabble.com/-Beginner--generating-DSA-keypair-in-.der-format-tp33544906p33544906.html Sent from the OpenSSL - User mailing list archive at Nabble.com.

Re: ( beginner ) how to send starttls command in smtp protocol ( as in the s_client )

2009-09-17 Thread Daniel Black
On Sunday 09 August 2009 14:47:35 Meir Yanovich wrote: > Hello all > im trying to find the right code ( c++/c) to connect to smtp server using > starttls > i know it can be done using openssl according this tutorial : > http://qmail.jms1.net/test-auth.shtml > i need to translate it to real code . t

( beginner ) how to send starttls command in smtp protocol ( as in the s_client )

2009-08-08 Thread Meir Yanovich
Hello all im trying to find the right code ( c++/c) to connect to smtp server using starttls i know it can be done using openssl according this tutorial : http://qmail.jms1.net/test-auth.shtml i need to translate it to real code . that is the open ssl part where can i find examples or tutorial whic

Re: help to implement DTLS record protocol - Beginner

2009-03-18 Thread Michael Tüxen
-muenster.de/dtls-samples.html Best regards Michael On Mar 18, 2009, at 2:02 PM, itians wrote: I am an openssl beginner. I want to implement the DTLS record protocol in openssl-0.9.8j.. after establishing the handshaking using another protocol the aim is to send records over udp using DTLS Being a

help to implement DTLS record protocol - Beginner

2009-03-18 Thread itians
I am an openssl beginner. I want to implement the DTLS record protocol in openssl-0.9.8j.. after establishing the handshaking using another protocol the aim is to send records over udp using DTLS Being a newbie i am finding it very hard to understand how to get started. i understand that

Re: Beginner Question

2005-03-09 Thread Ragnar Paulson
Thanks everyone. I'm working my way through the Viega,Messie,Chandra book. I did notice that it immediately recommends the other for internals and protocol details. The man pages may make more sense to me once I get through this but it was trying to develop from them alone that convinced me

RE: Beginner Question

2005-03-01 Thread mclellan, dave
lto:[EMAIL PROTECTED] On Behalf Of Richard Koenning Sent: Tuesday, March 01, 2005 4:28 PM To: openssl-users@openssl.org Subject: Re: Beginner Question Ragnar Paulson wrote: > I'm looking for a pointer to more documentation of how to use the openssl API, I don't really want to read

Re: Beginner Question

2005-03-01 Thread Richard Koenning
Ragnar Paulson wrote: I'm looking for a pointer to more documentation of how to use the openssl API, I don't really want to read the source or learn the internals. I have found the following two references: SSL and TLS: Designing and Building Secure Systems by Eric Rescorla Network Security wi

Re: Beginner Question

2005-02-24 Thread Bernhard Froehlich
Ragnar Paulson wrote: [...] I'm looking for a pointer to more documentation of how to use the openssl API, I don't really want to read the source or learn the internals. I have found the following two references: SSL and TLS: Designing and Building Secure Systems by Eric Rescorla Network Secur

Beginner Question

2005-02-24 Thread Ragnar Paulson
Hello and thanks in advance for advice. I need to quickly come up to speed using the openssl API. I have the basic administration knowledge, having configured web servers (apache) to use SSL, as well as securing pop and imap with stunnel. Now I need to actually modify an existing proprietar

Message modified (beginner)

2001-10-22 Thread Andrea Viscovich
Hi, I would like to generate some certificate to use with outlook express. I used this (under winnt cygwin) ./CA.pl -newca ./CA.pl -newreq ./CA.pl -signreq ./CA.pl -pkcs12 "My Test Certificate" Even tried verify, OK. Then imported into outlook, everithing ok. Sending email to myself I obtain an m

Re: beginner question.

2001-09-16 Thread rival
On Mon, 17 Sep 2001, Dr S N Henson wrote: > > > [EMAIL PROTECTED] wrote: > > > > Hello, > > > > I got a problem related to EVP primitives, and i can't find where the > > problem is. > > > > in the docs, it says : > > "..EVP_DecryptInit(), EVP_DecryptUpdate() and EVP_DecryptFinal() are the > > co

Re: beginner question.

2001-09-16 Thread Dr S N Henson
[EMAIL PROTECTED] wrote: > > Hello, > > I got a problem related to EVP primitives, and i can't find where the > problem is. > > in the docs, it says : > "..EVP_DecryptInit(), EVP_DecryptUpdate() and EVP_DecryptFinal() are the > corresponding decryption operations. EVP_DecryptFinal() will retu

beginner question.

2001-09-16 Thread rival
Hello, I got a problem related to EVP primitives, and i can't find where the problem is. in the docs, it says : "..EVP_DecryptInit(), EVP_DecryptUpdate() and EVP_DecryptFinal() are the corresponding decryption operations. EVP_DecryptFinal() will return an error code if padding is enabled and the

Re: SSL programming - Beginner :)

2001-08-12 Thread ganesh kumar godavari
hai julien, currently the openssl documentation is incomplete. the best way to understand about ssl, is to play the demo programs that are provided along with the source. u can start with the s_server.c and s_client.c programs to understand about ssl. though they are not clear, for beginners as

Beginner Q: Did anyone try porting OpenSsl to Vxworks ?

2001-04-30 Thread Prashant Kumar
Hello Group, Did anyone try porting OpenSsl to Vxworks platform ?. Any success :), jut to gain some confidence. Regards, Prashant. __ OpenSSL Project http://www.openssl.org User Support Mailing

beginner

2001-04-23 Thread Gasper Markic
Hey I just started investigating OpenSSH implementations because I was assigned to port ssh (openSsh) to Real time OS (VxWorks). And now I am asking any of you, if there is anything done on that kind of OS-es or even better some listigs of files and things i should look for. Thanks. gasper --

beginner question

2001-04-06 Thread Xavier Marjou
Hello,   I have a question for which I can't find the response. Is open SSL executed in Apache process, or is it running in a separate process (such as a servlet engine for example) ?   Thanks, Xavier Marjou

Beginner question: OpenSSL +Certisign +Apache - HELP!!

2000-09-05 Thread Perry Werneck
Hi, Is there any cookbook available with informations about how to use OpenSSL +Apache to validate Certisign client certificates? I can successfully install a server certificate but, I'm no having many success when trying to validade the client certificates. --- Per

Re: Hi, I'm beginner in Korea. Installation problem.....

2000-08-21 Thread Jacques GRILLOT
Hi, Im'm beginner in France but I know read the readme ... ;) Check the file README.SSL, line 50: you must patch two include file from openssl (crypt/rand/rand.h and crypto/rand/rand_egd.c) with the file openssl-0.9.5a-egd.diff I file-attach this two patched files if you want. annyonghi k

Re: Hi, I'm beginner in Korea. Installation problem.....

2000-08-21 Thread Craig Shaver
You are not finding your crypto or ssl libs. Use a -L/usr/local/ssl/lib or whatever that points directly to the location of the crytpo/ssl libs. You may have to add a -lgcc depending on your platform. > ±èº´°ü wrote: > > In my way > tar -xvzf openssl-0.9.5a.tar.gz > tar -xvzf patch-2.5.tar

Hi, I'm beginner in Korea. Installation problem.....

2000-08-21 Thread 김병관
In my way tar -xvzf openssl-0.9.5a.tar.gz tar -xvzf patch-2.5.tar.gz tar -xvzf apache_1.3.12.tar.Z tar -xvzf apache_1.3.12+ssl_1.41.tar.gz and In openssl-0.9.5a directory ./config make make test make install and In patch-2.5 directory ./configure make make install and

Re: Beginner advice sought to build OpenSSL in WinNT

2000-04-26 Thread John M. Mills
Mr. Gray - On Wed, 26 Apr 2000, Andrew W. Gray wrote: > If you want the complete developer studio with workspace and all of > the projects and complete set of instructions, you can get that at > http://www.iconsinc.com/~agray/ossldev/ Thanks for the advice and for your _very_ substantial MSVC

Beginner advice sought to build OpenSSL in WinNT

2000-04-25 Thread John M. Mills
Hello - I expect this is a common problem, but I didn't find it in the FAQ nor the archive of this list. I'm trying to build openssl-0.9.5a in WinNT, using MS VC++6.0 (installed as part of MS Visual Studio). I unpacked sources then opened a DOS window to build by means of console commands. 0) C

Starter ( beginner] information

2000-02-18 Thread Antonín Novak
I am just beggining to experience the delights of SSL, but I only understand the concept. Can you please let me know where I can find information, that will help me understand:- What I can do with SSL How everything fits together How I implement it. I am currently loo

Beginner Question: How do I create a certificate?

1999-11-22 Thread Bernardo Santos Wernesback
Hi All, I have just started using OpenCA yesterday and so far I have been unable to create a certificate. I am trying to create a certificate for a IIS server although I am running OpenCA on a Linux workstation. Is this possible? I thought my machine had a lot of trash in it so I have rei