11.1Snia/*	$NetBSD: argon2_utils.h,v 1.1 2021/11/22 14:34:35 nia Exp $ */
21.1Snia/*-
31.1Snia * Copyright (c) 2021 The NetBSD Foundation, Inc.
41.1Snia * All rights reserved.
51.1Snia *
61.1Snia * This code is derived from software contributed to The NetBSD Foundation
71.1Snia * by Nia Alarie.
81.1Snia *
91.1Snia * Redistribution and use in source and binary forms, with or without
101.1Snia * modification, are permitted provided that the following conditions
111.1Snia * are met:
121.1Snia * 1. Redistributions of source code must retain the above copyright
131.1Snia *    notice, this list of conditions and the following disclaimer.
141.1Snia * 2. Redistributions in binary form must reproduce the above copyright
151.1Snia *    notice, this list of conditions and the following disclaimer in the
161.1Snia *    documentation and/or other materials provided with the distribution.
171.1Snia *
181.1Snia * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
191.1Snia * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
201.1Snia * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
211.1Snia * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
221.1Snia * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
231.1Snia * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
241.1Snia * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
251.1Snia * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
261.1Snia * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
271.1Snia * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
281.1Snia * POSSIBILITY OF SUCH DAMAGE.
291.1Snia */
301.1Snia
311.1Snia#ifndef ARGON2_UTILS_H
321.1Snia#define ARGON2_UTILS_H
331.1Snia#include <stddef.h>
341.1Snia
351.1Sniavoid	argon2id_calibrate(size_t, size_t, size_t *, size_t *, size_t *);
361.1Snia#endif
37