RE: Howto prevent cycles in engine invocation ?

2019-03-19 Thread Fuchs, Andreas
_ From: openssl-users [openssl-users-boun...@openssl.org] on behalf of Dmitry Belyavsky [beld...@gmail.com] Sent: Tuesday, March 19, 2019 21:09 To: openssl-users@openssl.org Subject: Re: Howto prevent cycles in engine invocation ? Hello Andreas, I used smth like === RSA_METHOD my_rsa_meth

Re: Howto prevent cycles in engine invocation ?

2019-03-19 Thread Dmitry Belyavsky
Hello Andreas, I used smth like === RSA_METHOD my_rsa_method = { "My RSA method", 0, /* pub_enc */ 0, /* pub_dec */ 0, /* priv_enc */ my_priv_dec, /* priv_dec */ 0, /* rsa_mod_e

Howto prevent cycles in engine invocation ?

2019-03-19 Thread Fuchs, Andreas
Following scenario: I have an engine that implements e.g. RSA decryption. That engine links against a library that links against libcrypto to perform RSA decryption. Now if I have an application that sets the default library to be my engine, won't I end up in an infinite loop ? Or the other wa

Re: [openssl-users] Howto to create a PKI with Openssl command line

2017-08-09 Thread Robert Moskowitz
Thanks Rich, I will take a look at this also. Bob On 08/09/2017 09:49 AM, Salz, Rich via openssl-users wrote: https://www.openssl.org/~rsalz/pki.tgz but only a root and end-entity. Adding an intermediate should not be incredible difficult :) -- openssl-users mailing list To unsubscribe: htt

Re: [openssl-users] Howto to create a PKI with Openssl command line

2017-08-09 Thread Salz, Rich via openssl-users
https://www.openssl.org/~rsalz/pki.tgz but only a root and end-entity. Adding an intermediate should not be incredible difficult :) -- openssl-users mailing list To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-users

[openssl-users] Howto to create a PKI with Openssl command line

2017-08-09 Thread Robert Moskowitz
I want to build a PKI structure of a root CA, intermediate CA(s), and user and server certs. So I went looking for some guidance and found: https://jamielinux.com/docs/openssl-certificate-authority/create-the-root-pair.html Anything else out there? The certs will all be ECDSA, P256 SHA256. L

Re: [EXTERNAL] howto get a .so.X.Y.Z file rather than indivdual .o files in a libSOMETHING.a

2014-08-05 Thread Sands, Daniel
On Mon, 2014-08-04 at 22:45 +0200, Michael Felt wrote: And finally - read exactly what is there: -- Dependent module libcrypt.so could not be loaded, not as above 0509-150 Dependent module /usr/lib/libssl.a(libssl.so.0.9.8) could not be loaded. (libssl.a(member)) The problem there is

Re: [EXTERNAL] howto get a .so.X.Y.Z file rather than indivdual .o files in a libSOMETHING.a

2014-08-05 Thread Michael Felt
't specify an import file, AIX will just >> > use the standard static object rules when it searches an archive for >> > likely candidates to link in: First logical member of the archive that >> > has the desired symbol will be chosen for inclusion. The difference is &

Re: [EXTERNAL] howto get a .so.X.Y.Z file rather than indivdual .o files in a libSOMETHING.a

2014-08-05 Thread Michael Felt
t searches an archive for > > likely candidates to link in: First logical member of the archive that > > has the desired symbol will be chosen for inclusion. The difference is > > that the static linker will see the "shared" flag and just add that > > member of the a

Re: [EXTERNAL] howto get a .so.X.Y.Z file rather than indivdual .o files in a libSOMETHING.a

2014-08-05 Thread Michael Felt
Thanks - I found the hint in INSTALL on howto create the shared files. What I have not figured out is how to make openssl want them to be libssl.a(member) and libcrypto.a(member). Here is where I am atm: I was able to create libssl.so.0.9.8 and libcrypto.so.0.9.8 The traditional packaging on

RE: [EXTERNAL] howto get a .so.X.Y.Z file rather than indivdual .o files in a libSOMETHING.a

2014-08-04 Thread Jeremy Farrell
c linker will see the "shared" flag and just add that > member of the archive to the file's dynamic loader table instead of > statically linking it in. > > > > > > On Mon, 2014-08-04 at 08:45 +0200, Michael wrote: > > > > > > Dear all, &g

Re: [EXTERNAL] howto get a .so.X.Y.Z file rather than indivdual .o files in a libSOMETHING.a

2014-08-04 Thread Sands, Daniel
On 8/4/2014 7:06 PM, Sands, Daniel wrote: > To generate a .a of shared objects instead of static objects, really all you > do is build the shared object(s) and create an archive out of them. There is > no special magic about it beyond creating the shared object in the first > place. When lin

Re: [EXTERNAL] howto get a .so.X.Y.Z file rather than indivdual .o files in a libSOMETHING.a

2014-08-04 Thread Michael
er table instead of statically linking it in. On Mon, 2014-08-04 at 08:45 +0200, Michael wrote: Dear all, I wish I knew better - howto use ld to craft an archive member, but I do not. (Below was sent to openssl-dev, if it arrived, please ignore for now - however, once I understand this AND if I

Re: [EXTERNAL] howto get a .so.X.Y.Z file rather than indivdual .o files in a libSOMETHING.a

2014-08-04 Thread Sands, Daniel
inker will see the "shared" flag and just add that member of the archive to the file's dynamic loader table instead of statically linking it in. On Mon, 2014-08-04 at 08:45 +0200, Michael wrote: Dear all, I wish I knew better - howto use ld to craft an archive member, but I do not

howto get a .so.X.Y.Z file rather than indivdual .o files in a libSOMETHING.a

2014-08-04 Thread Michael
Dear all, I wish I knew better - howto use ld to craft an archive member, but I do not. (Below was sent to openssl-dev, if it arrived, please ignore for now - however, once I understand this AND if I figure out a "simple" change, I shall submit a patch for future AIX builds.)

RE: OpenSSL / GnuTLS / Certificate Installation HowTo

2014-05-02 Thread Michael Wojcik
> From: owner-openssl-us...@openssl.org [mailto:owner-openssl- > us...@openssl.org] On Behalf Of Frederic Nivor > Sent: Friday, 02 May, 2014 11:18 > To: openssl-users@openssl.org > Subject: OpenSSL / GnuTLS / Certificate Installation HowTo > > I would like to create a TCP c

OpenSSL / GnuTLS / Certificate Installation HowTo

2014-05-02 Thread Frederic Nivor
I would like to create a TCP client/server scenario: - a simple C server on a VPS - a simple C client on another device And I would like to secure the TCP connection between them. GnuTLS seems to be a good choice (they also propose some client/server samples). My web hosting provider gave me a SSL

Re: HowTo; Create sample ECC Certificate with sha1WithRSAEncryption.

2013-08-22 Thread Mat Arge
If you create a selfsigned certificate, the signature algorithm will obviously be that of the public key of the certificate. If you use an EC key, you can only end up with a ecds-with* signature. If you want sha1WithRSAEncryption, you need to create a RSA key. Or have your EC-certificate signed

HowTo; Create sample ECC Certificate with sha1WithRSAEncryption.

2013-08-22 Thread Tanmoy Sinha
Hi, I am facing an issue while I am trying to create a sample self-signed certificate using openssl -req for EC Cipher suites. *Requirement:* I need to install a self-signed certificate for the cipher suite ECDH-RSA-AES128-SHA which has the following attributes:- 1. Signature Algorithm:

RE: howto be my own CA for my new certificates

2011-08-04 Thread Tomas Macek
On Thu, 4 Aug 2011, Dave Thompson wrote: From: owner-openssl-us...@openssl.org On Behalf Of Alan Buxey Sent: Thursday, 04 August, 2011 03:54 Thank you! But now I'm spending my time with another issue with this: I cannot create certificate longer than I month: The server certificate was

RE: howto be my own CA for my new certificates

2011-08-04 Thread Dave Thompson
> From: owner-openssl-us...@openssl.org On Behalf Of Alan Buxey > Sent: Thursday, 04 August, 2011 03:54 > > Thank you! But now I'm spending my time with another issue > with this: I > > cannot create certificate longer than I month: > > The server certificate was created by command: > > ope

Re: howto be my own CA for my new certificates

2011-08-04 Thread Erwin Himawan
When you are creating a CA and issuing certificate you are building a PKI (Public Key Infrastructure). In operating a PKI, you might want to consider crafting a certification policy, specifying the process for managing the lifecycle of your certificates, securing the CA's private key, securing th

Re: howto be my own CA for my new certificates

2011-08-04 Thread Tomas Macek
On Thu, 4 Aug 2011, Bernhard Fröhlich wrote: Am 04.08.2011 08:23, schrieb Tomas Macek: We have some web servers and I want to create self signed certificates for them. What do I want: - I want to create my own certification authority keys and certificate, that will be imported to all web b

Re: howto be my own CA for my new certificates

2011-08-04 Thread Bernhard Fröhlich
Am 04.08.2011 08:23, schrieb Tomas Macek: We have some web servers and I want to create self signed certificates for them. What do I want: - I want to create my own certification authority keys and certificate, that will be imported to all web browsers of our employees - I want to create certi

Re: howto be my own CA for my new certificates

2011-08-04 Thread Tomas Macek
On Thu, 4 Aug 2011, Alan Buxey wrote: Hi, Thank you! But now I'm spending my time with another issue with this: I cannot create certificate longer than I month: This is my CA certificate validity: ... Not Before: Aug 3 10:07:14 2011 GMT Not After : Aug 2 1

Re: howto be my own CA for my new certificates

2011-08-04 Thread Alan Buxey
Hi, > Thank you! But now I'm spending my time with another issue with this: I > cannot create certificate longer than I month: > > This is my CA certificate validity: > ... > Not Before: Aug 3 10:07:14 2011 GMT > Not After : Aug 2 10:07:14 2012 GMT > ... >

Re: howto be my own CA for my new certificates

2011-08-04 Thread Tomas Macek
Thank you! But now I'm spending my time with another issue with this: I cannot create certificate longer than I month: This is my CA certificate validity: ... Not Before: Aug 3 10:07:14 2011 GMT Not After : Aug 2 10:07:14 2012 GMT ... This is my server'

Re: howto be my own CA for my new certificates

2011-08-04 Thread yyy
Everything seems to be fine, only for new installations it is recomended to use at least 2048 bit keyand, at least some time ago, openssl used to default to MD5 for certificate signatures,check, if it is not the case.   Citējot Tomas Macek : We have some web servers and I want to create self signe

howto be my own CA for my new certificates

2011-08-03 Thread Tomas Macek
We have some web servers and I want to create self signed certificates for them. What do I want: - I want to create my own certification authority keys and certificate, that will be imported to all web browsers of our employees - I want to create certificates, that will be signed by my own cer

HowTo Check

2010-08-19 Thread Andre Dieball
Hi there I have some Problems with encrypted emails. A user sends me an encrypted mail where I have the corresponding certificate and Key. Unfortunately Mail (Apple) sais it cannot read that email and displays the smime.p7s file only. How can I check which certificate has been used to encrypt th

Re: Howto create a certificate for multiple domains?

2009-08-20 Thread Patrick Patterson
Hi There: If you're looking for a cookbook, and want a fairly comprehensive explanation of how all of the moving parts work: http://www.carillon.ca/library/openssl_testca_howto_1.2.pdf Have fun. Patrick. On August 19, 2009 07:18:39 am deblarinteln wrote: > Hi Goetz, *, > > > There is the ma

Re: Howto create a certificate for multiple domains?

2009-08-19 Thread deblarinteln
g= =erui -END PGP SIGNATURE- __ OpenSSL Project http://www.openssl.org User Support Mailing Listopenssl-users@openssl.org Automated List Manager majord...@openssl.org -- View thi

Re: Howto create a certificate for multiple domains?

2009-08-13 Thread Goetz Babin-Ebell
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 deblarinteln wrote: | Hi Goetz, Hello deblarinteln, | | It is called subjectAltName extension. | | would you mind telling me how and where I have to define the AltName(s) ? There is the man page x509v3_config. It should contain the info you need. A

Re: Howto create a certificate for multiple domains?

2009-08-13 Thread deblarinteln
configure them somehow? Thanks a lot Niels -- View this message in context: http://www.nabble.com/Howto-create-a-certificate-for-multiple-domains--tp24931183p24949301.html Sent from the OpenSSL - User mailing list archive at Nabble.com

Re: Howto create a certificate for multiple domains?

2009-08-13 Thread deblarinteln
Hi Goetz, | It is called subjectAltName extension. would you mind telling me how and where I have to define the AltName(s) ? And still, how will I get my *.pem certificate converted into a .cer certificate? Thanks a lot Niels -- View this message in context: http://www.nabble.com/Howto

Re: Howto create a certificate for multiple domains?

2009-08-12 Thread Crypto Sal
On 08/12/2009 09:50 AM, Goetz Babin-Ebell wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 deblarinteln schrieb: | Hi, | | well I have to create a certificate for our maindomian as well as for some | subdomains. | | The structure will look pretty much like this: | | mydomain.tld | mail.myd

Re: Howto create a certificate for multiple domains?

2009-08-12 Thread Goetz Babin-Ebell
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Emerson Saito wrote: | Is needed one certificate for each domain or subdomain. | Uses like *.mydomain.tld is not recomended. ??? What do you want to say ? If you have one system that serves several addresses (like mydomain.tdl, mail.mydomain.tdl, ow

Re: Howto create a certificate for multiple domains?

2009-08-12 Thread Emerson Saito
Is needed one certificate for each domain or subdomain. Uses like *.mydomain.tld is not recomended. 2009/8/12 Goetz Babin-Ebell > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > deblarinteln schrieb: > | Hi, > | > | well I have to create a certificate for our maindomian as well as for > some

Re: Howto create a certificate for multiple domains?

2009-08-12 Thread Goetz Babin-Ebell
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 deblarinteln schrieb: | Hi, | | well I have to create a certificate for our maindomian as well as for some | subdomains. | | The structure will look pretty much like this: | | mydomain.tld | mail.mydomain.tld | owa.mydomain.tld It is called subjectAl

Re: Howto create a certificate for multiple domains?

2009-08-12 Thread Serge Fonville
Hi, > > well I have to create a certificate for our maindomian as well as for some > subdomains. Use a wildcard domain for your CN Unless each domain had a separate IP You need to specify *.mydaomin.tld as the CN HTH Regards, Serge Fonville Has anyone of you an idea how to get that done, so t

Howto create a certificate for multiple domains?

2009-08-12 Thread deblarinteln
the exchange 2007 server? What I have found so far is that the Exchange server has to get a .cer file. All your help is highly appreciated! Thanks in advance Niels -- View this message in context: http://www.nabble.com/Howto-create-a-certificate-for-multiple-domains--tp24931183p24931183.html

Howto set subjectAltName on command line?

2008-03-04 Thread Patrick
Hi, My googling and searching the openssl website came up empty. Is there a way I can specify subjectAltName="DNS:foo.bar.org,DNS:bar.org,DNS=foo" on the openssl command line? Thanks, Patrick __ OpenSSL Project

RE: Howto asume yes by default when generate a certificate..

2008-02-20 Thread Francisco Javier
Thanks a lot!!!> Date: Wed, 20 Feb 2008 09:18:18 +0100> From: [EMAIL PROTECTED]> To: openssl-users@openssl.org> Subject: Re: Howto asume yes by default when generate a certificate..> > Francisco Javier schrieb:> > Hello, I am trying to generate a certificate using an

Re: Howto asume yes by default when generate a certificate..

2008-02-20 Thread Bernhard Froehlich
Francisco Javier schrieb: Hello, I am trying to generate a certificate using an external application, but I need to automaticaly answer YES to the question Sign the certificate? [y/n]: exec("openssl ca -out certificados_usuarios/ALL/ALL_cert.pem -passin pass:mipass -days 365 -infiles c

Howto asume yes by default when generate a certificate..

2008-02-20 Thread Francisco Javier
Hello, I am trying to generate a certificate using an external application, but I need to automaticaly answer YES to the question Sign the certificate? [y/n]: exec("openssl ca -out certificados_usuarios/ALL/ALL_cert.pem -passin pass:mipass -days 365 -infiles certificados_usuarios/ALL/AL

Howto SSL_read

2008-01-11 Thread Prasanna Sundaram
Hi all, I have DTLS server/client model. My server is blocked in SSL_read.If server received the packet from DTLS client how can I get the Client IP infomation from SSL_read function.How to get the senders information from SSL_read. thanks in advance. Regards Prasanna.P.M. Larsen & Toubro

howto blind signature?

2007-12-10 Thread mikel paskual
Hi! Some weeks ago I tried some things with Openssl in C. I found evp to be very handy, and so I can cypher, decypher, sign, verify,.. I can work with complete messages, or I can work with streams. I realized the way to everything, except to blind signing. The way I'm trying is (on the same machi

Re: howto generate RSA key from components?

2007-04-12 Thread Iain Pople
Thanks for this. I also found the Openssl perl module useful (http://search.cpan.org/dist/Crypt-OpenSSL-RSA/RSA.pm) as it has a function new_key_from_parameters which uses the rsa components to generate a key. Dr. Stephen Henson wrote: On Wed, Apr 11, 2007, Iain Pople wrote: Hi, I am tryin

Re: howto generate RSA key from components?

2007-04-11 Thread Dr. Stephen Henson
On Wed, Apr 11, 2007, Iain Pople wrote: > Hi, > > I am trying to replace a legacy system with openssl. The legacy system > used RSA keys but stored them in its own format. I can extract the RSA > components but I'm not sure how to generate a PEM formatted RSA key. > What is the easiest way to

Re: howto generate RSA key from components?

2007-04-11 Thread Marek Marcola
Hello, > I am trying to replace a legacy system with openssl. The legacy system > used RSA keys but stored them in its own format. I can extract the RSA > components but I'm not sure how to generate a PEM formatted RSA key. > What is the easiest way to do this? Can the command line tools do it,

howto generate RSA key from components?

2007-04-10 Thread Iain Pople
Hi, I am trying to replace a legacy system with openssl. The legacy system used RSA keys but stored them in its own format. I can extract the RSA components but I'm not sure how to generate a PEM formatted RSA key. What is the easiest way to do this? Can the command line tools do it, or do I

Re: ssl cert bring in after csr was send.. howto

2007-03-19 Thread Michael Fedor
Thanks Victor for your help STARTTLS=server, error: SSL_CTX_check_private_key failed(/demoCA/serverkey.pem) the new cert I called serverkey.pem how do I creat the key for this file Mike On 3/19/07, Victor Duchovni <[EMAIL PROTECTED]> wrote: On Mon, Mar 19, 2007 at 10:58:19AM -0400, Michael

Re: ssl cert bring in after csr was send.. howto

2007-03-19 Thread Michael Fedor
Thanks I made newcert.pem (thats not to replace the cacert is it) append the private key to newcert.pem?? I have a cakey newkey(newreq) Thanks Mike On 3/19/07, Victor Duchovni <[EMAIL PROTECTED]> wrote: On Mon, Mar 19, 2007 at 10:58:19AM -0400, Michael Fedor wrote: > I created that...just

Re: ssl cert bring in after csr was send.. howto

2007-03-19 Thread Victor Duchovni
On Mon, Mar 19, 2007 at 10:58:19AM -0400, Michael Fedor wrote: > I created that...just to get ssl/tls working how and what do I do > with the files they sent me Ensure that all 4 files are in PEM format. For each file try: openssl x509 -in type_name_of_file_here -noout -issuer -subject i

Re: ssl cert bring in after csr was send.. howto

2007-03-19 Thread Michael Fedor
I created that...just to get ssl/tls working how and what do I do with the files they sent me Thanks On 3/19/07, Victor Duchovni <[EMAIL PROTECTED]> wrote: On Mon, Mar 19, 2007 at 10:40:18AM -0400, Michael Fedor wrote: > They send me 4 files > > 1 AddTrustExternalCARoot.ca trust root > > 2

Re: ssl cert bring in after csr was send.. howto

2007-03-19 Thread Victor Duchovni
On Mon, Mar 19, 2007 at 10:40:18AM -0400, Michael Fedor wrote: > They send me 4 files > > 1 AddTrustExternalCARoot.ca trust root > > 2 UTNAddTrustServer_CA.crt intermediate ca > > 3 NetworkSolutions_CA.crt intermediate ca > > 4 (domain) ther.comdomain cert > If they are your CA, it s

ssl cert bring in after csr was send.. howto

2007-03-19 Thread Michael Fedor
Im lost on how to bring in Certs from Network Solutions.. Im trying to get TLS running TRUSTED. My OS redhat..and one of the problems TLS is working from inside to out but anyone replying command unknown STARTTLS=client, relay=mail.sterlingsavings.com., version=TLSv1/SSLv3, verify=FAIL, cipher

Re: howto verify a certificate

2007-03-17 Thread Victor Duchovni
On Sat, Mar 17, 2007 at 05:08:06PM -0400, Greg Martin wrote: > Try this: > openssl x509 -in filename.pem -text -noout > > You should see an issuer: statement that talks about the CA. > Rather depends on what the OP meant by "verify", and what context this is to be performed. -- Viktor

Re: howto verify a certificate

2007-03-17 Thread Greg Martin
Try this: openssl x509 -in filename.pem -text -noout You should see an issuer: statement that talks about the CA. \\Greg Jamie F. wrote: Hi all, I have a bit strange Q: i've created a self-signed certificate (first i created a CA (root certificate) then created another certificate from it l

howto verify a certificate

2007-03-17 Thread Jamie F.
Hi all, I have a bit strange Q: i've created a self-signed certificate (first i created a CA (root certificate) then created another certificate from it like that [http://www.tc.umn.edu/~brams006/selfsign.html]). but i can't find how will i verify that if the second certificate made from the root

Re: [EMAIL PROTECTED]: Help: Howto create certificates with uid in subject?]

2007-01-25 Thread Cornelius Kölbel
<[EMAIL PROTECTED]> An: openssl-users@openssl.org Betreff: [EMAIL PROTECTED]: Help: Howto create certificates with uid in subject?] > Forwarding to openssl-users for public discussion. > > Best regards, > Lutz > - Forwarded message from Christian Brandes > <[EMA

Re: [EMAIL PROTECTED]: Help: Howto create certificates with uid in subject?]

2007-01-25 Thread Dr. Stephen Henson
On Thu, Jan 25, 2007, Lutz Jaenicke wrote: > > Hi, > > I am trying to issue certificates with a uid attribute in the subject like: > > Subject: .../CN=/emailAddress=/uid= > > How can I do that? > > In the "DISTINGUISHED NAME AND ATTRIBUTE SECTION" of openssl.conf I > inserted: > > UID

[EMAIL PROTECTED]: Help: Howto create certificates with uid in subject?]

2007-01-25 Thread Lutz Jaenicke
Kv1GEw=; Date: Thu, 25 Jan 2007 14:05:38 +0100 From: Christian Brandes <[EMAIL PROTECTED]> User-Agent: Thunderbird 1.5.0.9 (Windows/20061207) To: [EMAIL PROTECTED] Subject: Help: Howto create certificates with uid in subject? X-Virus-Scanned: by amavisd 0.1 X-Virus-Scanned: by amavisd 0.1 Hi,

Re: HOWTO cross certify two self-signed CAs using OpenSSL

2006-11-04 Thread Olaf Gellert
John Mok wrote: > As the number of PCs are many, it is too difficult, if not impossible, > to install the self-signed certificates of both rootCA1 and rootCA2 as > trusted root CAs on every PCs. > > Is there any better way that to cross-certify both rootCA1 and rootCA2, > such that the machines wi

HOWTO cross certify two self-signed CAs using OpenSSL

2006-11-03 Thread John Mok
Hi, There are two self-signed root CAs (e.g. rootCA1 and rootCA2) in the organization I work for, and both have sub-CAs. For instance, The sub-CAs of rootCA1 are :- 1. subCA1 2. subCA2 The sub-CAs of rootCA2 are :- 1. subCA3 2. subCA4 As the number of PCs are many, it is too difficult, if no

Howto add cert extensions for x500UniqueIdentifier, and logos?

2006-09-12 Thread Ken Johanson
Hi all,I'm trying to add the x500UniqueIdentifier attrib to a cert request,and/or at the signing stage, but am not having success. Using 0.9.8c,the [x509_extensions] attrib:x500UniqueIdentifier = 'foo'causes:Error Loading extension section local_ca_extensions1972:error:0E06D06C:configuration file

Howto add cert extensions for x500UniqueIdentifier, and logos?

2006-09-12 Thread Ken Johanson
Hi all, I'm trying to add the x500UniqueIdentifier attrib to a cert request, and/or at the signing stage, but am not having success. Using 0.9.8c, the [x509_extensions] attrib: x500UniqueIdentifier = 'foo' causes: Error Loading extension section local_ca_extensions 1972:error:0E06D06C:configura

Re: Error in Proxy Certificates HOWTO

2006-07-17 Thread John Zornig
On 18/07/2006, at 3:44 PM, Jorey Bump wrote:John Zornig wrote: I came across a mistake in one of the HOWTO documentshttp://www.openssl.org/docs/HOWTO/proxy_certificates.txt - in all other cases, proxy certificate validation can be enabled   before starting the application by setting the

Re: Error in Proxy Certificates HOWTO

2006-07-17 Thread Jorey Bump
John Zornig wrote: I came across a mistake in one of the HOWTO documents http://www.openssl.org/docs/HOWTO/proxy_certificates.txt - in all other cases, proxy certificate validation can be enabled before starting the application by setting the envirnoment variable OPENSSL_ALLOW_PROXY

Error in Proxy Certificates HOWTO

2006-07-17 Thread John Zornig
I came across a mistake in one of the HOWTO documentshttp://www.openssl.org/docs/HOWTO/proxy_certificates.txt - in all other cases, proxy certificate validation can be enabled   before starting the application by setting the envirnoment variable   OPENSSL_ALLOW_PROXY with some non-empty value.This

Selecting a session within get_session_cb(): howto?

2006-03-02 Thread caveman007 (sent by Nabble.com)
t one provided by the callback. How to obtain the session-id for comparation? Or is there another way of selecting proper session? Thanks, PL. -- View this message in context: http://www.nabble.com/Selecting-a-session-within-get_session_cb%28%29%3A-howto--t1212817.html#a3206419 Sent from the OpenSSL -

Compiling openssl 0.9.7.d with automake autoconf, libtool and aclocal, HOWTO?

2006-01-04 Thread ahmad hassan
Hi, I am trying to compile openssl using automake procedure on linux. How can i do that. If anybody has done it please let me know how to exactly achieve that. Thank You. _ Express yourself instantly with MSN Messenger! Download

Fwd: Re: Howto send email through smtp.gmail.com under Windows XP & msvc 6.0?

2005-01-05 Thread Serge
Note: forwarded message attached. __ Do you Yahoo!? All your favorites on one personal page – Try My Yahoo! http://my.yahoo.com --- Begin Message --- It works now! I have successfully sent an email using smtp.gmail.com as for auth login plain,

Howto send email through smtp.gmail.com under Windows XP & msvc 6.0?

2005-01-05 Thread Peter Sylvester
-- X-Sun-Data-Type: text X-Sun-Data-Description: text X-Sun-Data-Name: text X-Sun-Charset: us-ascii X-Sun-Content-Lines: 22 Not in this way. I think you shouldn't use :smtp but rather the :25 But then later down you miss a layer: A BIO_read does not necessarily give you 'a line' but

Re: Howto send email through smtp.gmail.com under Windows XP & msvc 6.0?

2005-01-04 Thread Bernhard Froehlich
Serge wrote: Wow! that was fast answer from this mailing list! Thanks a lot! it works for the connection, I can say EHLO, and it answer, now, what is the rest of sending an email using ssl/tls as gmail ask for STARTTLS command which I send (I learned that by using telnet). But it answer unrecong

Re: Howto send email through smtp.gmail.com under Windows XP & msvc 6.0?

2005-01-04 Thread Serge
Wow! that was fast answer from this mailing list! Thanks a lot! it works for the connection, I can say EHLO, and it answer, now, what is the rest of sending an email using ssl/tls as gmail ask for STARTTLS command which I send (I learned that by using telnet). But it answer unrecongnized command? S

Re: Howto send email through smtp.gmail.com under Windows XP & msvc 6.0?

2005-01-04 Thread Bernhard Froehlich
Serge wrote: So far, I have tried with ssl functions, then with BIO functions but without success. I have search an answer or documents explaining how to do that but not found. Here's what I do with ssl: SSL *ssl; SSL_CTX *ctx; void __fastcall TForm1::Button1Click(TObject *Sender) { char rep

Howto send email through smtp.gmail.com under Windows XP & msvc 6.0?

2005-01-04 Thread Serge
So far, I have tried with ssl functions, then with BIO functions but without success. I have search an answer or documents explaining how to do that but not found.   Here's what I do with ssl:   SSL *ssl;SSL_CTX *ctx; void __fastcall TForm1::Button1Click(TObject *Sender){ char reply[1024]; SOCKET S

Re: using the bn library tips, faq or howto anywhere

2004-09-05 Thread Tan Eng Ten
Hmm, i think that depends on which BN_ functions. In your example, BN_bin2bn() returns a new BIGNUM object, so you do not need to BN_new(). b l wrote: Hi, If i reuse a BIGNUM created with BN_new() without freeing it first will i cause a memory leak? does the BIGNUM dynamically allocate memory eac

Re: using the bn library tips, faq or howto anywhere

2004-09-05 Thread b l
thanks Nils, brian --- Nils Larsch <[EMAIL PROTECTED]> wrote: > b l wrote: > > Hi, > > > > If i reuse a BIGNUM created with BN_new() without > > freeing it first will i cause a memory leak? > > no > > > does the BIGNUM dynamically allocate memory each > time > > it is used by certain functio

Re: using the bn library tips, faq or howto anywhere

2004-09-05 Thread Nils Larsch
b l wrote: Hi, If i reuse a BIGNUM created with BN_new() without freeing it first will i cause a memory leak? no does the BIGNUM dynamically allocate memory each time it is used by certain functions? yes (but only if it's required) for example i create BIGNUM * tempBN=BN_new(); i might make a call

using the bn library tips, faq or howto anywhere

2004-09-05 Thread b l
Hi, If i reuse a BIGNUM created with BN_new() without freeing it first will i cause a memory leak? does the BIGNUM dynamically allocate memory each time it is used by certain functions? for example i create BIGNUM * tempBN=BN_new(); i might make a call to BN_bin2bn (char1,len,tempBN); i might

Re: Howto add signed attributes in mails

2003-12-31 Thread Dr. Stephen Henson
On Wed, Dec 31, 2003, Christian Weber wrote: > Dear OpenSSL user, > > does anybody have a hint how to add a signed attribute during signing > with smime? Further: which OID should be taken to add a attribute like > "siged on behalf of..." or "representing (a function)". > You need to use the lo

Howto add signed attributes in mails

2003-12-31 Thread Christian Weber
Dear OpenSSL user, does anybody have a hint how to add a signed attribute during signing with smime? Further: which OID should be taken to add a attribute like "siged on behalf of..." or "representing (a function)". In which order should that OID be added to the other signed attirbutes (like signi

Newbie HowTo

2003-08-20 Thread Mark Radford
Attached is a guide that is meant to be an easy to understand tutorial on how to install openssl, and a CA on a Windows operating system. I still need to test some of the steps of the guide at home where I don’t have openssl installed yet. Please enjoy this early version, and feedback is mo

[HOWTO] Use Open SSL Cert in IIS

2003-07-22 Thread Derek Chew En-Hock
Hello Everyone, just wanted to contribute a short HOWTO as I have been spending the last few days reading google groups, the openssl HOWTOs and didn't really find a good one that teaches you how to get it done... any comments appreciated! anyway, great work OpenSSL team! How to use OpenS

Re: HOWTO for pkcs11 patch?

2003-06-26 Thread Afchine Madjlessi
sauer" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, June 26, 2003 8:48 AM Subject: HOWTO for pkcs11 patch? > Hello List, > > trustway's pkcs11-patch came with basically no info about it's usage. > Especially the handling of stored keys on the sm

HOWTO for pkcs11 patch?

2003-06-25 Thread Reinhard Moosauer
Hello List, trustway's pkcs11-patch came with basically no info about it's usage. Especially the handling of stored keys on the smartcard is obscure. (openssl normally can only deal with files) req -newkey .. seems to work, but the key is not written to the card Please, please can anybody give s

Re: HOWTO Contribution

2003-01-02 Thread Franck Martin
Please check www.tldp.org SSL Certificates HOWTO Cheers. On Mon, 2002-12-30 at 15:15, William Michael Grim wrote: Hi there, I just signed up for openssl-users today because I was going to ask a question but then think I figured out what I needed to figure out. Anyway, I created a

HOWTO Contribution

2002-12-30 Thread William Michael Grim
Hi there, I just signed up for openssl-users today because I was going to ask a question but then think I figured out what I needed to figure out. Anyway, I created a HOWTO that isn't on the web site about how to create signed certificates, etc. It is a rough draft, and I would apreciat

howto put id-etsi-qcs-QcCompliance in qcStatements

2002-11-29 Thread Eelse-jan Stutvoet
Hi, I was wondering how to put the id-etsi-qcs-QcCompliance statement (OID 0.4.0.1862.1.1) in a certificate under qcStatements in a certificate. Is it possible to do so using openssl.cnf? If not, does anyone know how i should put it in DER? Thanks in advance, Eelse-jan __

RE: howto startup Apache SSL in batch mode

2002-11-13 Thread Boyle Owen
ILLIOT@;oracle.com] >Sent: Mittwoch, 13. November 2002 11:14 >To: [EMAIL PROTECTED] >Subject: howto startup Apache SSL in batch mode > > >Hi, >I would like to startup apache in batch mode. >when I launch the following command: >httpdsctl startssl >The script is asking me

Re: FW: updates (SSL-Certificates-HOWTO)

2002-10-22 Thread Xperex Tim
Thanks Franck. I have referred to your docs often. --- Franck Martin <[EMAIL PROTECTED]> wrote: > I'm pleased to announce a new version of the SSL-Certificates-HOWTO. > > Thanks to all for your contributions and comments. > > Can someone put a link on the op

FW: updates (SSL-Certificates-HOWTO)

2002-10-22 Thread Franck Martin
I'm pleased to announce a new version of the SSL-Certificates-HOWTO. Thanks to all for your contributions and comments. Can someone put a link on the openssl.org web site? Thanks. Comments, critics,... you know how to join me... Cheers. -Original Message- From: Greg Fer

Re: howto create your own certificate

2002-09-25 Thread Liguo Song
Check out the Securing and Optimizing Linux Guide on www.linuxdoc.org. There are detailed description, needs minor correction, to generate your own certificate. Good luck for you. Liguo (Leo) Alexey S. Poluntchenko wrote: > using openssl X509 api ? > mb any examples exist ? > > thanks _

Re: howto create your own certificate

2002-09-23 Thread Alexey S. Poluntchenko
There r no such a directory exists. I saw the selfsign.c in demos but it throws an exception (access violation) in callback function when dumping to console (PEM_write_X509 & X509_write_fp). whats the problem? thanks in advance > On Mon, Sep 23, 2002 at 03:19:29PM +0400, Alexey S. Poluntchenko w

Re: howto create your own certificate

2002-09-23 Thread Christian Hohnstaedt
On Mon, Sep 23, 2002 at 03:19:29PM +0400, Alexey S. Poluntchenko wrote: > using openssl X509 api ? > mb any examples exist ? openssl-0.9.6g/demos/x509/* regards christian > > thanks __ OpenSSL Project

howto create your own certificate

2002-09-23 Thread Alexey S. Poluntchenko
using openssl X509 api ? mb any examples exist ?   thanks

Re: Howto use a pivrate key contained inside a ncipher module ??

2002-06-25 Thread Götz Babin-Ebell
Francois Guerry schrieb: > I do not think that you can use every nCipher key with OpenSSL. > You must build the key pair with a nCipher command (generatekey or keysafe) > with the option "application" = embed (see nCipher documentation). For OpenSSL Engine the application is hwcrhk... > The priv

Re: Howto use a pivrate key contained inside a ncipher module ??

2002-06-25 Thread Francois Guerry
e Coue" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Tuesday, June 25, 2002 9:53 AM Subject: Howto use a pivrate key contained inside a ncipher module ?? > Hi all, > > I've got a ncipher module in my box and I'd like to >

  1   2   >