/* ====================================================================
- * Copyright (c) 2005 The OpenSSL Project. All rights reserved.
+ * Copyright (c) 2011 The OpenSSL Project. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
#include <openssl/err.h>
#include <openssl/fips.h>
#include <openssl/hmac.h>
+#include "fips_locl.h"
#ifdef OPENSSL_FIPS
typedef struct {
};
int FIPS_selftest_hmac()
- {
- size_t n;
- unsigned int outlen;
- unsigned char out[EVP_MAX_MD_SIZE];
- const EVP_MD *md;
- const HMAC_KAT *t;
-
- for(n=0,t=vector; n<sizeof(vector)/sizeof(vector[0]); n++,t++)
{
- md = (*t->alg)();
- HMAC(md,t->key,strlen(t->key),
- (const unsigned char *)t->iv,strlen(t->iv),
- out,&outlen);
+ size_t n;
+ unsigned int outlen;
+ unsigned char out[EVP_MAX_MD_SIZE];
+ const EVP_MD *md;
+ const HMAC_KAT *t;
+ int rv = 1, subid;
+ HMAC_CTX c;
+ HMAC_CTX_init(&c);
+
+
+ for(n=0,t=vector; n<sizeof(vector)/sizeof(vector[0]); n++,t++)
+ {
+ md = (*t->alg)();
+ subid = M_EVP_MD_type(md);
+ if (!fips_post_started(FIPS_TEST_HMAC, subid, 0))
+ continue;
+ if (!HMAC_Init_ex(&c, t->key, strlen(t->key), md, NULL))
+ {
+ rv = -1;
+ goto err;
+ }
+ if (!HMAC_Update(&c, (const unsigned char *)t->iv, strlen(t->iv)))
+ {
+ rv = -1;
+ goto err;
+ }
+ if (!fips_post_corrupt(FIPS_TEST_HMAC, subid, NULL))
+ {
+ if (!HMAC_Update(&c, (const unsigned char *)t->iv, 1))
+ {
+ rv = -1;
+ goto err;
+ }
+ }
+ if (!HMAC_Final(&c, out, &outlen))
+ {
+ rv = -1;
+ goto err;
+ }
+
+ if(memcmp(out,t->kaval,outlen))
+ {
+ fips_post_failed(FIPS_TEST_HMAC, subid, NULL);
+ rv = 0;
+ }
+ else if (!fips_post_success(FIPS_TEST_HMAC, subid, NULL))
+ goto err;
+ }
- if(memcmp(out,t->kaval,outlen))
- {
- FIPSerr(FIPS_F_FIPS_SELFTEST_HMAC,FIPS_R_SELFTEST_FAILED);
- return 0;
- }
+ err:
+ HMAC_CTX_cleanup(&c);
+ if (rv == -1)
+ {
+ fips_post_failed(FIPS_TEST_HMAC, subid, NULL);
+ rv = 0;
+ }
+ if (!rv)
+ FIPSerr(FIPS_F_FIPS_SELFTEST_HMAC,FIPS_R_SELFTEST_FAILED);
+ return rv;
}
- return 1;
- }
#endif