Blame crypto/fips/fips_hmac_selftest.c

Packit Service 084de1
/* ====================================================================
Packit Service 084de1
 * Copyright (c) 2005 The OpenSSL Project.  All rights reserved.
Packit Service 084de1
 *
Packit Service 084de1
 * Redistribution and use in source and binary forms, with or without
Packit Service 084de1
 * modification, are permitted provided that the following conditions
Packit Service 084de1
 * are met:
Packit Service 084de1
 *
Packit Service 084de1
 * 1. Redistributions of source code must retain the above copyright
Packit Service 084de1
 *    notice, this list of conditions and the following disclaimer. 
Packit Service 084de1
 *
Packit Service 084de1
 * 2. Redistributions in binary form must reproduce the above copyright
Packit Service 084de1
 *    notice, this list of conditions and the following disclaimer in
Packit Service 084de1
 *    the documentation and/or other materials provided with the
Packit Service 084de1
 *    distribution.
Packit Service 084de1
 *
Packit Service 084de1
 * 3. All advertising materials mentioning features or use of this
Packit Service 084de1
 *    software must display the following acknowledgment:
Packit Service 084de1
 *    "This product includes software developed by the OpenSSL Project
Packit Service 084de1
 *    for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
Packit Service 084de1
 *
Packit Service 084de1
 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
Packit Service 084de1
 *    endorse or promote products derived from this software without
Packit Service 084de1
 *    prior written permission. For written permission, please contact
Packit Service 084de1
 *    openssl-core@openssl.org.
Packit Service 084de1
 *
Packit Service 084de1
 * 5. Products derived from this software may not be called "OpenSSL"
Packit Service 084de1
 *    nor may "OpenSSL" appear in their names without prior written
Packit Service 084de1
 *    permission of the OpenSSL Project.
Packit Service 084de1
 *
Packit Service 084de1
 * 6. Redistributions of any form whatsoever must retain the following
Packit Service 084de1
 *    acknowledgment:
Packit Service 084de1
 *    "This product includes software developed by the OpenSSL Project
Packit Service 084de1
 *    for use in the OpenSSL Toolkit (http://www.openssl.org/)"
Packit Service 084de1
 *
Packit Service 084de1
 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
Packit Service 084de1
 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
Packit Service 084de1
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
Packit Service 084de1
 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
Packit Service 084de1
 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
Packit Service 084de1
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
Packit Service 084de1
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
Packit Service 084de1
 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
Packit Service 084de1
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
Packit Service 084de1
 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
Packit Service 084de1
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
Packit Service 084de1
 * OF THE POSSIBILITY OF SUCH DAMAGE.
Packit Service 084de1
 *
Packit Service 084de1
 */
Packit Service 084de1
Packit Service 084de1
#include <string.h>
Packit Service 084de1
#include <openssl/err.h>
Packit Service 084de1
#ifdef OPENSSL_FIPS
Packit Service 084de1
# include <openssl/fips.h>
Packit Service 084de1
#endif
Packit Service 084de1
#include <openssl/hmac.h>
Packit Service 084de1
Packit Service 084de1
#ifdef OPENSSL_FIPS
Packit Service 084de1
typedef struct {
Packit Service 084de1
    const EVP_MD *(*alg) (void);
Packit Service 084de1
    const char *key, *iv;
Packit Service 084de1
    unsigned char kaval[EVP_MAX_MD_SIZE];
Packit Service 084de1
} HMAC_KAT;
Packit Service 084de1
Packit Service 084de1
static const HMAC_KAT vector[] = {
Packit Service 084de1
    {EVP_sha1,
Packit Service 084de1
     /* from http://csrc.nist.gov/publications/fips/fips198/fips-198a.pdf */
Packit Service 084de1
     "0123456789:;<=>?@ABC",
Packit Service 084de1
     "Sample #2",
Packit Service 084de1
     {0x09, 0x22, 0xd3, 0x40, 0x5f, 0xaa, 0x3d, 0x19,
Packit Service 084de1
      0x4f, 0x82, 0xa4, 0x58, 0x30, 0x73, 0x7d, 0x5c,
Packit Service 084de1
      0xc6, 0xc7, 0x5d, 0x24}
Packit Service 084de1
     },
Packit Service 084de1
    {EVP_sha224,
Packit Service 084de1
     /* just keep extending the above... */
Packit Service 084de1
     "0123456789:;<=>?@ABC",
Packit Service 084de1
     "Sample #2",
Packit Service 084de1
     {0xdd, 0xef, 0x0a, 0x40, 0xcb, 0x7d, 0x50, 0xfb,
Packit Service 084de1
      0x6e, 0xe6, 0xce, 0xa1, 0x20, 0xba, 0x26, 0xaa,
Packit Service 084de1
      0x08, 0xf3, 0x07, 0x75, 0x87, 0xb8, 0xad, 0x1b,
Packit Service 084de1
      0x8c, 0x8d, 0x12, 0xc7}
Packit Service 084de1
     },
Packit Service 084de1
    {EVP_sha256,
Packit Service 084de1
     "0123456789:;<=>?@ABC",
Packit Service 084de1
     "Sample #2",
Packit Service 084de1
     {0xb8, 0xf2, 0x0d, 0xb5, 0x41, 0xea, 0x43, 0x09,
Packit Service 084de1
      0xca, 0x4e, 0xa9, 0x38, 0x0c, 0xd0, 0xe8, 0x34,
Packit Service 084de1
      0xf7, 0x1f, 0xbe, 0x91, 0x74, 0xa2, 0x61, 0x38,
Packit Service 084de1
      0x0d, 0xc1, 0x7e, 0xae, 0x6a, 0x34, 0x51, 0xd9}
Packit Service 084de1
     },
Packit Service 084de1
    {EVP_sha384,
Packit Service 084de1
     "0123456789:;<=>?@ABC",
Packit Service 084de1
     "Sample #2",
Packit Service 084de1
     {0x08, 0xbc, 0xb0, 0xda, 0x49, 0x1e, 0x87, 0xad,
Packit Service 084de1
      0x9a, 0x1d, 0x6a, 0xce, 0x23, 0xc5, 0x0b, 0xf6,
Packit Service 084de1
      0xb7, 0x18, 0x06, 0xa5, 0x77, 0xcd, 0x49, 0x04,
Packit Service 084de1
      0x89, 0xf1, 0xe6, 0x23, 0x44, 0x51, 0x51, 0x9f,
Packit Service 084de1
      0x85, 0x56, 0x80, 0x79, 0x0c, 0xbd, 0x4d, 0x50,
Packit Service 084de1
      0xa4, 0x5f, 0x29, 0xe3, 0x93, 0xf0, 0xe8, 0x7f}
Packit Service 084de1
     },
Packit Service 084de1
    {EVP_sha512,
Packit Service 084de1
     "0123456789:;<=>?@ABC",
Packit Service 084de1
     "Sample #2",
Packit Service 084de1
     {0x80, 0x9d, 0x44, 0x05, 0x7c, 0x5b, 0x95, 0x41,
Packit Service 084de1
      0x05, 0xbd, 0x04, 0x13, 0x16, 0xdb, 0x0f, 0xac,
Packit Service 084de1
      0x44, 0xd5, 0xa4, 0xd5, 0xd0, 0x89, 0x2b, 0xd0,
Packit Service 084de1
      0x4e, 0x86, 0x64, 0x12, 0xc0, 0x90, 0x77, 0x68,
Packit Service 084de1
      0xf1, 0x87, 0xb7, 0x7c, 0x4f, 0xae, 0x2c, 0x2f,
Packit Service 084de1
      0x21, 0xa5, 0xb5, 0x65, 0x9a, 0x4f, 0x4b, 0xa7,
Packit Service 084de1
      0x47, 0x02, 0xa3, 0xde, 0x9b, 0x51, 0xf1, 0x45,
Packit Service 084de1
      0xbd, 0x4f, 0x25, 0x27, 0x42, 0x98, 0x99, 0x05}
Packit Service 084de1
     },
Packit Service 084de1
};
Packit Service 084de1
Packit Service 084de1
int FIPS_selftest_hmac()
Packit Service 084de1
{
Packit Service 084de1
    int n;
Packit Service 084de1
    unsigned int outlen;
Packit Service 084de1
    unsigned char out[EVP_MAX_MD_SIZE];
Packit Service 084de1
    const EVP_MD *md;
Packit Service 084de1
    const HMAC_KAT *t;
Packit Service 084de1
Packit Service 084de1
    for (n = 0, t = vector; n < sizeof(vector) / sizeof(vector[0]); n++, t++) {
Packit Service 084de1
        md = (*t->alg) ();
Packit Service 084de1
        HMAC(md, t->key, strlen(t->key),
Packit Service 084de1
             (const unsigned char *)t->iv, strlen(t->iv), out, &outlen);
Packit Service 084de1
Packit Service 084de1
        if (memcmp(out, t->kaval, outlen)) {
Packit Service 084de1
            FIPSerr(FIPS_F_FIPS_SELFTEST_HMAC, FIPS_R_SELFTEST_FAILED);
Packit Service 084de1
            return 0;
Packit Service 084de1
        }
Packit Service 084de1
    }
Packit Service 084de1
    return 1;
Packit Service 084de1
}
Packit Service 084de1
#endif