185518Sjake/*-
285518Sjake * SPDX-License-Identifier: BSD-2-Clause
385518Sjake *
485518Sjake * Copyright (c) 2011 Pawel Jakub Dawidek <pawel@dawidek.net>
585518Sjake * All rights reserved.
685518Sjake *
785518Sjake * Redistribution and use in source and binary forms, with or without
885518Sjake * modification, are permitted provided that the following conditions
985518Sjake * are met:
1085518Sjake * 1. Redistributions of source code must retain the above copyright
1185518Sjake *    notice, this list of conditions and the following disclaimer.
1285518Sjake * 2. Redistributions in binary form must reproduce the above copyright
1385518Sjake *    notice, this list of conditions and the following disclaimer in the
1485518Sjake *    documentation and/or other materials provided with the distribution.
15140424Sdas *
16140424Sdas * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND
1785518Sjake * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1885518Sjake * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1985518Sjake * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE
2085518Sjake * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2185518Sjake * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2285518Sjake * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2385518Sjake * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2485518Sjake * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2585518Sjake * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2685518Sjake * SUCH DAMAGE.
27 */
28
29#ifndef	_HAST_CHECKSUM_H_
30#define	_HAST_CHECKSUM_H_
31
32#include <stdlib.h>	/* size_t */
33
34#include <hast.h>
35#include <nv.h>
36
37const char *checksum_name(int num);
38
39int checksum_send(const struct hast_resource *res, struct nv *nv,
40    void **datap, size_t *sizep, bool *freedatap);
41int checksum_recv(const struct hast_resource *res, struct nv *nv,
42    void **datap, size_t *sizep, bool *freedatap);
43
44#endif	/* !_HAST_CHECKSUM_H_ */
45