Blame src/lib/crypto/krb/string_to_cksumtype.c

Packit fd8b60
/* -*- mode: c; c-basic-offset: 4; indent-tabs-mode: nil -*- */
Packit fd8b60
/*
Packit fd8b60
 * Copyright (C) 1998 by the FundsXpress, INC.
Packit fd8b60
 *
Packit fd8b60
 * All rights reserved.
Packit fd8b60
 *
Packit fd8b60
 * Export of this software from the United States of America may require
Packit fd8b60
 * a specific license from the United States Government.  It is the
Packit fd8b60
 * responsibility of any person or organization contemplating export to
Packit fd8b60
 * obtain such a license before exporting.
Packit fd8b60
 *
Packit fd8b60
 * WITHIN THAT CONSTRAINT, permission to use, copy, modify, and
Packit fd8b60
 * distribute this software and its documentation for any purpose and
Packit fd8b60
 * without fee is hereby granted, provided that the above copyright
Packit fd8b60
 * notice appear in all copies and that both that copyright notice and
Packit fd8b60
 * this permission notice appear in supporting documentation, and that
Packit fd8b60
 * the name of FundsXpress. not be used in advertising or publicity pertaining
Packit fd8b60
 * to distribution of the software without specific, written prior
Packit fd8b60
 * permission.  FundsXpress makes no representations about the suitability of
Packit fd8b60
 * this software for any purpose.  It is provided "as is" without express
Packit fd8b60
 * or implied warranty.
Packit fd8b60
 *
Packit fd8b60
 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
Packit fd8b60
 * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
Packit fd8b60
 * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
Packit fd8b60
 */
Packit fd8b60
Packit fd8b60
#include "crypto_int.h"
Packit fd8b60
Packit fd8b60
krb5_error_code KRB5_CALLCONV
Packit fd8b60
krb5_string_to_cksumtype(char *string, krb5_cksumtype *cksumtypep)
Packit fd8b60
{
Packit fd8b60
    unsigned int i, j;
Packit fd8b60
    const char *alias;
Packit fd8b60
    const struct krb5_cksumtypes *ctp;
Packit fd8b60
Packit fd8b60
    for (i=0; i
Packit fd8b60
        ctp = &krb5int_cksumtypes_list[i];
Packit fd8b60
        if (strcasecmp(ctp->name, string) == 0) {
Packit fd8b60
            *cksumtypep = ctp->ctype;
Packit fd8b60
            return 0;
Packit fd8b60
        }
Packit fd8b60
#define MAX_ALIASES (sizeof(ctp->aliases) / sizeof(ctp->aliases[0]))
Packit fd8b60
        for (j = 0; j < MAX_ALIASES; j++) {
Packit fd8b60
            alias = ctp->aliases[j];
Packit fd8b60
            if (alias == NULL)
Packit fd8b60
                break;
Packit fd8b60
            if (strcasecmp(alias, string) == 0) {
Packit fd8b60
                *cksumtypep = ctp->ctype;
Packit fd8b60
                return 0;
Packit fd8b60
            }
Packit fd8b60
        }
Packit fd8b60
    }
Packit fd8b60
Packit fd8b60
    return EINVAL;
Packit fd8b60
}