Many Systems are beginning to use this SASLAuthProtocol (see RFC4422) for authenticating Clients in RESTFUL interactions. Examples are: Couchbase Server 2.0, Memcached e.t.c. I wonder if there is an erlang complete implementation of this authentication protocol. A Java implementation is a good example of what i am looking for. This Python Code seems to be the python implementation of this protocol. Is there an Erlang library i can quickly use to have SASLAuth support in my Application ?
Asked
Active
Viewed 355 times
1 Answers
3
I've not tried this, but it looks like it implements SASL for Erlang:
https://github.com/mikma/esasl
When searching for this kind of thing, take care to avoid the SASL in Erlang, which is System Architecture Support Libraries - "these are not the SASL you're looking for"...

Seb
- 6,507
- 2
- 19
- 23
-
true. Erlang has its own `SASL`, but its NOT the AUTH PROTOCOL in this Context. Thanks @Seb – Muzaaya Joshua Oct 11 '12 at 04:43
-
This Library has no `README` and so, using it is becoming a problem – Muzaaya Joshua Oct 11 '12 at 04:58