* [PATCH] digest: add digest_algo helper
@ 2023-09-21 10:24 Ahmad Fatoum
2023-09-21 13:09 ` Sascha Hauer
0 siblings, 1 reply; 2+ messages in thread
From: Ahmad Fatoum @ 2023-09-21 10:24 UTC (permalink / raw)
To: barebox; +Cc: Ahmad Fatoum
Code handling different digest types may want easy access to the digest
algorithm currently in use. Add a simple inline helper for this.
Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de>
---
include/digest.h | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/include/digest.h b/include/digest.h
index b984d57d778e..2816ddffaed2 100644
--- a/include/digest.h
+++ b/include/digest.h
@@ -161,6 +161,11 @@ static inline const char *digest_name(struct digest *d)
return d->algo->base.name;
}
+static inline enum hash_algo digest_algo(struct digest *d)
+{
+ return d->algo->base.algo;
+}
+
static inline void* digest_ctx(struct digest *d)
{
return d->ctx;
--
2.39.2
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] digest: add digest_algo helper
2023-09-21 10:24 [PATCH] digest: add digest_algo helper Ahmad Fatoum
@ 2023-09-21 13:09 ` Sascha Hauer
0 siblings, 0 replies; 2+ messages in thread
From: Sascha Hauer @ 2023-09-21 13:09 UTC (permalink / raw)
To: Ahmad Fatoum; +Cc: barebox
On Thu, Sep 21, 2023 at 12:24:46PM +0200, Ahmad Fatoum wrote:
> Code handling different digest types may want easy access to the digest
> algorithm currently in use. Add a simple inline helper for this.
>
> Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de>
> ---
> include/digest.h | 5 +++++
> 1 file changed, 5 insertions(+)
Applied, thanks
Sascha
>
> diff --git a/include/digest.h b/include/digest.h
> index b984d57d778e..2816ddffaed2 100644
> --- a/include/digest.h
> +++ b/include/digest.h
> @@ -161,6 +161,11 @@ static inline const char *digest_name(struct digest *d)
> return d->algo->base.name;
> }
>
> +static inline enum hash_algo digest_algo(struct digest *d)
> +{
> + return d->algo->base.algo;
> +}
> +
> static inline void* digest_ctx(struct digest *d)
> {
> return d->ctx;
> --
> 2.39.2
>
>
>
--
Pengutronix e.K. | |
Steuerwalder Str. 21 | http://www.pengutronix.de/ |
31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2023-09-21 13:11 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-09-21 10:24 [PATCH] digest: add digest_algo helper Ahmad Fatoum
2023-09-21 13:09 ` Sascha Hauer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox