Blame src/lib/crypto/krb/make_random_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_make_random_key(krb5_context context, krb5_enctype enctype,
Packit fd8b60
                       krb5_keyblock *random_key)
Packit fd8b60
{
Packit fd8b60
    krb5_error_code ret;
Packit fd8b60
    const struct krb5_keytypes *ktp;
Packit fd8b60
    const struct krb5_enc_provider *enc;
Packit fd8b60
    size_t keybytes, keylength;
Packit fd8b60
    krb5_data random_data;
Packit fd8b60
    unsigned char *bytes = NULL;
Packit fd8b60
Packit fd8b60
    ktp = find_enctype(enctype);
Packit fd8b60
    if (ktp == NULL)
Packit fd8b60
        return KRB5_BAD_ENCTYPE;
Packit fd8b60
    enc = ktp->enc;
Packit fd8b60
Packit fd8b60
    keybytes = enc->keybytes;
Packit fd8b60
    keylength = enc->keylength;
Packit fd8b60
Packit fd8b60
    bytes = k5alloc(keybytes, &ret;;
Packit fd8b60
    if (ret)
Packit fd8b60
        return ret;
Packit fd8b60
    random_key->contents = k5alloc(keylength, &ret;;
Packit fd8b60
    if (ret)
Packit fd8b60
        goto cleanup;
Packit fd8b60
Packit fd8b60
    random_data.data = (char *) bytes;
Packit fd8b60
    random_data.length = keybytes;
Packit fd8b60
Packit fd8b60
    ret = krb5_c_random_make_octets(context, &random_data);
Packit fd8b60
    if (ret)
Packit fd8b60
        goto cleanup;
Packit fd8b60
Packit fd8b60
    random_key->magic = KV5M_KEYBLOCK;
Packit fd8b60
    random_key->enctype = enctype;
Packit fd8b60
    random_key->length = keylength;
Packit fd8b60
Packit fd8b60
    ret = (*ktp->rand2key)(&random_data, random_key);
Packit fd8b60
Packit fd8b60
cleanup:
Packit fd8b60
    if (ret) {
Packit fd8b60
        zapfree(random_key->contents, keylength);
Packit fd8b60
        random_key->contents = NULL;
Packit fd8b60
    }
Packit fd8b60
    zapfree(bytes, keybytes);
Packit fd8b60
    return ret;
Packit fd8b60
}