summaryrefslogtreecommitdiff
path: root/lib/libcrypto
diff options
context:
space:
mode:
authorJoel Sing <jsing@cvs.openbsd.org>2023-04-15 18:30:28 +0000
committerJoel Sing <jsing@cvs.openbsd.org>2023-04-15 18:30:28 +0000
commitc0a69747f40ebd2bdd704f5b3f99ec22579e9fb3 (patch)
tree840b72cfc63045156b80c27e38ebc180192ee74c /lib/libcrypto
parent2ea1f6a0a221344de7cc35ee3c4975cde8fc5681 (diff)
Rename SHA3 context to align with existing code.
Diffstat (limited to 'lib/libcrypto')
-rw-r--r--lib/libcrypto/sha/sha3.c14
-rw-r--r--lib/libcrypto/sha/sha3_internal.h14
2 files changed, 14 insertions, 14 deletions
diff --git a/lib/libcrypto/sha/sha3.c b/lib/libcrypto/sha/sha3.c
index acb7de7d9d2..51e7d9c3154 100644
--- a/lib/libcrypto/sha/sha3.c
+++ b/lib/libcrypto/sha/sha3.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sha3.c,v 1.7 2023/04/15 18:29:26 jsing Exp $ */
+/* $OpenBSD: sha3.c,v 1.8 2023/04/15 18:30:27 jsing Exp $ */
/*
* The MIT License (MIT)
*
@@ -116,7 +116,7 @@ sha3_keccakf(uint64_t st[25])
}
int
-sha3_init(sha3_ctx_t *c, int mdlen)
+sha3_init(sha3_ctx *c, int mdlen)
{
int i;
@@ -130,7 +130,7 @@ sha3_init(sha3_ctx_t *c, int mdlen)
}
int
-sha3_update(sha3_ctx_t *c, const void *data, size_t len)
+sha3_update(sha3_ctx *c, const void *data, size_t len)
{
size_t i;
int j;
@@ -149,7 +149,7 @@ sha3_update(sha3_ctx_t *c, const void *data, size_t len)
}
int
-sha3_final(void *md, sha3_ctx_t *c)
+sha3_final(void *md, sha3_ctx *c)
{
int i;
@@ -167,7 +167,7 @@ sha3_final(void *md, sha3_ctx_t *c)
void *
sha3(const void *in, size_t inlen, void *md, int mdlen)
{
- sha3_ctx_t sha3;
+ sha3_ctx sha3;
sha3_init(&sha3, mdlen);
sha3_update(&sha3, in, inlen);
@@ -178,7 +178,7 @@ sha3(const void *in, size_t inlen, void *md, int mdlen)
/* SHAKE128 and SHAKE256 extensible-output functionality. */
void
-shake_xof(sha3_ctx_t *c)
+shake_xof(sha3_ctx *c)
{
c->st.b[c->pt] ^= 0x1F;
c->st.b[c->rsiz - 1] ^= 0x80;
@@ -187,7 +187,7 @@ shake_xof(sha3_ctx_t *c)
}
void
-shake_out(sha3_ctx_t *c, void *out, size_t len)
+shake_out(sha3_ctx *c, void *out, size_t len)
{
size_t i;
int j;
diff --git a/lib/libcrypto/sha/sha3_internal.h b/lib/libcrypto/sha/sha3_internal.h
index 20144effd10..5156ad9d80e 100644
--- a/lib/libcrypto/sha/sha3_internal.h
+++ b/lib/libcrypto/sha/sha3_internal.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: sha3_internal.h,v 1.6 2023/04/15 18:29:26 jsing Exp $ */
+/* $OpenBSD: sha3_internal.h,v 1.7 2023/04/15 18:30:27 jsing Exp $ */
/*
* The MIT License (MIT)
*
@@ -35,13 +35,13 @@ typedef struct {
uint64_t q[25]; /* State as 64 bit words. */
} st;
int pt, rsiz, mdlen;
-} sha3_ctx_t;
+} sha3_ctx;
void sha3_keccakf(uint64_t st[25]);
-int sha3_init(sha3_ctx_t *c, int mdlen);
-int sha3_update(sha3_ctx_t *c, const void *data, size_t len);
-int sha3_final(void *md, sha3_ctx_t *c);
+int sha3_init(sha3_ctx *c, int mdlen);
+int sha3_update(sha3_ctx *c, const void *data, size_t len);
+int sha3_final(void *md, sha3_ctx *c);
void *sha3(const void *in, size_t inlen, void *md, int mdlen);
@@ -50,7 +50,7 @@ void *sha3(const void *in, size_t inlen, void *md, int mdlen);
#define shake256_init(c) sha3_init(c, 32)
#define shake_update sha3_update
-void shake_xof(sha3_ctx_t *c);
-void shake_out(sha3_ctx_t *c, void *out, size_t len);
+void shake_xof(sha3_ctx *c);
+void shake_out(sha3_ctx *c, void *out, size_t len);
#endif