rust-ldap icon indicating copy to clipboard operation
rust-ldap copied to clipboard

Plans to support LDAPS?

Open kardeiz opened this issue 9 years ago • 2 comments

Do you plan on supporting LDAP over SSL in this crate?

I tried swapping out the TcpStream for SslStream<TcpStream> in the connection setup, but am getting Error: Unexpected end of file whenever I try to do a simple bind. I tried digging around some, but the whole BER/Tag system is a little daunting...

kardeiz avatar Mar 11 '16 18:03 kardeiz

I do very much plan on supporting LDAPS. Sadly I currently don't have the time to develop on this crate too much, hopefully that will change the next few weeks.

LDAPS uses STARTTLS however (Refer to RFC 4511 Section 4.14 - StartTLS Operation), so it shouldn't be too complicated to add.

On Fri, Mar 11, 2016 at 10:23:31AM -0800, kardeiz wrote:

Do you plan on supporting LDAP over SSL in this crate?

I tried swapping out the TcpStream for SslStream<TcpStream> in the connection setup, but am getting Error: Unexpected end of file whenever I try to do a simple bind. I tried digging around some, but the whole BER/Tag system is a little daunting...


Reply to this email directly or view it on GitHub: https://github.com/Dean4Devil/rust-ldap/issues/5

dequbed avatar Mar 11 '16 18:03 dequbed

LDAPS support would be fantastic. If you have any other materials, I'd be willing to help out, albeit I'm only learning Rust.

sholsapp avatar Aug 19 '16 17:08 sholsapp