Lines Matching full:message

25  * DOC: Message Digest Algorithm Definitions
27 * These data structures define modular message digest algorithm
34 * struct hash_alg_common - define properties of message digest
76 * struct ahash_alg - asynchronous message digest definition
86 * final message digest as this only adds more data into the
119 * is only needed for keyed message digests. SHAx/MDx/CRCx do NOT
208 * struct shash_alg - synchronous message digest definition
231 * @descsize: Size of the operational state for the message digest. This state
277 * DOC: Asynchronous Message Digest API
279 * The asynchronous message digest API is used with the ciphers of type
357 * The block size for the message digest cipher referenced with the cipher
380 * crypto_ahash_digestsize() - obtain message digest size
383 * The size for the message digest created by the message digest cipher
387 * Return: message digest size of cipher
471 * crypto_ahash_finup() - update and finalize message digest
484 * crypto_ahash_final() - calculate message digest
488 * Finalize the message digest operation and create the message digest
489 * based on all data added to the cipher handle. The message digest is placed
493 * 0 if the message digest was successfully calculated;
505 * crypto_ahash_digest() - calculate message digest for a buffer
518 * crypto_ahash_export() - extract current message digest state
531 * crypto_ahash_import() - import message digest state
544 * crypto_ahash_init() - (re)initialize message digest handle
548 * The call (re-)initializes the message digest referenced by the ahash_request
557 * crypto_ahash_update() - add data to message digest for processing
561 * Updates the message digest state of the &ahash_request handle. The input data
575 * to plaintext and the message digest output buffer, asynchronous callback
600 * message digest API calls. During
678 * @result: buffer that is filled with the message digest -- the caller must
684 * The source scatter/gather list points to the data the message digest is to
701 * @result: buffer that is filled with the message digest -- the caller must
707 * The source virtual address points to the data the message digest is to
721 * DOC: Synchronous Message Digest API
723 * The synchronous message digest API is used with the ciphers of type
726 * The message digest API is able to maintain state information for the
729 * The synchronous message digest API can store user-related context in its
734 * crypto_alloc_shash() - allocate message digest handle
736 * message digest cipher
740 * Allocate a cipher handle for a message digest. The returned &struct
742 * API invocation for that message digest.
760 * crypto_free_shash() - zeroize and free the message digest handle
784 * The block size for the message digest cipher referenced with the cipher
805 * crypto_shash_digestsize() - obtain message digest size
808 * The size for the message digest created by the message digest cipher
864 * crypto_shash_setkey() - set key for message digest
869 * The caller provided key is set for the keyed message digest cipher. The
870 * cipher handle must point to a keyed message digest cipher in order for this
880 * crypto_shash_digest() - calculate message digest for buffer
891 * Return: 0 if the message digest creation was successful; < 0 if an error
898 * crypto_shash_tfm_digest() - calculate message digest for buffer
920 * crypto_shash_export() - extract operational state for message digest
948 * crypto_shash_init() - (re)initialize message digest
951 * The call (re-)initializes the message digest referenced by the
956 * Return: 0 if the message digest initialization was successful; < 0 if an
962 * crypto_shash_finup() - calculate message digest of buffer
973 * Return: 0 if the message digest creation was successful; < 0 if an error
980 * crypto_shash_update() - add data to message digest for processing
982 * @data: input data to be added to the message digest
985 * Updates the message digest state of the operational state handle.
988 * Return: 0 if the message digest update was successful; < 0 if an error
998 * crypto_shash_final() - calculate message digest
1000 * @out: output buffer filled with the message digest
1002 * Finalize the message digest operation and create the message digest
1003 * based on all data added to the cipher handle. The message digest is placed
1008 * Return: 0 if the message digest creation was successful; < 0 if an error