author | Chris Jones <chris@cjones.org> |
Thu, 17 Oct 2013 22:41:08 -0600 | |
changeset 171 | 2f6ae54a2bd1 |
parent 143 | 62166e57800e |
permissions | -rw-r--r-- |
package xmpp import ( "testing" ) func TestSaslDigest(t *testing.T) { // These values are from RFC2831, section 4. obs := saslDigestResponse("chris", "elwood.innosoft.com", "secret", "OA6MG9tEQGm2hh", "OA6MHXh6VqTrRk", "AUTHENTICATE", "imap/elwood.innosoft.com", "00000001") exp := "d388dad90d4bbd760a152321f2143af7" assertEquals(t, exp, obs) }