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

Packit fd8b60
/* -*- mode: c; c-basic-offset: 4; indent-tabs-mode: nil -*- */
Packit fd8b60
/* lib/crypto/krb/state.c */
Packit fd8b60
/*
Packit fd8b60
 * Copyright (C) 2001 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
Packit fd8b60
 *
Packit fd8b60
 *
Packit fd8b60
 *
Packit fd8b60
 *  * Section 6 (Encryption) of the Kerberos revisions document defines
Packit fd8b60
 * cipher states to be used to chain encryptions and decryptions
Packit fd8b60
 * together.  Examples of cipher states include initialization vectors
Packit fd8b60
 * for CBC encription.    This file contains implementations of
Packit fd8b60
 * krb5_c_init_state and krb5_c_free_state used by clients of the
Packit fd8b60
 * Kerberos crypto library.
Packit fd8b60
 */
Packit fd8b60
#include "crypto_int.h"
Packit fd8b60
Packit fd8b60
krb5_error_code KRB5_CALLCONV
Packit fd8b60
krb5_c_init_state (krb5_context context, const krb5_keyblock *key,
Packit fd8b60
                   krb5_keyusage keyusage, krb5_data *new_state)
Packit fd8b60
{
Packit fd8b60
    const struct krb5_keytypes *ktp;
Packit fd8b60
Packit fd8b60
    ktp = find_enctype(key->enctype);
Packit fd8b60
    if (ktp == NULL)
Packit fd8b60
        return KRB5_BAD_ENCTYPE;
Packit fd8b60
    return ktp->enc->init_state(key, keyusage, new_state);
Packit fd8b60
}
Packit fd8b60
Packit fd8b60
krb5_error_code KRB5_CALLCONV
Packit fd8b60
krb5_c_free_state(krb5_context context, const krb5_keyblock *key,
Packit fd8b60
                  krb5_data *state)
Packit fd8b60
{
Packit fd8b60
    const struct krb5_keytypes *ktp;
Packit fd8b60
Packit fd8b60
    ktp = find_enctype(key->enctype);
Packit fd8b60
    if (ktp == NULL)
Packit fd8b60
        return KRB5_BAD_ENCTYPE;
Packit fd8b60
    ktp->enc->free_state(state);
Packit fd8b60
    return 0;
Packit fd8b60
}