2N/A/*
2N/A * Copyright (C) 1998 by the FundsXpress, INC.
2N/A *
2N/A * All rights reserved.
2N/A *
2N/A * Export of this software from the United States of America may require
2N/A * a specific license from the United States Government. It is the
2N/A * responsibility of any person or organization contemplating export to
2N/A * obtain such a license before exporting.
2N/A *
2N/A * WITHIN THAT CONSTRAINT, permission to use, copy, modify, and
2N/A * distribute this software and its documentation for any purpose and
2N/A * without fee is hereby granted, provided that the above copyright
2N/A * notice appear in all copies and that both that copyright notice and
2N/A * this permission notice appear in supporting documentation, and that
2N/A * the name of FundsXpress. not be used in advertising or publicity pertaining
2N/A * to distribution of the software without specific, written prior
2N/A * permission. FundsXpress makes no representations about the suitability of
2N/A * this software for any purpose. It is provided "as is" without express
2N/A * or implied warranty.
2N/A *
2N/A * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
2N/A * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
2N/A * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
2N/A */
2N/A
2N/A#include <k5-int.h>
2N/A#include <cksumtypes.h>
2N/A
2N/Akrb5_boolean KRB5_CALLCONV
2N/Akrb5_c_valid_cksumtype(krb5_cksumtype ctype)
2N/A{
2N/A int i;
2N/A
2N/A for (i=0; i<krb5int_cksumtypes_length; i++) {
2N/A if (krb5int_cksumtypes_list[i].ctype == ctype)
2N/A return(1);
2N/A }
2N/A
2N/A return(0);
2N/A}
2N/A
2N/Akrb5_boolean KRB5_CALLCONV
2N/Avalid_cksumtype(krb5_cksumtype ctype)
2N/A{
2N/A return krb5_c_valid_cksumtype (ctype);
2N/A}