2 * Hash: Hash algorithms under the crypto API
4 * Copyright (c) 2008 Herbert Xu <herbert@gondor.apana.org.au>
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the Free
8 * Software Foundation; either version 2 of the License, or (at your option)
13 #ifndef _CRYPTO_HASH_H
14 #define _CRYPTO_HASH_H
16 #include <linux/crypto.h>
21 * DOC: Message Digest Algorithm Definitions
23 * These data structures define modular message digest algorithm
24 * implementations, managed via crypto_register_ahash(),
25 * crypto_register_shash(), crypto_unregister_ahash() and
26 * crypto_unregister_shash().
30 * struct hash_alg_common - define properties of message digest
31 * @digestsize: Size of the result of the transformation. A buffer of this size
32 * must be available to the @final and @finup calls, so they can
33 * store the resulting hash into it. For various predefined sizes,
34 * search include/crypto/ using
35 * git grep _DIGEST_SIZE include/crypto.
36 * @statesize: Size of the block for partial state of the transformation. A
37 * buffer of this size must be passed to the @export function as it
38 * will save the partial state of the transformation into it. On the
39 * other side, the @import function will load the state from a
40 * buffer of this size as well.
41 * @base: Start of data structure of cipher algorithm. The common data
42 * structure of crypto_alg contains information common to all ciphers.
43 * The hash_alg_common data structure now adds the hash-specific
46 struct hash_alg_common
{
47 unsigned int digestsize
;
48 unsigned int statesize
;
50 struct crypto_alg base
;
53 struct ahash_request
{
54 struct crypto_async_request base
;
57 struct scatterlist
*src
;
60 /* This field may only be used by the ahash API code. */
63 void *__ctx
[] CRYPTO_MINALIGN_ATTR
;
67 * struct ahash_alg - asynchronous message digest definition
68 * @init: Initialize the transformation context. Intended only to initialize the
69 * state of the HASH transformation at the begining. This shall fill in
70 * the internal structures used during the entire duration of the whole
71 * transformation. No data processing happens at this point.
72 * @update: Push a chunk of data into the driver for transformation. This
73 * function actually pushes blocks of data from upper layers into the
74 * driver, which then passes those to the hardware as seen fit. This
75 * function must not finalize the HASH transformation by calculating the
76 * final message digest as this only adds more data into the
77 * transformation. This function shall not modify the transformation
78 * context, as this function may be called in parallel with the same
79 * transformation object. Data processing can happen synchronously
80 * [SHASH] or asynchronously [AHASH] at this point.
81 * @final: Retrieve result from the driver. This function finalizes the
82 * transformation and retrieves the resulting hash from the driver and
83 * pushes it back to upper layers. No data processing happens at this
85 * @finup: Combination of @update and @final. This function is effectively a
86 * combination of @update and @final calls issued in sequence. As some
87 * hardware cannot do @update and @final separately, this callback was
88 * added to allow such hardware to be used at least by IPsec. Data
89 * processing can happen synchronously [SHASH] or asynchronously [AHASH]
91 * @digest: Combination of @init and @update and @final. This function
92 * effectively behaves as the entire chain of operations, @init,
93 * @update and @final issued in sequence. Just like @finup, this was
94 * added for hardware which cannot do even the @finup, but can only do
95 * the whole transformation in one run. Data processing can happen
96 * synchronously [SHASH] or asynchronously [AHASH] at this point.
97 * @setkey: Set optional key used by the hashing algorithm. Intended to push
98 * optional key used by the hashing algorithm from upper layers into
99 * the driver. This function can store the key in the transformation
100 * context or can outright program it into the hardware. In the former
101 * case, one must be careful to program the key into the hardware at
102 * appropriate time and one must be careful that .setkey() can be
103 * called multiple times during the existence of the transformation
104 * object. Not all hashing algorithms do implement this function as it
105 * is only needed for keyed message digests. SHAx/MDx/CRCx do NOT
106 * implement this function. HMAC(MDx)/HMAC(SHAx)/CMAC(AES) do implement
107 * this function. This function must be called before any other of the
108 * @init, @update, @final, @finup, @digest is called. No data
109 * processing happens at this point.
110 * @export: Export partial state of the transformation. This function dumps the
111 * entire state of the ongoing transformation into a provided block of
112 * data so it can be @import 'ed back later on. This is useful in case
113 * you want to save partial result of the transformation after
114 * processing certain amount of data and reload this partial result
115 * multiple times later on for multiple re-use. No data processing
116 * happens at this point.
117 * @import: Import partial state of the transformation. This function loads the
118 * entire state of the ongoing transformation from a provided block of
119 * data so the transformation can continue from this point onward. No
120 * data processing happens at this point.
121 * @halg: see struct hash_alg_common
124 int (*init
)(struct ahash_request
*req
);
125 int (*update
)(struct ahash_request
*req
);
126 int (*final
)(struct ahash_request
*req
);
127 int (*finup
)(struct ahash_request
*req
);
128 int (*digest
)(struct ahash_request
*req
);
129 int (*export
)(struct ahash_request
*req
, void *out
);
130 int (*import
)(struct ahash_request
*req
, const void *in
);
131 int (*setkey
)(struct crypto_ahash
*tfm
, const u8
*key
,
132 unsigned int keylen
);
134 struct hash_alg_common halg
;
138 struct crypto_shash
*tfm
;
141 void *__ctx
[] CRYPTO_MINALIGN_ATTR
;
144 #define SHASH_DESC_ON_STACK(shash, ctx) \
145 char __##shash##_desc[sizeof(struct shash_desc) + \
146 crypto_shash_descsize(ctx)] CRYPTO_MINALIGN_ATTR; \
147 struct shash_desc *shash = (struct shash_desc *)__##shash##_desc
150 * struct shash_alg - synchronous message digest definition
151 * @init: see struct ahash_alg
152 * @update: see struct ahash_alg
153 * @final: see struct ahash_alg
154 * @finup: see struct ahash_alg
155 * @digest: see struct ahash_alg
156 * @export: see struct ahash_alg
157 * @import: see struct ahash_alg
158 * @setkey: see struct ahash_alg
159 * @digestsize: see struct ahash_alg
160 * @statesize: see struct ahash_alg
161 * @descsize: Size of the operational state for the message digest. This state
162 * size is the memory size that needs to be allocated for
164 * @base: internally used
167 int (*init
)(struct shash_desc
*desc
);
168 int (*update
)(struct shash_desc
*desc
, const u8
*data
,
170 int (*final
)(struct shash_desc
*desc
, u8
*out
);
171 int (*finup
)(struct shash_desc
*desc
, const u8
*data
,
172 unsigned int len
, u8
*out
);
173 int (*digest
)(struct shash_desc
*desc
, const u8
*data
,
174 unsigned int len
, u8
*out
);
175 int (*export
)(struct shash_desc
*desc
, void *out
);
176 int (*import
)(struct shash_desc
*desc
, const void *in
);
177 int (*setkey
)(struct crypto_shash
*tfm
, const u8
*key
,
178 unsigned int keylen
);
180 unsigned int descsize
;
182 /* These fields must match hash_alg_common. */
183 unsigned int digestsize
184 __attribute__ ((aligned(__alignof__(struct hash_alg_common
))));
185 unsigned int statesize
;
187 struct crypto_alg base
;
190 struct crypto_ahash
{
191 int (*init
)(struct ahash_request
*req
);
192 int (*update
)(struct ahash_request
*req
);
193 int (*final
)(struct ahash_request
*req
);
194 int (*finup
)(struct ahash_request
*req
);
195 int (*digest
)(struct ahash_request
*req
);
196 int (*export
)(struct ahash_request
*req
, void *out
);
197 int (*import
)(struct ahash_request
*req
, const void *in
);
198 int (*setkey
)(struct crypto_ahash
*tfm
, const u8
*key
,
199 unsigned int keylen
);
201 unsigned int reqsize
;
203 struct crypto_tfm base
;
206 struct crypto_shash
{
207 unsigned int descsize
;
208 struct crypto_tfm base
;
212 * DOC: Asynchronous Message Digest API
214 * The asynchronous message digest API is used with the ciphers of type
215 * CRYPTO_ALG_TYPE_AHASH (listed as type "ahash" in /proc/crypto)
217 * The asynchronous cipher operation discussion provided for the
218 * CRYPTO_ALG_TYPE_ABLKCIPHER API applies here as well.
221 static inline struct crypto_ahash
*__crypto_ahash_cast(struct crypto_tfm
*tfm
)
223 return container_of(tfm
, struct crypto_ahash
, base
);
227 * crypto_alloc_ahash() - allocate ahash cipher handle
228 * @alg_name: is the cra_name / name or cra_driver_name / driver name of the
230 * @type: specifies the type of the cipher
231 * @mask: specifies the mask for the cipher
233 * Allocate a cipher handle for an ahash. The returned struct
234 * crypto_ahash is the cipher handle that is required for any subsequent
235 * API invocation for that ahash.
237 * Return: allocated cipher handle in case of success; IS_ERR() is true in case
238 * of an error, PTR_ERR() returns the error code.
240 struct crypto_ahash
*crypto_alloc_ahash(const char *alg_name
, u32 type
,
243 static inline struct crypto_tfm
*crypto_ahash_tfm(struct crypto_ahash
*tfm
)
249 * crypto_free_ahash() - zeroize and free the ahash handle
250 * @tfm: cipher handle to be freed
252 static inline void crypto_free_ahash(struct crypto_ahash
*tfm
)
254 crypto_destroy_tfm(tfm
, crypto_ahash_tfm(tfm
));
257 static inline unsigned int crypto_ahash_alignmask(
258 struct crypto_ahash
*tfm
)
260 return crypto_tfm_alg_alignmask(crypto_ahash_tfm(tfm
));
263 static inline struct hash_alg_common
*__crypto_hash_alg_common(
264 struct crypto_alg
*alg
)
266 return container_of(alg
, struct hash_alg_common
, base
);
269 static inline struct hash_alg_common
*crypto_hash_alg_common(
270 struct crypto_ahash
*tfm
)
272 return __crypto_hash_alg_common(crypto_ahash_tfm(tfm
)->__crt_alg
);
276 * crypto_ahash_digestsize() - obtain message digest size
277 * @tfm: cipher handle
279 * The size for the message digest created by the message digest cipher
280 * referenced with the cipher handle is returned.
283 * Return: message digest size of cipher
285 static inline unsigned int crypto_ahash_digestsize(struct crypto_ahash
*tfm
)
287 return crypto_hash_alg_common(tfm
)->digestsize
;
290 static inline unsigned int crypto_ahash_statesize(struct crypto_ahash
*tfm
)
292 return crypto_hash_alg_common(tfm
)->statesize
;
295 static inline u32
crypto_ahash_get_flags(struct crypto_ahash
*tfm
)
297 return crypto_tfm_get_flags(crypto_ahash_tfm(tfm
));
300 static inline void crypto_ahash_set_flags(struct crypto_ahash
*tfm
, u32 flags
)
302 crypto_tfm_set_flags(crypto_ahash_tfm(tfm
), flags
);
305 static inline void crypto_ahash_clear_flags(struct crypto_ahash
*tfm
, u32 flags
)
307 crypto_tfm_clear_flags(crypto_ahash_tfm(tfm
), flags
);
311 * crypto_ahash_reqtfm() - obtain cipher handle from request
312 * @req: asynchronous request handle that contains the reference to the ahash
315 * Return the ahash cipher handle that is registered with the asynchronous
316 * request handle ahash_request.
318 * Return: ahash cipher handle
320 static inline struct crypto_ahash
*crypto_ahash_reqtfm(
321 struct ahash_request
*req
)
323 return __crypto_ahash_cast(req
->base
.tfm
);
327 * crypto_ahash_reqsize() - obtain size of the request data structure
328 * @tfm: cipher handle
330 * Return the size of the ahash state size. With the crypto_ahash_export
331 * function, the caller can export the state into a buffer whose size is
332 * defined with this function.
334 * Return: size of the ahash state
336 static inline unsigned int crypto_ahash_reqsize(struct crypto_ahash
*tfm
)
341 static inline void *ahash_request_ctx(struct ahash_request
*req
)
347 * crypto_ahash_setkey - set key for cipher handle
348 * @tfm: cipher handle
349 * @key: buffer holding the key
350 * @keylen: length of the key in bytes
352 * The caller provided key is set for the ahash cipher. The cipher
353 * handle must point to a keyed hash in order for this function to succeed.
355 * Return: 0 if the setting of the key was successful; < 0 if an error occurred
357 int crypto_ahash_setkey(struct crypto_ahash
*tfm
, const u8
*key
,
358 unsigned int keylen
);
360 static inline bool crypto_ahash_has_setkey(struct crypto_ahash
*tfm
)
362 return tfm
->has_setkey
;
366 * crypto_ahash_finup() - update and finalize message digest
367 * @req: reference to the ahash_request handle that holds all information
368 * needed to perform the cipher operation
370 * This function is a "short-hand" for the function calls of
371 * crypto_ahash_update and crypto_shash_final. The parameters have the same
372 * meaning as discussed for those separate functions.
374 * Return: 0 if the message digest creation was successful; < 0 if an error
377 int crypto_ahash_finup(struct ahash_request
*req
);
380 * crypto_ahash_final() - calculate message digest
381 * @req: reference to the ahash_request handle that holds all information
382 * needed to perform the cipher operation
384 * Finalize the message digest operation and create the message digest
385 * based on all data added to the cipher handle. The message digest is placed
386 * into the output buffer registered with the ahash_request handle.
388 * Return: 0 if the message digest creation was successful; < 0 if an error
391 int crypto_ahash_final(struct ahash_request
*req
);
394 * crypto_ahash_digest() - calculate message digest for a buffer
395 * @req: reference to the ahash_request handle that holds all information
396 * needed to perform the cipher operation
398 * This function is a "short-hand" for the function calls of crypto_ahash_init,
399 * crypto_ahash_update and crypto_ahash_final. The parameters have the same
400 * meaning as discussed for those separate three functions.
402 * Return: 0 if the message digest creation was successful; < 0 if an error
405 int crypto_ahash_digest(struct ahash_request
*req
);
408 * crypto_ahash_export() - extract current message digest state
409 * @req: reference to the ahash_request handle whose state is exported
410 * @out: output buffer of sufficient size that can hold the hash state
412 * This function exports the hash state of the ahash_request handle into the
413 * caller-allocated output buffer out which must have sufficient size (e.g. by
414 * calling crypto_ahash_reqsize).
416 * Return: 0 if the export was successful; < 0 if an error occurred
418 static inline int crypto_ahash_export(struct ahash_request
*req
, void *out
)
420 return crypto_ahash_reqtfm(req
)->export(req
, out
);
424 * crypto_ahash_import() - import message digest state
425 * @req: reference to ahash_request handle the state is imported into
426 * @in: buffer holding the state
428 * This function imports the hash state into the ahash_request handle from the
429 * input buffer. That buffer should have been generated with the
430 * crypto_ahash_export function.
432 * Return: 0 if the import was successful; < 0 if an error occurred
434 static inline int crypto_ahash_import(struct ahash_request
*req
, const void *in
)
436 return crypto_ahash_reqtfm(req
)->import(req
, in
);
440 * crypto_ahash_init() - (re)initialize message digest handle
441 * @req: ahash_request handle that already is initialized with all necessary
442 * data using the ahash_request_* API functions
444 * The call (re-)initializes the message digest referenced by the ahash_request
445 * handle. Any potentially existing state created by previous operations is
448 * Return: 0 if the message digest initialization was successful; < 0 if an
451 static inline int crypto_ahash_init(struct ahash_request
*req
)
453 return crypto_ahash_reqtfm(req
)->init(req
);
457 * crypto_ahash_update() - add data to message digest for processing
458 * @req: ahash_request handle that was previously initialized with the
459 * crypto_ahash_init call.
461 * Updates the message digest state of the &ahash_request handle. The input data
462 * is pointed to by the scatter/gather list registered in the &ahash_request
465 * Return: 0 if the message digest update was successful; < 0 if an error
468 static inline int crypto_ahash_update(struct ahash_request
*req
)
470 return crypto_ahash_reqtfm(req
)->update(req
);
474 * DOC: Asynchronous Hash Request Handle
476 * The &ahash_request data structure contains all pointers to data
477 * required for the asynchronous cipher operation. This includes the cipher
478 * handle (which can be used by multiple &ahash_request instances), pointer
479 * to plaintext and the message digest output buffer, asynchronous callback
480 * function, etc. It acts as a handle to the ahash_request_* API calls in a
481 * similar way as ahash handle to the crypto_ahash_* API calls.
485 * ahash_request_set_tfm() - update cipher handle reference in request
486 * @req: request handle to be modified
487 * @tfm: cipher handle that shall be added to the request handle
489 * Allow the caller to replace the existing ahash handle in the request
490 * data structure with a different one.
492 static inline void ahash_request_set_tfm(struct ahash_request
*req
,
493 struct crypto_ahash
*tfm
)
495 req
->base
.tfm
= crypto_ahash_tfm(tfm
);
499 * ahash_request_alloc() - allocate request data structure
500 * @tfm: cipher handle to be registered with the request
501 * @gfp: memory allocation flag that is handed to kmalloc by the API call.
503 * Allocate the request data structure that must be used with the ahash
504 * message digest API calls. During
505 * the allocation, the provided ahash handle
506 * is registered in the request data structure.
508 * Return: allocated request handle in case of success; IS_ERR() is true in case
509 * of an error, PTR_ERR() returns the error code.
511 static inline struct ahash_request
*ahash_request_alloc(
512 struct crypto_ahash
*tfm
, gfp_t gfp
)
514 struct ahash_request
*req
;
516 req
= kmalloc(sizeof(struct ahash_request
) +
517 crypto_ahash_reqsize(tfm
), gfp
);
520 ahash_request_set_tfm(req
, tfm
);
526 * ahash_request_free() - zeroize and free the request data structure
527 * @req: request data structure cipher handle to be freed
529 static inline void ahash_request_free(struct ahash_request
*req
)
534 static inline struct ahash_request
*ahash_request_cast(
535 struct crypto_async_request
*req
)
537 return container_of(req
, struct ahash_request
, base
);
541 * ahash_request_set_callback() - set asynchronous callback function
542 * @req: request handle
543 * @flags: specify zero or an ORing of the flags
544 * CRYPTO_TFM_REQ_MAY_BACKLOG the request queue may back log and
545 * increase the wait queue beyond the initial maximum size;
546 * CRYPTO_TFM_REQ_MAY_SLEEP the request processing may sleep
547 * @compl: callback function pointer to be registered with the request handle
548 * @data: The data pointer refers to memory that is not used by the kernel
549 * crypto API, but provided to the callback function for it to use. Here,
550 * the caller can provide a reference to memory the callback function can
551 * operate on. As the callback function is invoked asynchronously to the
552 * related functionality, it may need to access data structures of the
553 * related functionality which can be referenced using this pointer. The
554 * callback function can access the memory via the "data" field in the
555 * &crypto_async_request data structure provided to the callback function.
557 * This function allows setting the callback function that is triggered once
558 * the cipher operation completes.
560 * The callback function is registered with the &ahash_request handle and
561 * must comply with the following template
563 * void callback_function(struct crypto_async_request *req, int error)
565 static inline void ahash_request_set_callback(struct ahash_request
*req
,
567 crypto_completion_t
compl,
570 req
->base
.complete
= compl;
571 req
->base
.data
= data
;
572 req
->base
.flags
= flags
;
576 * ahash_request_set_crypt() - set data buffers
577 * @req: ahash_request handle to be updated
578 * @src: source scatter/gather list
579 * @result: buffer that is filled with the message digest -- the caller must
580 * ensure that the buffer has sufficient space by, for example, calling
581 * crypto_ahash_digestsize()
582 * @nbytes: number of bytes to process from the source scatter/gather list
584 * By using this call, the caller references the source scatter/gather list.
585 * The source scatter/gather list points to the data the message digest is to
588 static inline void ahash_request_set_crypt(struct ahash_request
*req
,
589 struct scatterlist
*src
, u8
*result
,
593 req
->nbytes
= nbytes
;
594 req
->result
= result
;
598 * DOC: Synchronous Message Digest API
600 * The synchronous message digest API is used with the ciphers of type
601 * CRYPTO_ALG_TYPE_SHASH (listed as type "shash" in /proc/crypto)
603 * The message digest API is able to maintain state information for the
606 * The synchronous message digest API can store user-related context in in its
607 * shash_desc request data structure.
611 * crypto_alloc_shash() - allocate message digest handle
612 * @alg_name: is the cra_name / name or cra_driver_name / driver name of the
613 * message digest cipher
614 * @type: specifies the type of the cipher
615 * @mask: specifies the mask for the cipher
617 * Allocate a cipher handle for a message digest. The returned &struct
618 * crypto_shash is the cipher handle that is required for any subsequent
619 * API invocation for that message digest.
621 * Return: allocated cipher handle in case of success; IS_ERR() is true in case
622 * of an error, PTR_ERR() returns the error code.
624 struct crypto_shash
*crypto_alloc_shash(const char *alg_name
, u32 type
,
627 static inline struct crypto_tfm
*crypto_shash_tfm(struct crypto_shash
*tfm
)
633 * crypto_free_shash() - zeroize and free the message digest handle
634 * @tfm: cipher handle to be freed
636 static inline void crypto_free_shash(struct crypto_shash
*tfm
)
638 crypto_destroy_tfm(tfm
, crypto_shash_tfm(tfm
));
641 static inline unsigned int crypto_shash_alignmask(
642 struct crypto_shash
*tfm
)
644 return crypto_tfm_alg_alignmask(crypto_shash_tfm(tfm
));
648 * crypto_shash_blocksize() - obtain block size for cipher
649 * @tfm: cipher handle
651 * The block size for the message digest cipher referenced with the cipher
652 * handle is returned.
654 * Return: block size of cipher
656 static inline unsigned int crypto_shash_blocksize(struct crypto_shash
*tfm
)
658 return crypto_tfm_alg_blocksize(crypto_shash_tfm(tfm
));
661 static inline struct shash_alg
*__crypto_shash_alg(struct crypto_alg
*alg
)
663 return container_of(alg
, struct shash_alg
, base
);
666 static inline struct shash_alg
*crypto_shash_alg(struct crypto_shash
*tfm
)
668 return __crypto_shash_alg(crypto_shash_tfm(tfm
)->__crt_alg
);
672 * crypto_shash_digestsize() - obtain message digest size
673 * @tfm: cipher handle
675 * The size for the message digest created by the message digest cipher
676 * referenced with the cipher handle is returned.
678 * Return: digest size of cipher
680 static inline unsigned int crypto_shash_digestsize(struct crypto_shash
*tfm
)
682 return crypto_shash_alg(tfm
)->digestsize
;
685 static inline unsigned int crypto_shash_statesize(struct crypto_shash
*tfm
)
687 return crypto_shash_alg(tfm
)->statesize
;
690 static inline u32
crypto_shash_get_flags(struct crypto_shash
*tfm
)
692 return crypto_tfm_get_flags(crypto_shash_tfm(tfm
));
695 static inline void crypto_shash_set_flags(struct crypto_shash
*tfm
, u32 flags
)
697 crypto_tfm_set_flags(crypto_shash_tfm(tfm
), flags
);
700 static inline void crypto_shash_clear_flags(struct crypto_shash
*tfm
, u32 flags
)
702 crypto_tfm_clear_flags(crypto_shash_tfm(tfm
), flags
);
706 * crypto_shash_descsize() - obtain the operational state size
707 * @tfm: cipher handle
709 * The size of the operational state the cipher needs during operation is
710 * returned for the hash referenced with the cipher handle. This size is
711 * required to calculate the memory requirements to allow the caller allocating
712 * sufficient memory for operational state.
714 * The operational state is defined with struct shash_desc where the size of
715 * that data structure is to be calculated as
716 * sizeof(struct shash_desc) + crypto_shash_descsize(alg)
718 * Return: size of the operational state
720 static inline unsigned int crypto_shash_descsize(struct crypto_shash
*tfm
)
722 return tfm
->descsize
;
725 static inline void *shash_desc_ctx(struct shash_desc
*desc
)
731 * crypto_shash_setkey() - set key for message digest
732 * @tfm: cipher handle
733 * @key: buffer holding the key
734 * @keylen: length of the key in bytes
736 * The caller provided key is set for the keyed message digest cipher. The
737 * cipher handle must point to a keyed message digest cipher in order for this
738 * function to succeed.
740 * Return: 0 if the setting of the key was successful; < 0 if an error occurred
742 int crypto_shash_setkey(struct crypto_shash
*tfm
, const u8
*key
,
743 unsigned int keylen
);
746 * crypto_shash_digest() - calculate message digest for buffer
747 * @desc: see crypto_shash_final()
748 * @data: see crypto_shash_update()
749 * @len: see crypto_shash_update()
750 * @out: see crypto_shash_final()
752 * This function is a "short-hand" for the function calls of crypto_shash_init,
753 * crypto_shash_update and crypto_shash_final. The parameters have the same
754 * meaning as discussed for those separate three functions.
756 * Return: 0 if the message digest creation was successful; < 0 if an error
759 int crypto_shash_digest(struct shash_desc
*desc
, const u8
*data
,
760 unsigned int len
, u8
*out
);
763 * crypto_shash_export() - extract operational state for message digest
764 * @desc: reference to the operational state handle whose state is exported
765 * @out: output buffer of sufficient size that can hold the hash state
767 * This function exports the hash state of the operational state handle into the
768 * caller-allocated output buffer out which must have sufficient size (e.g. by
769 * calling crypto_shash_descsize).
771 * Return: 0 if the export creation was successful; < 0 if an error occurred
773 static inline int crypto_shash_export(struct shash_desc
*desc
, void *out
)
775 return crypto_shash_alg(desc
->tfm
)->export(desc
, out
);
779 * crypto_shash_import() - import operational state
780 * @desc: reference to the operational state handle the state imported into
781 * @in: buffer holding the state
783 * This function imports the hash state into the operational state handle from
784 * the input buffer. That buffer should have been generated with the
785 * crypto_ahash_export function.
787 * Return: 0 if the import was successful; < 0 if an error occurred
789 static inline int crypto_shash_import(struct shash_desc
*desc
, const void *in
)
791 return crypto_shash_alg(desc
->tfm
)->import(desc
, in
);
795 * crypto_shash_init() - (re)initialize message digest
796 * @desc: operational state handle that is already filled
798 * The call (re-)initializes the message digest referenced by the
799 * operational state handle. Any potentially existing state created by
800 * previous operations is discarded.
802 * Return: 0 if the message digest initialization was successful; < 0 if an
805 static inline int crypto_shash_init(struct shash_desc
*desc
)
807 return crypto_shash_alg(desc
->tfm
)->init(desc
);
811 * crypto_shash_update() - add data to message digest for processing
812 * @desc: operational state handle that is already initialized
813 * @data: input data to be added to the message digest
814 * @len: length of the input data
816 * Updates the message digest state of the operational state handle.
818 * Return: 0 if the message digest update was successful; < 0 if an error
821 int crypto_shash_update(struct shash_desc
*desc
, const u8
*data
,
825 * crypto_shash_final() - calculate message digest
826 * @desc: operational state handle that is already filled with data
827 * @out: output buffer filled with the message digest
829 * Finalize the message digest operation and create the message digest
830 * based on all data added to the cipher handle. The message digest is placed
831 * into the output buffer. The caller must ensure that the output buffer is
832 * large enough by using crypto_shash_digestsize.
834 * Return: 0 if the message digest creation was successful; < 0 if an error
837 int crypto_shash_final(struct shash_desc
*desc
, u8
*out
);
840 * crypto_shash_finup() - calculate message digest of buffer
841 * @desc: see crypto_shash_final()
842 * @data: see crypto_shash_update()
843 * @len: see crypto_shash_update()
844 * @out: see crypto_shash_final()
846 * This function is a "short-hand" for the function calls of
847 * crypto_shash_update and crypto_shash_final. The parameters have the same
848 * meaning as discussed for those separate functions.
850 * Return: 0 if the message digest creation was successful; < 0 if an error
853 int crypto_shash_finup(struct shash_desc
*desc
, const u8
*data
,
854 unsigned int len
, u8
*out
);
856 #endif /* _CRYPTO_HASH_H */