]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/dev/if_wg/module/crypto/zinc/poly1305/poly1305-mips-glue.c
service(8): use an environment more consistent with init(8)
[FreeBSD/FreeBSD.git] / sys / dev / if_wg / module / crypto / zinc / poly1305 / poly1305-mips-glue.c
1 // SPDX-License-Identifier: GPL-2.0 OR MIT
2 /*
3  * Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
4  */
5
6 asmlinkage void poly1305_init_mips(void *ctx, const u8 key[16]);
7 asmlinkage void poly1305_blocks_mips(void *ctx, const u8 *inp, const size_t len,
8                                      const u32 padbit);
9 asmlinkage void poly1305_emit_mips(void *ctx, u8 mac[16], const u32 nonce[4]);
10
11 static bool *const poly1305_nobs[] __initconst = { };
12 static void __init poly1305_fpu_init(void)
13 {
14 }
15
16 static inline bool poly1305_init_arch(void *ctx,
17                                       const u8 key[POLY1305_KEY_SIZE])
18 {
19         poly1305_init_mips(ctx, key);
20         return true;
21 }
22
23 static inline bool poly1305_blocks_arch(void *ctx, const u8 *inp,
24                                         size_t len, const u32 padbit,
25                                         simd_context_t *simd_context)
26 {
27         poly1305_blocks_mips(ctx, inp, len, padbit);
28         return true;
29 }
30
31 static inline bool poly1305_emit_arch(void *ctx, u8 mac[POLY1305_MAC_SIZE],
32                                       const u32 nonce[4],
33                                       simd_context_t *simd_context)
34 {
35         poly1305_emit_mips(ctx, mac, nonce);
36         return true;
37 }