isc-hmac-fixup.c revision 3759f10fc543747668b1ca4b4671f35b0dea8445
/*
* Copyright (C) 2010, 2014, 2015 Internet Systems Consortium, Inc. ("ISC")
*
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
* REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
* AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
* INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
* LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
* OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
* PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: isc-hmac-fixup.c,v 1.4 2010/03/10 02:17:52 marka Exp $ */
#include <config.h>
#define HMAC_LEN 64
int
unsigned char key[1024];
char secret[1024];
isc_region_t r;
if (argc != 3) {
"SHA256 | SHA384 | SHA512)\n");
return (1);
}
if (result != ISC_R_SUCCESS) {
return (1);
}
isc_buffer_usedregion(&buf, &r);
}
if (r.length > ISC_SHA1_DIGESTLENGTH) {
}
if (r.length > ISC_SHA224_DIGESTLENGTH) {
}
if (r.length > ISC_SHA256_DIGESTLENGTH) {
}
if (r.length > ISC_SHA384_DIGESTLENGTH) {
}
if (r.length > ISC_SHA512_DIGESTLENGTH) {
}
} else {
return (1);
}
if (result != ISC_R_SUCCESS) {
return (1);
}
return (0);
}