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 in this distribution.
Refer to licensing information at http://www.artifex.com or contact
Artifex Software, Inc., 39 Mesa Street, Suite 108A, San Francisco,
CA 94129, USA, for further information.
*/
#ifndef iutil2_INCLUDED
# define iutil2_INCLUDED
#include "stdpre.h"
#include "gsfunc.h"
#include "iref.h"
#define MAX_PASSWORD 64
typedef struct password_s {
uint size;
byte data[MAX_PASSWORD];
} password;
# define NULL_PASSWORD {0, {0}}
int param_read_password(gs_param_list *, const char *, password *);
int param_write_password(gs_param_list *, const char *, const password *);
int param_check_password(gs_param_list *, const password *);
int dict_read_password(password *, const ref *, const char *);
int dict_write_password(const password *, ref *, const char *, bool);
#endif