Move the xmpp library to its new name.

This commit is contained in:
Ralph Giles
2005-06-14 14:10:31 +00:00
commit f27235b862
38 changed files with 6846 additions and 0 deletions

40
src/sasl.h Normal file
View File

@@ -0,0 +1,40 @@
/* sasl.h
** XMPP client library -- SASL authentication helpers
**
** Copyright (C) 2005 OGG, LCC. All rights reserved.
**
** This software is provided AS-IS with no warranty, either express
** or implied.
**
** This software is distributed under license and may not be copied,
** modified or distributed except as expressly authorized under the
** terms of the license contained in the file LICENSE.txt in this
** distribution.
*/
#ifndef __LIBXMPP_SASL_H__
#define __LIBXMPP_SASL_H__
#include "xmpp.h"
/** low-level sasl routines */
char *sasl_plain(xmpp_ctx_t *ctx, const char *authid, const char *password);
char *sasl_digest_md5(xmpp_ctx_t *ctx, const char *challenge,
const char *jid, const char *password);
/** Base64 encoding routines. Implemented according to RFC 3548 */
int base64_encoded_len(xmpp_ctx_t *ctx, const int len);
char *base64_encode(xmpp_ctx_t *ctx,
const unsigned char * const buffer, const int len);
int base64_decoded_len(xmpp_ctx_t *ctx,
const char * const buffer, const int len);
unsigned char *base64_decode(xmpp_ctx_t *ctx,
const char * const buffer, const int len);
#endif /* _LIBXMPP_SASL_H__ */