File: authsaslclientplain.c

package info (click to toggle)
courier-authlib 0.58-4%2Betch3
  • links: PTS
  • area: main
  • in suites: etch
  • size: 16,212 kB
  • ctags: 1,896
  • sloc: ansic: 21,550; sh: 14,071; makefile: 866; perl: 842; cpp: 284
file content (53 lines) | stat: -rw-r--r-- 1,028 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/* $Id: authsaslclientplain.c,v 1.2 2004/10/21 00:10:49 mrsam Exp $ */

/*
** Copyright 2000 Double Precision, Inc.  See COPYING for
** distribution information.
*/

#include	"courier_auth_config.h"
#include	"courierauthsasl.h"
#include	"authsaslclient.h"
#include	<stdlib.h>
#include	<stdio.h>
#include	<ctype.h>
#include	<string.h>
#include	<errno.h>

int authsaslclient_plain(const struct authsaslclientinfo *info)
{
char *q, *r;
int	i;
const char *userid, *password;
size_t userid_l, password_l;

	userid=info->userid ? info->userid:"";
	password=info->password ? info->password:"";

	userid_l=strlen(userid);
	password_l=strlen(password);

	q=malloc(userid_l+password_l+2);

	if (!q)
	{
		perror("malloc");
		return (AUTHSASL_ERROR);
	}
	q[0]=0;
	strcpy(q+1, userid);
	memcpy(q+2+userid_l, password, password_l);

	r=authsasl_tobase64(q, userid_l+password_l+2);
	free(q);

	if (!r)
	{
		perror("malloc");
		return (AUTHSASL_ERROR);
	}

	i=(*info->plain_conv_func)("PLAIN", r, info->conv_func_arg);
	free(r);
	return (i);
}