.gitlab-ci.yml: Use ./bootstrap in gnutls build.
[gd/nettle] / ctr-internal.h
1 /* ctr-internal.h
2
3    Copyright (C) 2018 Niels Möller
4
5    This file is part of GNU Nettle.
6
7    GNU Nettle is free software: you can redistribute it and/or
8    modify it under the terms of either:
9
10      * the GNU Lesser General Public License as published by the Free
11        Software Foundation; either version 3 of the License, or (at your
12        option) any later version.
13
14    or
15
16      * the GNU General Public License as published by the Free
17        Software Foundation; either version 2 of the License, or (at your
18        option) any later version.
19
20    or both in parallel, as here.
21
22    GNU Nettle is distributed in the hope that it will be useful,
23    but WITHOUT ANY WARRANTY; without even the implied warranty of
24    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
25    General Public License for more details.
26
27    You should have received copies of the GNU General Public License and
28    the GNU Lesser General Public License along with this program.  If
29    not, see http://www.gnu.org/licenses/.
30 */
31
32 #ifndef NETTLE_CTR_INTERNAL_H_INCLUDED
33 #define NETTLE_CTR_INTERNAL_H_INCLUDED
34
35 #include "nettle-types.h"
36
37 /* Name mangling */
38 #define _ctr_crypt16 _nettle_ctr_crypt16
39
40 /* Size limit for temporary stack buffers. */
41 #define CTR_BUFFER_LIMIT 512
42
43 /* Fill BUFFER (n blocks) with incrementing CTR values. It would be
44    nice if CTR was always 64-bit aligned, but it isn't when called
45    from ctr_crypt. */
46 typedef void
47 nettle_fill16_func(uint8_t *ctr, size_t n, union nettle_block16 *buffer);
48
49 void
50 _ctr_crypt16(const void *ctx, nettle_cipher_func *f,
51              nettle_fill16_func *fill, uint8_t *ctr,
52              size_t length, uint8_t *dst,
53              const uint8_t *src);
54
55
56 #endif /* NETTLE_CTR_INTERNAL_H_INCLUDED */