* [Caml-list] ssl-libraries @ 2004-10-12 9:59 Johann Spies 2004-10-12 16:57 ` David MENTRE ` (2 more replies) 0 siblings, 3 replies; 7+ messages in thread From: Johann Spies @ 2004-10-12 9:59 UTC (permalink / raw) To: caml-list Are there any libraries available for ssl-connections using ocaml? Regards Johann -- Johann Spies Telefoon: 021-808 4036 Informasietegnologie, Universiteit van Stellenbosch "Blessed is the man who makes the LORD his trust, who does not look to the proud, to those who turn aside to false gods." Psalms 40:4 ------------------- To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/ Beginner's list: http://groups.yahoo.com/group/ocaml_beginners ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [Caml-list] ssl-libraries 2004-10-12 9:59 [Caml-list] ssl-libraries Johann Spies @ 2004-10-12 16:57 ` David MENTRE 2004-10-12 18:29 ` Samuel Mimram 2004-10-12 18:30 ` Jason Hickey 2 siblings, 0 replies; 7+ messages in thread From: David MENTRE @ 2004-10-12 16:57 UTC (permalink / raw) To: Johann Spies; +Cc: caml-list Johann Spies <jspies@sun.ac.za> writes: > Are there any libraries available for ssl-connections using ocaml? I would also be interested in such a library. Yours, d. -- pub 1024D/A3AD7A2A 2004-10-03 David MENTRE <dmentre@linux-france.org> 5996 CC46 4612 9CA4 3562 D7AC 6C67 9E96 A3AD 7A2A ------------------- To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/ Beginner's list: http://groups.yahoo.com/group/ocaml_beginners ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [Caml-list] ssl-libraries 2004-10-12 9:59 [Caml-list] ssl-libraries Johann Spies 2004-10-12 16:57 ` David MENTRE @ 2004-10-12 18:29 ` Samuel Mimram [not found] ` <C4A3E5EB-4260-11D9-A46E-000A95A1E69A@csun.edu> 2004-10-12 18:30 ` Jason Hickey 2 siblings, 1 reply; 7+ messages in thread From: Samuel Mimram @ 2004-10-12 18:29 UTC (permalink / raw) To: Johann Spies; +Cc: caml-list Hello, > Are there any libraries available for ssl-connections using ocaml? I have made small & quick bindings to ssl to be able to use ssl encryption with unix sockets. I am willing to improve it, just tell me if you need some (or much) more functions. The library is named ocaml-ssl and you can find it here : http://savonet.sf.net/ Regards, Samuel. ------------------- To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/ Beginner's list: http://groups.yahoo.com/group/ocaml_beginners ^ permalink raw reply [flat|nested] 7+ messages in thread
[parent not found: <C4A3E5EB-4260-11D9-A46E-000A95A1E69A@csun.edu>]
* Re: [Caml-list] ssl-libraries [not found] ` <C4A3E5EB-4260-11D9-A46E-000A95A1E69A@csun.edu> @ 2004-11-30 9:46 ` Samuel Mimram 2004-11-30 16:46 ` Eric Stokes 0 siblings, 1 reply; 7+ messages in thread From: Samuel Mimram @ 2004-11-30 9:46 UTC (permalink / raw) To: Eric Stokes, caml-list Hi, The context creation functions are already parametrized by the version of the protocol to use (SSL v2, v3, v2/3, TLS v1) in the CVS plus a few bug corrections. You might want to check it out. There are a few more things that I'd like to integrate and I'll make a new release then. Thanks for the fedback. Regards, Samuel. Eric Stokes wrote: > Hi, I've tried out your ssl bindings, and they work quite well. I do > have one suggestion though. It seems you are moving toward eventually > allowing the user to specify the method, however until you get there you > may want to consider using SSLv23_method instead of SSLv2_method, as it > is the most compatible. I am adding optional ssl support to ocamldap > (ocamldap.sourceforge.net) using your binding, and I have found that > the SSLv2_method creates some problems talking to Active Directory. It > seems Microsoft's ssl libraries are not very compatible with SSLv2 > anymore, they seem to prefer TLS. I would include a patch, but its such > a simple change that it wouldn't be worth it :-). Anyway, thanks a lot > for making an ssl binding. > > -Eric > > On Oct 12, 2004, at 11:29 AM, Samuel Mimram wrote: > >> Hello, >> >>> Are there any libraries available for ssl-connections using ocaml? >> >> >> I have made small & quick bindings to ssl to be able to use ssl >> encryption with unix sockets. I am willing to improve it, just tell me >> if you need some (or much) more functions. >> >> The library is named ocaml-ssl and you can find it here : >> >> http://savonet.sf.net/ >> >> Regards, >> >> Samuel. >> >> ------------------- >> To unsubscribe, mail caml-list-request@inria.fr Archives: >> http://caml.inria.fr >> Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: >> http://caml.inria.fr/FAQ/ >> Beginner's list: http://groups.yahoo.com/group/ocaml_beginners >> > ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [Caml-list] ssl-libraries 2004-11-30 9:46 ` Samuel Mimram @ 2004-11-30 16:46 ` Eric Stokes 0 siblings, 0 replies; 7+ messages in thread From: Eric Stokes @ 2004-11-30 16:46 UTC (permalink / raw) To: Samuel Mimram; +Cc: caml-list Great, I'll take a look. On Nov 30, 2004, at 1:46 AM, Samuel Mimram wrote: > Hi, > > The context creation functions are already parametrized by the version > of the protocol to use (SSL v2, v3, v2/3, TLS v1) in the CVS plus a > few bug corrections. You might want to check it out. There are a few > more things that I'd like to integrate and I'll make a new release > then. > Thanks for the fedback. > > Regards, > > Samuel. > > > Eric Stokes wrote: >> Hi, I've tried out your ssl bindings, and they work quite well. I do >> have one suggestion though. It seems you are moving toward eventually >> allowing the user to specify the method, however until you get there >> you may want to consider using SSLv23_method instead of SSLv2_method, >> as it is the most compatible. I am adding optional ssl support to >> ocamldap (ocamldap.sourceforge.net) using your binding, and I have >> found that the SSLv2_method creates some problems talking to Active >> Directory. It seems Microsoft's ssl libraries are not very compatible >> with SSLv2 anymore, they seem to prefer TLS. I would include a patch, >> but its such a simple change that it wouldn't be worth it :-). >> Anyway, thanks a lot for making an ssl binding. >> -Eric >> On Oct 12, 2004, at 11:29 AM, Samuel Mimram wrote: >>> Hello, >>> >>>> Are there any libraries available for ssl-connections using ocaml? >>> >>> >>> I have made small & quick bindings to ssl to be able to use ssl >>> encryption with unix sockets. I am willing to improve it, just tell >>> me if you need some (or much) more functions. >>> >>> The library is named ocaml-ssl and you can find it here : >>> >>> http://savonet.sf.net/ >>> >>> Regards, >>> >>> Samuel. >>> >>> ------------------- >>> To unsubscribe, mail caml-list-request@inria.fr Archives: >>> http://caml.inria.fr >>> Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: >>> http://caml.inria.fr/FAQ/ >>> Beginner's list: http://groups.yahoo.com/group/ocaml_beginners >>> > > _______________________________________________ > Caml-list mailing list. Subscription management: > http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list > Archives: http://caml.inria.fr > Beginner's list: http://groups.yahoo.com/group/ocaml_beginners > Bug reports: http://caml.inria.fr/bin/caml-bugs > ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [Caml-list] ssl-libraries 2004-10-12 9:59 [Caml-list] ssl-libraries Johann Spies 2004-10-12 16:57 ` David MENTRE 2004-10-12 18:29 ` Samuel Mimram @ 2004-10-12 18:30 ` Jason Hickey 2004-10-13 7:58 ` Johann Spies 2 siblings, 1 reply; 7+ messages in thread From: Jason Hickey @ 2004-10-12 18:30 UTC (permalink / raw) To: Johann Spies; +Cc: caml-list Johann Spies wrote: > Are there any libraries available for ssl-connections using ocaml? > > Regards > Johann We use openssl in MetaPRL and have implemented an appropriate OCaml API. I have extracted the SSL-specific files and placed them in http://www.cs.caltech.edu/~jyh/ssl. This can get you started, but it may be a bit more than what you want--it also includes buffered IO and a printf function. You can strip the buffered IO code if you want just a plain socket interface. Jason -- Jason Hickey http://www.cs.caltech.edu/~jyh Caltech Computer Science Tel: 626-395-6568 FAX: 626-792-4257 ------------------- To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/ Beginner's list: http://groups.yahoo.com/group/ocaml_beginners ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [Caml-list] ssl-libraries 2004-10-12 18:30 ` Jason Hickey @ 2004-10-13 7:58 ` Johann Spies 0 siblings, 0 replies; 7+ messages in thread From: Johann Spies @ 2004-10-13 7:58 UTC (permalink / raw) To: caml-list Jason Hickey wrote: > > We use openssl in MetaPRL and have implemented an appropriate OCaml API. > I have extracted the SSL-specific files and placed them in > http://www.cs.caltech.edu/~jyh/ssl. This can get you started, but it > may be a bit more than what you want--it also includes buffered IO and a > printf function. You can strip the buffered IO code if you want just a > plain socket interface. And Samuel wrote: > I have made small & quick bindings to ssl to be able to use ssl > encryption with unix sockets. I am willing to improve it, just tell me > if you need some (or much) more functions. > The library is named ocaml-ssl and you can find it here : > http://savonet.sf.net/ Thanks to both of you. I will try it out. A am an amateur programmer and I want to develop a tool to authenticate against our firewall. Regards. Johann -- Johann Spies Telefoon: 021-808 4036 Informasietegnologie, Universiteit van Stellenbosch "And he shall judge among the nations, and shall rebuke many people; and they shall beat their swords into plowshares, and their spears into pruninghooks; nation shall not lift up sword against nation, neither shall they learn war any more." Isaiah 2:4 ------------------- To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/ Beginner's list: http://groups.yahoo.com/group/ocaml_beginners ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2004-11-30 16:46 UTC | newest] Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed) -- links below jump to the message on this page -- 2004-10-12 9:59 [Caml-list] ssl-libraries Johann Spies 2004-10-12 16:57 ` David MENTRE 2004-10-12 18:29 ` Samuel Mimram [not found] ` <C4A3E5EB-4260-11D9-A46E-000A95A1E69A@csun.edu> 2004-11-30 9:46 ` Samuel Mimram 2004-11-30 16:46 ` Eric Stokes 2004-10-12 18:30 ` Jason Hickey 2004-10-13 7:58 ` Johann Spies
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox