]> Git Repo - J-u-boot.git/blame - include/hash.h
gpio: renesas: Pass struct udevice to rcar_gpio_set_direction()
[J-u-boot.git] / include / hash.h
CommitLineData
83d290c5 1/* SPDX-License-Identifier: GPL-2.0+ */
460408ef
SG
2/*
3 * Copyright (c) 2012 The Chromium OS Authors.
460408ef
SG
4 */
5
6#ifndef _HASH_H
7#define _HASH_H
8
09140113
SG
9struct cmd_tbl;
10
1de7bb4f
MW
11/*
12 * Maximum digest size for all algorithms we support. Having this value
13 * avoids a malloc() or C99 local declaration in common/cmd_hash.c.
14 */
d16b38f4
RD
15#if defined(CONFIG_SHA384) || defined(CONFIG_SHA512)
16#define HASH_MAX_DIGEST_SIZE 64
17#else
1de7bb4f 18#define HASH_MAX_DIGEST_SIZE 32
d16b38f4 19#endif
1de7bb4f
MW
20
21enum {
22 HASH_FLAG_VERIFY = 1 << 0, /* Enable verify mode */
23 HASH_FLAG_ENV = 1 << 1, /* Allow env vars */
24};
25
460408ef
SG
26struct hash_algo {
27 const char *name; /* Name of algorithm */
28 int digest_size; /* Length of digest */
29 /**
30 * hash_func_ws: Generic hashing function
31 *
32 * This is the generic prototype for a hashing function. We only
33 * have the watchdog version at present.
34 *
35 * @input: Input buffer
36 * @ilen: Input buffer length
37 * @output: Checksum result (length depends on algorithm)
38 * @chunk_sz: Trigger watchdog after processing this many bytes
39 */
40 void (*hash_func_ws)(const unsigned char *input, unsigned int ilen,
41 unsigned char *output, unsigned int chunk_sz);
42 int chunk_size; /* Watchdog chunk size */
bf007ebb
HT
43 /*
44 * hash_init: Create the context for progressive hashing
45 *
46 * @algo: Pointer to the hash_algo struct
47 * @ctxp: Pointer to the pointer of the context for hashing
48 * @return 0 if ok, -1 on error
49 */
50 int (*hash_init)(struct hash_algo *algo, void **ctxp);
51 /*
52 * hash_update: Perform hashing on the given buffer
53 *
54 * The context is freed by this function if an error occurs.
55 *
56 * @algo: Pointer to the hash_algo struct
57 * @ctx: Pointer to the context for hashing
58 * @buf: Pointer to the buffer being hashed
59 * @size: Size of the buffer being hashed
60 * @is_last: 1 if this is the last update; 0 otherwise
61 * @return 0 if ok, -1 on error
62 */
63 int (*hash_update)(struct hash_algo *algo, void *ctx, const void *buf,
64 unsigned int size, int is_last);
65 /*
66 * hash_finish: Write the hash result to the given buffer
67 *
68 * The context is freed by this function.
69 *
70 * @algo: Pointer to the hash_algo struct
71 * @ctx: Pointer to the context for hashing
72 * @dest_buf: Pointer to the buffer for the result
73 * @size: Size of the buffer for the result
74 * @return 0 if ok, -ENOSPC if size of the result buffer is too small
75 * or -1 on other errors
76 */
77 int (*hash_finish)(struct hash_algo *algo, void *ctx, void *dest_buf,
78 int size);
460408ef
SG
79};
80
2dd90027 81#ifndef USE_HOSTCC
460408ef
SG
82/**
83 * hash_command: Process a hash command for a particular algorithm
84 *
85 * This common function is used to implement specific hash commands.
86 *
218da0f3 87 * @algo_name: Hash algorithm being used (lower case!)
d5b76673 88 * @flags: Flags value (HASH_FLAG_...)
460408ef
SG
89 * @cmdtp: Pointer to command table entry
90 * @flag: Some flags normally 0 (see CMD_FLAG_.. above)
91 * @argc: Number of arguments (arg 0 must be the command text)
92 * @argv: Arguments
93 */
09140113
SG
94int hash_command(const char *algo_name, int flags, struct cmd_tbl *cmdtp,
95 int flag, int argc, char *const argv[]);
460408ef 96
6f907b42
SG
97/**
98 * hash_block() - Hash a block according to the requested algorithm
99 *
100 * The caller probably knows the hash length for the chosen algorithm, but
101 * in order to provide a general interface, and output_size parameter is
102 * provided.
103 *
104 * @algo_name: Hash algorithm to use
105 * @data: Data to hash
106 * @len: Lengh of data to hash in bytes
107 * @output: Place to put hash value
108 * @output_size: On entry, pointer to the number of bytes available in
109 * output. On exit, pointer to the number of bytes used.
110 * If NULL, then it is assumed that the caller has
111 * allocated enough space for the hash. This is possible
112 * since the caller is selecting the algorithm.
113 * @return 0 if ok, -ve on error: -EPROTONOSUPPORT for an unknown algorithm,
114 * -ENOSPC if the output buffer is not large enough.
115 */
116int hash_block(const char *algo_name, const void *data, unsigned int len,
117 uint8_t *output, int *output_size);
118
2dd90027
RG
119#endif /* !USE_HOSTCC */
120
bf007ebb
HT
121/**
122 * hash_lookup_algo() - Look up the hash_algo struct for an algorithm
123 *
124 * The function returns the pointer to the struct or -EPROTONOSUPPORT if the
125 * algorithm is not available.
126 *
127 * @algo_name: Hash algorithm to look up
128 * @algop: Pointer to the hash_algo struct if found
129 *
130 * @return 0 if ok, -EPROTONOSUPPORT for an unknown algorithm.
131 */
132int hash_lookup_algo(const char *algo_name, struct hash_algo **algop);
31890ae2 133
46fe2c04
RG
134/**
135 * hash_progressive_lookup_algo() - Look up hash_algo for prog. hash support
136 *
137 * The function returns the pointer to the struct or -EPROTONOSUPPORT if the
138 * algorithm is not available with progressive hash support.
139 *
140 * @algo_name: Hash algorithm to look up
141 * @algop: Pointer to the hash_algo struct if found
142 *
143 * @return 0 if ok, -EPROTONOSUPPORT for an unknown algorithm.
144 */
145int hash_progressive_lookup_algo(const char *algo_name,
146 struct hash_algo **algop);
147
8f0b1e24
SR
148/**
149 * hash_parse_string() - Parse hash string into a binary array
150 *
151 * The function parses a hash string into a binary array that
152 * can for example easily be used to compare to hash values.
153 *
154 * @algo_name: Hash algorithm to look up
155 * @str: Hash string to get parsed
156 * @result: Binary array of the parsed hash string
157 *
158 * @return 0 if ok, -EPROTONOSUPPORT for an unknown algorithm.
159 */
160int hash_parse_string(const char *algo_name, const char *str, uint8_t *result);
161
460408ef 162#endif
This page took 0.502166 seconds and 4 git commands to generate.