2013-04-23 13:24:32 +04:00
|
|
|
/* $OpenBSD: mac.h,v 1.7 2013/04/19 01:06:50 djm Exp $ */
|
2000-09-16 06:29:08 +04:00
|
|
|
/*
|
2001-02-15 06:01:59 +03:00
|
|
|
* Copyright (c) 2001 Markus Friedl. All rights reserved.
|
2000-09-16 06:29:08 +04:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
2000-04-04 08:38:59 +04:00
|
|
|
|
2001-07-04 08:46:56 +04:00
|
|
|
int mac_valid(const char *);
|
2013-04-23 13:24:32 +04:00
|
|
|
char *mac_alg_list(void);
|
2007-06-05 12:30:18 +04:00
|
|
|
int mac_setup(Mac *, char *);
|
2007-06-11 08:01:42 +04:00
|
|
|
int mac_init(Mac *);
|
2001-07-04 08:02:36 +04:00
|
|
|
u_char *mac_compute(Mac *, u_int32_t, u_char *, int);
|
2007-06-05 12:30:18 +04:00
|
|
|
void mac_clear(Mac *);
|