41 lines
1.2 KiB
C
41 lines
1.2 KiB
C
/* sasl.h
|
|
** strophe XMPP client library -- SASL authentication helpers
|
|
**
|
|
** Copyright (C) 2005-2008 OGG, LLC. 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 __LIBSTROPHE_SASL_H__
|
|
#define __LIBSTROPHE_SASL_H__
|
|
|
|
#include "strophe.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__ */
|