diff options
Diffstat (limited to 'lib/libcrypto/sha/sha512_amd64.c')
-rw-r--r-- | lib/libcrypto/sha/sha512_amd64.c | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/lib/libcrypto/sha/sha512_amd64.c b/lib/libcrypto/sha/sha512_amd64.c new file mode 100644 index 00000000000..0b542430206 --- /dev/null +++ b/lib/libcrypto/sha/sha512_amd64.c @@ -0,0 +1,26 @@ +/* $OpenBSD: sha512_amd64.c,v 1.1 2024/11/16 14:56:39 jsing Exp $ */ +/* + * Copyright (c) 2024 Joel Sing <jsing@openbsd.org> + * + * Permission to use, copy, modify, and distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + */ + +#include <openssl/sha.h> + +void sha512_block_generic(SHA512_CTX *ctx, const void *in, size_t num); + +void +sha512_block_data_order(SHA512_CTX *ctx, const void *in, size_t num) +{ + sha512_block_generic(ctx, in, num); +} |