1*fe182ba1SConrad Meyer /*- 2*fe182ba1SConrad Meyer * Copyright (c) 2017 Conrad Meyer <cem@FreeBSD.org> 3*fe182ba1SConrad Meyer * All rights reserved. 4*fe182ba1SConrad Meyer * 5*fe182ba1SConrad Meyer * Redistribution and use in source and binary forms, with or without 6*fe182ba1SConrad Meyer * modification, are permitted provided that the following conditions 7*fe182ba1SConrad Meyer * are met: 8*fe182ba1SConrad Meyer * 1. Redistributions of source code must retain the above copyright 9*fe182ba1SConrad Meyer * notice, this list of conditions and the following disclaimer. 10*fe182ba1SConrad Meyer * 2. Redistributions in binary form must reproduce the above copyright 11*fe182ba1SConrad Meyer * notice, this list of conditions and the following disclaimer in the 12*fe182ba1SConrad Meyer * documentation and/or other materials provided with the distribution. 13*fe182ba1SConrad Meyer * 14*fe182ba1SConrad Meyer * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND 15*fe182ba1SConrad Meyer * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 16*fe182ba1SConrad Meyer * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 17*fe182ba1SConrad Meyer * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE 18*fe182ba1SConrad Meyer * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 19*fe182ba1SConrad Meyer * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 20*fe182ba1SConrad Meyer * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 21*fe182ba1SConrad Meyer * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 22*fe182ba1SConrad Meyer * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 23*fe182ba1SConrad Meyer * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 24*fe182ba1SConrad Meyer * SUCH DAMAGE. 25*fe182ba1SConrad Meyer */ 26*fe182ba1SConrad Meyer 27*fe182ba1SConrad Meyer #ifndef _CRYPTO__SHA_SSE_H_ 28*fe182ba1SConrad Meyer #define _CRYPTO__SHA_SSE_H_ 29*fe182ba1SConrad Meyer 30*fe182ba1SConrad Meyer /* 31*fe182ba1SConrad Meyer * Internal functions, implemented in intrinsics. 32*fe182ba1SConrad Meyer */ 33*fe182ba1SConrad Meyer void intel_sha1_step(uint32_t *digest, const char *data, uint32_t num_blks); 34*fe182ba1SConrad Meyer void intel_sha256_step(uint32_t *digest, const char *data, uint32_t num_blks); 35*fe182ba1SConrad Meyer 36*fe182ba1SConrad Meyer #endif /* _CRYPTO__SHA_SSE_H_ */ 37