1999-08-31 09:17:01 +08:00
|
|
|
/* $OpenLDAP$ */
|
1998-12-29 03:51:35 +08:00
|
|
|
/*
|
2000-05-13 10:25:54 +08:00
|
|
|
* Copyright 1998-2000 The OpenLDAP Foundation, Redwood City, California, USA
|
1999-07-29 04:31:41 +08:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms are permitted only
|
|
|
|
* as authorized by the OpenLDAP Public License. A copy of this
|
|
|
|
* license is available at http://www.OpenLDAP.org/license.html or
|
|
|
|
* in file LICENSE in the top-level directory of the distribution.
|
1998-12-29 03:51:35 +08:00
|
|
|
*/
|
|
|
|
|
1998-09-03 05:31:35 +08:00
|
|
|
#ifndef _LUTIL_H
|
|
|
|
#define _LUTIL_H 1
|
|
|
|
|
1998-10-25 09:41:42 +08:00
|
|
|
#include <ldap_cdefs.h>
|
1999-08-31 13:18:06 +08:00
|
|
|
#include <lber_types.h>
|
|
|
|
|
1998-09-03 05:31:35 +08:00
|
|
|
/*
|
|
|
|
* Include file for LDAP utility routine
|
|
|
|
*/
|
|
|
|
|
1999-10-28 15:28:53 +08:00
|
|
|
LDAP_BEGIN_DECL
|
|
|
|
|
1999-10-25 09:44:47 +08:00
|
|
|
/* n octets encode into ceiling(n/3) * 4 bytes */
|
|
|
|
/* Avoid floating point math by through extra padding */
|
|
|
|
|
|
|
|
#define LUTIL_BASE64_ENCODE_LEN(n) ((n)/3 * 4 + 4)
|
|
|
|
#define LUTIL_BASE64_DECODE_LEN(n) ((n)/4 * 3)
|
|
|
|
|
Protoized, moved extern definitions to .h files, fixed related bugs.
Most function and variable definitions are now preceded by its extern
definition, for error checking. Retyped a number of functions, usually
to return void. Fixed a number of printf format errors.
API changes (in ldap/include):
Added avl_dup_ok, avl_prefixapply, removed ber_fatten (probably typo
for ber_flatten), retyped ldap_sort_strcasecmp, grew lutil.h.
A number of `extern' declarations are left (some added by protoize), to
be cleaned away later. Mostly strdup(), strcasecmp(), mktemp(), optind,
optarg, errno.
1998-11-16 06:40:11 +08:00
|
|
|
/* ISC Base64 Routines */
|
|
|
|
/* base64.c */
|
1999-05-19 09:12:33 +08:00
|
|
|
|
2000-06-19 03:48:07 +08:00
|
|
|
LDAP_LUTIL_F( int )
|
1999-05-19 09:12:33 +08:00
|
|
|
lutil_b64_ntop LDAP_P((
|
|
|
|
unsigned char const *,
|
|
|
|
size_t,
|
|
|
|
char *,
|
|
|
|
size_t));
|
|
|
|
|
2000-06-19 03:48:07 +08:00
|
|
|
LDAP_LUTIL_F( int )
|
1999-05-19 09:12:33 +08:00
|
|
|
lutil_b64_pton LDAP_P((
|
|
|
|
char const *,
|
|
|
|
unsigned char *,
|
|
|
|
size_t));
|
|
|
|
|
Protoized, moved extern definitions to .h files, fixed related bugs.
Most function and variable definitions are now preceded by its extern
definition, for error checking. Retyped a number of functions, usually
to return void. Fixed a number of printf format errors.
API changes (in ldap/include):
Added avl_dup_ok, avl_prefixapply, removed ber_fatten (probably typo
for ber_flatten), retyped ldap_sort_strcasecmp, grew lutil.h.
A number of `extern' declarations are left (some added by protoize), to
be cleaned away later. Mostly strdup(), strcasecmp(), mktemp(), optind,
optarg, errno.
1998-11-16 06:40:11 +08:00
|
|
|
/* detach.c */
|
2000-06-19 03:48:07 +08:00
|
|
|
LDAP_LUTIL_F( void )
|
1999-05-19 09:12:33 +08:00
|
|
|
lutil_detach LDAP_P((
|
|
|
|
int debug,
|
|
|
|
int do_close));
|
|
|
|
|
1999-10-27 06:57:39 +08:00
|
|
|
/* entropy.c */
|
2000-06-19 03:48:07 +08:00
|
|
|
LDAP_LUTIL_F( int )
|
1999-11-24 07:02:46 +08:00
|
|
|
lutil_entropy LDAP_P((
|
2000-10-14 10:14:38 +08:00
|
|
|
unsigned char *buf,
|
1999-12-13 12:53:59 +08:00
|
|
|
ber_len_t nbytes ));
|
1999-10-27 06:57:39 +08:00
|
|
|
|
Protoized, moved extern definitions to .h files, fixed related bugs.
Most function and variable definitions are now preceded by its extern
definition, for error checking. Retyped a number of functions, usually
to return void. Fixed a number of printf format errors.
API changes (in ldap/include):
Added avl_dup_ok, avl_prefixapply, removed ber_fatten (probably typo
for ber_flatten), retyped ldap_sort_strcasecmp, grew lutil.h.
A number of `extern' declarations are left (some added by protoize), to
be cleaned away later. Mostly strdup(), strcasecmp(), mktemp(), optind,
optarg, errno.
1998-11-16 06:40:11 +08:00
|
|
|
/* passwd.c */
|
1999-12-09 09:11:16 +08:00
|
|
|
struct berval; /* avoid pulling in lber.h */
|
|
|
|
|
2000-06-19 03:48:07 +08:00
|
|
|
LDAP_LUTIL_F( int )
|
2000-04-25 21:28:03 +08:00
|
|
|
lutil_authpasswd LDAP_P((
|
|
|
|
const struct berval *passwd, /* stored password */
|
|
|
|
const struct berval *cred, /* user supplied value */
|
|
|
|
const char **methods ));
|
|
|
|
|
2000-06-19 03:48:07 +08:00
|
|
|
LDAP_LUTIL_F( int )
|
2000-04-25 21:28:03 +08:00
|
|
|
lutil_authpasswd_hash LDAP_P((
|
|
|
|
const struct berval *cred,
|
|
|
|
struct berval **passwd, /* password to store */
|
|
|
|
struct berval **salt, /* salt to store */
|
|
|
|
const char *method ));
|
|
|
|
|
2000-05-10 12:29:51 +08:00
|
|
|
#if defined( SLAPD_SPASSWD ) && defined( HAVE_CYRUS_SASL )
|
|
|
|
/* cheat to avoid pulling in <sasl.h> */
|
2000-06-19 03:48:07 +08:00
|
|
|
LDAP_LUTIL_F( struct sasl_conn * ) lutil_passwd_sasl_conn;
|
2000-05-10 12:29:51 +08:00
|
|
|
#endif
|
|
|
|
|
2000-06-19 03:48:07 +08:00
|
|
|
LDAP_LUTIL_F( int )
|
1999-05-19 09:12:33 +08:00
|
|
|
lutil_passwd LDAP_P((
|
1999-12-09 09:11:16 +08:00
|
|
|
const struct berval *passwd, /* stored password */
|
|
|
|
const struct berval *cred, /* user supplied value */
|
1999-06-30 06:24:53 +08:00
|
|
|
const char **methods ));
|
Protoized, moved extern definitions to .h files, fixed related bugs.
Most function and variable definitions are now preceded by its extern
definition, for error checking. Retyped a number of functions, usually
to return void. Fixed a number of printf format errors.
API changes (in ldap/include):
Added avl_dup_ok, avl_prefixapply, removed ber_fatten (probably typo
for ber_flatten), retyped ldap_sort_strcasecmp, grew lutil.h.
A number of `extern' declarations are left (some added by protoize), to
be cleaned away later. Mostly strdup(), strcasecmp(), mktemp(), optind,
optarg, errno.
1998-11-16 06:40:11 +08:00
|
|
|
|
2000-06-19 03:48:07 +08:00
|
|
|
LDAP_LUTIL_F( struct berval * )
|
1999-12-13 12:53:59 +08:00
|
|
|
lutil_passwd_generate LDAP_P(( ber_len_t ));
|
1999-12-10 12:52:32 +08:00
|
|
|
|
2000-06-19 03:48:07 +08:00
|
|
|
LDAP_LUTIL_F( struct berval * )
|
1999-12-10 12:52:32 +08:00
|
|
|
lutil_passwd_hash LDAP_P((
|
1999-12-09 09:11:16 +08:00
|
|
|
const struct berval *passwd,
|
1999-12-08 12:37:59 +08:00
|
|
|
const char *method ));
|
|
|
|
|
2000-06-19 03:48:07 +08:00
|
|
|
LDAP_LUTIL_F( int )
|
1999-12-09 09:11:16 +08:00
|
|
|
lutil_passwd_scheme LDAP_P((
|
|
|
|
const char *scheme ));
|
1999-09-26 06:13:25 +08:00
|
|
|
|
1999-08-18 03:00:59 +08:00
|
|
|
/* utils.c */
|
2000-06-19 03:48:07 +08:00
|
|
|
LDAP_LUTIL_F( char* )
|
1999-08-18 03:00:59 +08:00
|
|
|
lutil_progname LDAP_P((
|
|
|
|
const char* name,
|
|
|
|
int argc,
|
|
|
|
char *argv[] ));
|
|
|
|
|
1999-08-31 13:18:06 +08:00
|
|
|
/* sockpair.c */
|
2000-06-19 03:48:07 +08:00
|
|
|
LDAP_LUTIL_F( int )
|
2000-10-18 08:32:35 +08:00
|
|
|
lutil_pair( ber_socket_t sd[2] );
|
1999-08-18 03:00:59 +08:00
|
|
|
|
1998-10-25 09:41:42 +08:00
|
|
|
LDAP_END_DECL
|
1998-09-03 05:31:35 +08:00
|
|
|
|
|
|
|
#endif /* _LUTIL_H */
|