2 * Copyright (c) 2001 by Sun Microsystems, Inc.
6 #pragma ident "%Z%%M% %I% %E% SMI"
9 * The contents of this file are subject to the Netscape Public
10 * License Version 1.1 (the "License"); you may not use this file
11 * except in compliance with the License. You may obtain a copy of
12 * the License at http://www.mozilla.org/NPL/
14 * Software distributed under the License is distributed on an "AS
15 * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
16 * implied. See the License for the specific language governing
17 * rights and limitations under the License.
19 * The Original Code is Mozilla Communicator client code, released
22 * The Initial Developer of the Original Code is Netscape
23 * Communications Corporation. Portions created by Netscape are
24 * Copyright (C) 1998-1999 Netscape Communications Corporation. All
31 * Copyright (c) 1996 Regents of the University of Michigan.
32 * All rights reserved.
34 * Redistribution and use in source and binary forms are permitted
35 * provided that this notice is preserved and that due credit is given
36 * to the University of Michigan at Ann Arbor. The name of the University
37 * may not be used to endorse or promote products derived from this
38 * software without specific prior written permission. This software
39 * is provided ``as is'' without express or implied warranty.
49 #define LDIF_VERSION_ONE 1 /* LDIF standard version */
51 #define LDIF_MAX_LINE_WIDTH 76 /* maximum length of LDIF lines */
54 * Macro to calculate maximum number of bytes that the base64 equivalent
55 * of an item that is "vlen" bytes long will take up. Base64 encoding
56 * uses one byte for every six bits in the value plus up to two pad bytes.
58 #define LDIF_BASE64_LEN(vlen) (((vlen) * 4 / 3 ) + 3)
61 * Macro to calculate maximum size that an LDIF-encoded type (length
62 * tlen) and value (length vlen) will take up: room for type + ":: " +
63 * first newline + base64 value + continued lines. Each continued line
64 * needs room for a newline and a leading space character.
66 #define LDIF_SIZE_NEEDED(tlen,vlen) \
67 ((tlen) + 4 + LDIF_BASE64_LEN(vlen) \
68 + ((LDIF_BASE64_LEN(vlen) + tlen + 3) / LDIF_MAX_LINE_WIDTH * 2 ))
71 * Options for ldif_put_type_and_value_with_options() and
72 * ldif_type_and_value_with_options().
74 #define LDIF_OPT_NOWRAP 0x01UL
75 #define LDIF_OPT_VALUE_IS_URL 0x02UL
76 #define LDIF_OPT_MINIMAL_ENCODING 0x04UL
78 int str_parse_line( char *line
, char **type
, char **value
, int *vlen
);
79 char * str_getline( char **next
);
80 void ldif_put_type_and_value( char **out
, char *t
, char *val
, int vlen
);
81 void ldif_put_type_and_value_nowrap( char **out
, char *t
, char *val
, int vlen
);
82 void ldif_put_type_and_value_with_options( char **out
, char *t
, char *val
,
83 int vlen
, unsigned long options
);
84 char *ldif_type_and_value( char *type
, char *val
, int vlen
);
85 char *ldif_type_and_value_nowrap( char *type
, char *val
, int vlen
);
86 char *ldif_type_and_value_with_options( char *type
, char *val
, int vlen
,
87 unsigned long options
);
88 int ldif_base64_decode( char *src
, unsigned char *dst
);
89 int ldif_base64_encode( unsigned char *src
, char *dst
, int srclen
,
91 int ldif_base64_encode_nowrap( unsigned char *src
, char *dst
, int srclen
,
93 char *ldif_get_entry( FILE *fp
, int *lineno
);