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

Packit fd8b60
/* -*- mode: c; c-basic-offset: 4; indent-tabs-mode: nil -*- */
Packit fd8b60
/* lib/crypto/krb/verify_checksum_iov.c */
Packit fd8b60
/*
Packit fd8b60
 * Copyright 2008 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
krb5_error_code KRB5_CALLCONV
Packit fd8b60
krb5_k_verify_checksum_iov(krb5_context context,
Packit fd8b60
                           krb5_cksumtype checksum_type,
Packit fd8b60
                           krb5_key key,
Packit fd8b60
                           krb5_keyusage usage,
Packit fd8b60
                           const krb5_crypto_iov *data,
Packit fd8b60
                           size_t num_data,
Packit fd8b60
                           krb5_boolean *valid)
Packit fd8b60
{
Packit fd8b60
    const struct krb5_cksumtypes *ctp;
Packit fd8b60
    krb5_error_code ret;
Packit fd8b60
    krb5_data computed;
Packit fd8b60
    krb5_crypto_iov *checksum;
Packit fd8b60
Packit fd8b60
    if (checksum_type == 0) {
Packit fd8b60
        ret = krb5int_c_mandatory_cksumtype(context, key->keyblock.enctype,
Packit fd8b60
                                            &checksum_type);
Packit fd8b60
        if (ret != 0)
Packit fd8b60
            return ret;
Packit fd8b60
    }
Packit fd8b60
    ctp = find_cksumtype(checksum_type);
Packit fd8b60
    if (ctp == NULL)
Packit fd8b60
        return KRB5_BAD_ENCTYPE;
Packit fd8b60
Packit fd8b60
    ret = verify_key(ctp, key);
Packit fd8b60
    if (ret != 0)
Packit fd8b60
        return ret;
Packit fd8b60
Packit fd8b60
    checksum = krb5int_c_locate_iov((krb5_crypto_iov *)data, num_data,
Packit fd8b60
                                    KRB5_CRYPTO_TYPE_CHECKSUM);
Packit fd8b60
    if (checksum == NULL || checksum->data.length != ctp->output_size)
Packit fd8b60
        return KRB5_BAD_MSIZE;
Packit fd8b60
Packit fd8b60
    /* If there's actually a verify function, call it. */
Packit fd8b60
    if (ctp->verify != NULL) {
Packit fd8b60
        return ctp->verify(ctp, key, usage, data, num_data, &checksum->data,
Packit fd8b60
                           valid);
Packit fd8b60
    }
Packit fd8b60
Packit fd8b60
    ret = alloc_data(&computed, ctp->compute_size);
Packit fd8b60
    if (ret != 0)
Packit fd8b60
        return ret;
Packit fd8b60
Packit fd8b60
    ret = ctp->checksum(ctp, key, usage, data, num_data, &computed);
Packit fd8b60
    if (ret == 0) {
Packit fd8b60
        *valid = (k5_bcmp(computed.data, checksum->data.data,
Packit fd8b60
                          ctp->output_size) == 0);
Packit fd8b60
    }
Packit fd8b60
Packit fd8b60
    zapfree(computed.data, ctp->compute_size);
Packit fd8b60
    return ret;
Packit fd8b60
}
Packit fd8b60
Packit fd8b60
krb5_error_code KRB5_CALLCONV
Packit fd8b60
krb5_c_verify_checksum_iov(krb5_context context,
Packit fd8b60
                           krb5_cksumtype checksum_type,
Packit fd8b60
                           const krb5_keyblock *keyblock,
Packit fd8b60
                           krb5_keyusage usage,
Packit fd8b60
                           const krb5_crypto_iov *data,
Packit fd8b60
                           size_t num_data,
Packit fd8b60
                           krb5_boolean *valid)
Packit fd8b60
{
Packit fd8b60
    krb5_key key;
Packit fd8b60
    krb5_error_code ret;
Packit fd8b60
Packit fd8b60
    ret = krb5_k_create_key(context, keyblock, &key);
Packit fd8b60
    if (ret != 0)
Packit fd8b60
        return ret;
Packit fd8b60
    ret = krb5_k_verify_checksum_iov(context, checksum_type, key, usage, data,
Packit fd8b60
                                     num_data, valid);
Packit fd8b60
    krb5_k_free_key(context, key);
Packit fd8b60
    return ret;
Packit fd8b60
}