(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
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
*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
.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
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
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
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
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
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
> 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
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.
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
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
-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
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
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
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
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
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
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
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
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
[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
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
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
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
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
--
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
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
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
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
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
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
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
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
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
36 matches
Mail list logo