Blame src/lib/crypto/krb/string_to_key.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_c_string_to_key(krb5_context context, krb5_enctype enctype,
Packit fd8b60
                     const krb5_data *string, const krb5_data *salt,
Packit fd8b60
                     krb5_keyblock *key)
Packit fd8b60
{
Packit fd8b60
    return krb5_c_string_to_key_with_params(context, enctype, string, salt,
Packit fd8b60
                                            NULL, key);
Packit fd8b60
}
Packit fd8b60
Packit fd8b60
krb5_error_code KRB5_CALLCONV
Packit fd8b60
krb5_c_string_to_key_with_params(krb5_context context, krb5_enctype enctype,
Packit fd8b60
                                 const krb5_data *string,
Packit fd8b60
                                 const krb5_data *salt,
Packit fd8b60
                                 const krb5_data *params, krb5_keyblock *key)
Packit fd8b60
{
Packit fd8b60
    krb5_error_code ret;
Packit fd8b60
    krb5_data empty = empty_data();
Packit fd8b60
    const struct krb5_keytypes *ktp;
Packit fd8b60
    size_t keylength;
Packit fd8b60
Packit fd8b60
    ktp = find_enctype(enctype);
Packit fd8b60
    if (ktp == NULL)
Packit fd8b60
        return KRB5_BAD_ENCTYPE;
Packit fd8b60
    keylength = ktp->enc->keylength;
Packit fd8b60
Packit fd8b60
    /* For compatibility with past behavior, treat a null salt as empty. */
Packit fd8b60
    if (salt == NULL)
Packit fd8b60
        salt = ∅
Packit fd8b60
Packit fd8b60
    /* Fail gracefully if someone is using the old AFS string-to-key hack. */
Packit fd8b60
    if (salt->length == SALT_TYPE_AFS_LENGTH)
Packit fd8b60
        return EINVAL;
Packit fd8b60
Packit fd8b60
    key->contents = malloc(keylength);
Packit fd8b60
    if (key->contents == NULL)
Packit fd8b60
        return ENOMEM;
Packit fd8b60
Packit fd8b60
    key->magic = KV5M_KEYBLOCK;
Packit fd8b60
    key->enctype = enctype;
Packit fd8b60
    key->length = keylength;
Packit fd8b60
Packit fd8b60
    ret = (*ktp->str2key)(ktp, string, salt, params, key);
Packit fd8b60
    if (ret) {
Packit fd8b60
        zapfree(key->contents, keylength);
Packit fd8b60
        key->length = 0;
Packit fd8b60
        key->contents = NULL;
Packit fd8b60
    }
Packit fd8b60
Packit fd8b60
    return ret;
Packit fd8b60
}