summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/crypto_internal.h
diff options
context:
space:
mode:
authorjsing <>2023-04-12 04:40:39 +0000
committerjsing <>2023-04-12 04:40:39 +0000
commita9c434936ce2a17263afcfb92d37ece5fd9b1220 (patch)
tree416f32623ec0420e801702b2617ac1d206367423 /src/lib/libcrypto/crypto_internal.h
parentb0ee26c7d2e2ba5f8d9159d9c269c93565c36841 (diff)
downloadopenbsd-a9c434936ce2a17263afcfb92d37ece5fd9b1220.tar.gz
openbsd-a9c434936ce2a17263afcfb92d37ece5fd9b1220.tar.bz2
openbsd-a9c434936ce2a17263afcfb92d37ece5fd9b1220.zip
Provide and use crypto_store_htobe64().
It is common to need to store data in a specific endianness - rather than handrolling and deduplicating code to do this, provide a crypto_store_htobe64() function that converts from host endian to big endian, before storing the data to a location with unknown alignment. ok tb@
Diffstat (limited to 'src/lib/libcrypto/crypto_internal.h')
-rw-r--r--src/lib/libcrypto/crypto_internal.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/lib/libcrypto/crypto_internal.h b/src/lib/libcrypto/crypto_internal.h
new file mode 100644
index 0000000000..af2a87216e
--- /dev/null
+++ b/src/lib/libcrypto/crypto_internal.h
@@ -0,0 +1,34 @@
1/* $OpenBSD: crypto_internal.h,v 1.1 2023/04/12 04:40:39 jsing Exp $ */
2/*
3 * Copyright (c) 2023 Joel Sing <jsing@openbsd.org>
4 *
5 * Permission to use, copy, modify, and distribute this software for any
6 * purpose with or without fee is hereby granted, provided that the above
7 * copyright notice and this permission notice appear in all copies.
8 *
9 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 */
17
18#include <endian.h>
19#include <stddef.h>
20#include <string.h>
21
22#ifndef HEADER_CRYPTO_INTERNAL_H
23#define HEADER_CRYPTO_INTERNAL_H
24
25#ifndef HAVE_CRYPTO_STORE_HTOBE64
26static inline void
27crypto_store_htobe64(uint8_t *dst, uint64_t v)
28{
29 v = htobe64(v);
30 memcpy(dst, &v, sizeof(v));
31}
32#endif
33
34#endif