mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-31 06:25:31 +00:00
update copyright notice
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Portions Copyright (C) 2004-2007 Internet Systems Consortium, Inc. ("ISC")
|
||||
* Portions Copyright (C) 2004-2008 Internet Systems Consortium, Inc. ("ISC")
|
||||
* Portions Copyright (C) 1999-2002 Internet Software Consortium.
|
||||
*
|
||||
* Permission to use, copy, modify, and/or distribute this software for any
|
||||
@@ -31,7 +31,7 @@
|
||||
|
||||
/*
|
||||
* Principal Author: Brian Wellington
|
||||
* $Id: hmac_link.c,v 1.10 2008/03/31 14:42:51 fdupont Exp $
|
||||
* $Id: hmac_link.c,v 1.11 2008/04/01 23:47:10 tbox Exp $
|
||||
*/
|
||||
|
||||
#include <config.h>
|
||||
@@ -285,7 +285,7 @@ hmacmd5_parse(dst_key_t *key, isc_lex_t *lexer) {
|
||||
switch (priv.elements[i].tag) {
|
||||
case TAG_HMACMD5_KEY:
|
||||
isc_buffer_init(&b, priv.elements[i].data,
|
||||
priv.elements[i].length);
|
||||
priv.elements[i].length);
|
||||
isc_buffer_add(&b, priv.elements[i].length);
|
||||
tresult = hmacmd5_fromdns(key, &b);
|
||||
if (tresult != ISC_R_SUCCESS)
|
||||
@@ -555,7 +555,7 @@ hmacsha1_parse(dst_key_t *key, isc_lex_t *lexer) {
|
||||
switch (priv.elements[i].tag) {
|
||||
case TAG_HMACSHA1_KEY:
|
||||
isc_buffer_init(&b, priv.elements[i].data,
|
||||
priv.elements[i].length);
|
||||
priv.elements[i].length);
|
||||
isc_buffer_add(&b, priv.elements[i].length);
|
||||
tresult = hmacsha1_fromdns(key, &b);
|
||||
if (tresult != ISC_R_SUCCESS)
|
||||
@@ -825,7 +825,7 @@ hmacsha224_parse(dst_key_t *key, isc_lex_t *lexer) {
|
||||
switch (priv.elements[i].tag) {
|
||||
case TAG_HMACSHA224_KEY:
|
||||
isc_buffer_init(&b, priv.elements[i].data,
|
||||
priv.elements[i].length);
|
||||
priv.elements[i].length);
|
||||
isc_buffer_add(&b, priv.elements[i].length);
|
||||
tresult = hmacsha224_fromdns(key, &b);
|
||||
if (tresult != ISC_R_SUCCESS)
|
||||
@@ -1095,7 +1095,7 @@ hmacsha256_parse(dst_key_t *key, isc_lex_t *lexer) {
|
||||
switch (priv.elements[i].tag) {
|
||||
case TAG_HMACSHA256_KEY:
|
||||
isc_buffer_init(&b, priv.elements[i].data,
|
||||
priv.elements[i].length);
|
||||
priv.elements[i].length);
|
||||
isc_buffer_add(&b, priv.elements[i].length);
|
||||
tresult = hmacsha256_fromdns(key, &b);
|
||||
if (tresult != ISC_R_SUCCESS)
|
||||
@@ -1365,7 +1365,7 @@ hmacsha384_parse(dst_key_t *key, isc_lex_t *lexer) {
|
||||
switch (priv.elements[i].tag) {
|
||||
case TAG_HMACSHA384_KEY:
|
||||
isc_buffer_init(&b, priv.elements[i].data,
|
||||
priv.elements[i].length);
|
||||
priv.elements[i].length);
|
||||
isc_buffer_add(&b, priv.elements[i].length);
|
||||
tresult = hmacsha384_fromdns(key, &b);
|
||||
if (tresult != ISC_R_SUCCESS)
|
||||
@@ -1635,7 +1635,7 @@ hmacsha512_parse(dst_key_t *key, isc_lex_t *lexer) {
|
||||
switch (priv.elements[i].tag) {
|
||||
case TAG_HMACSHA512_KEY:
|
||||
isc_buffer_init(&b, priv.elements[i].data,
|
||||
priv.elements[i].length);
|
||||
priv.elements[i].length);
|
||||
isc_buffer_add(&b, priv.elements[i].length);
|
||||
tresult = hmacsha512_fromdns(key, &b);
|
||||
if (tresult != ISC_R_SUCCESS)
|
||||
|
Reference in New Issue
Block a user