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

Packit fd8b60
/* -*- mode: c; c-basic-offset: 4; indent-tabs-mode: nil -*- */
Packit fd8b60
/* lib/crypto/krb/checksum_dk_cmac.c */
Packit fd8b60
/*
Packit fd8b60
 * Copyright 2010 by the Massachusetts Institute of Technology.
Packit fd8b60
 * All Rights Reserved.
Packit fd8b60
 *
Packit fd8b60
 * Export of this software from the United States of America may
Packit fd8b60
 *   require a specific license from the United States Government.
Packit fd8b60
 *   It is the responsibility of any person or organization contemplating
Packit fd8b60
 *   export to 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 M.I.T. not be used in advertising or publicity pertaining
Packit fd8b60
 * to distribution of the software without specific, written prior
Packit fd8b60
 * permission.  Furthermore if you modify this software you must label
Packit fd8b60
 * your software as modified software and not distribute it in such a
Packit fd8b60
 * fashion that it might be confused with the original M.I.T. software.
Packit fd8b60
 * M.I.T. 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
Packit fd8b60
#include "crypto_int.h"
Packit fd8b60
Packit fd8b60
#define K5CLENGTH 5 /* 32 bit net byte order integer + one byte seed */
Packit fd8b60
Packit fd8b60
krb5_error_code
Packit fd8b60
krb5int_dk_cmac_checksum(const struct krb5_cksumtypes *ctp,
Packit fd8b60
                         krb5_key key, krb5_keyusage usage,
Packit fd8b60
                         const krb5_crypto_iov *data, size_t num_data,
Packit fd8b60
                         krb5_data *output)
Packit fd8b60
{
Packit fd8b60
    const struct krb5_enc_provider *enc = ctp->enc;
Packit fd8b60
    krb5_error_code ret;
Packit fd8b60
    unsigned char constantdata[K5CLENGTH];
Packit fd8b60
    krb5_data datain;
Packit fd8b60
    krb5_key kc;
Packit fd8b60
Packit fd8b60
    /* Derive the key. */
Packit fd8b60
    datain = make_data(constantdata, K5CLENGTH);
Packit fd8b60
    store_32_be(usage, constantdata);
Packit fd8b60
    constantdata[4] = (char) 0x99;
Packit fd8b60
    ret = krb5int_derive_key(enc, NULL, key, &kc, &datain,
Packit fd8b60
                             DERIVE_SP800_108_CMAC);
Packit fd8b60
    if (ret != 0)
Packit fd8b60
        return ret;
Packit fd8b60
Packit fd8b60
    /* Hash the data. */
Packit fd8b60
    ret = krb5int_cmac_checksum(enc, kc, data, num_data, output);
Packit fd8b60
    if (ret != 0)
Packit fd8b60
        memset(output->data, 0, output->length);
Packit fd8b60
Packit fd8b60
    krb5_k_free_key(NULL, kc);
Packit fd8b60
    return ret;
Packit fd8b60
}