Lines Matching full:message
18 * DOC: Message Digest Algorithm Definitions
20 * These data structures define modular message digest algorithm
27 * struct hash_alg_common - define properties of message digest
65 * struct ahash_alg - asynchronous message digest definition
75 * final message digest as this only adds more data into the
106 * is only needed for keyed message digests. SHAx/MDx/CRCx do NOT
173 * struct shash_alg - synchronous message digest definition
194 * @descsize: Size of the operational state for the message digest. This state
239 * DOC: Asynchronous Message Digest API
241 * The asynchronous message digest API is used with the ciphers of type
314 * The block size for the message digest cipher referenced with the cipher
337 * crypto_ahash_digestsize() - obtain message digest size
340 * The size for the message digest created by the message digest cipher
344 * Return: message digest size of cipher
428 * crypto_ahash_finup() - update and finalize message digest
441 * crypto_ahash_final() - calculate message digest
445 * Finalize the message digest operation and create the message digest
446 * based on all data added to the cipher handle. The message digest is placed
450 * 0 if the message digest was successfully calculated;
458 * crypto_ahash_digest() - calculate message digest for a buffer
471 * crypto_ahash_export() - extract current message digest state
484 * crypto_ahash_import() - import message digest state
497 * crypto_ahash_init() - (re)initialize message digest handle
501 * The call (re-)initializes the message digest referenced by the ahash_request
510 * crypto_ahash_update() - add data to message digest for processing
514 * Updates the message digest state of the &ahash_request handle. The input data
528 * to plaintext and the message digest output buffer, asynchronous callback
553 * message digest API calls. During
634 * @result: buffer that is filled with the message digest -- the caller must
640 * The source scatter/gather list points to the data the message digest is to
653 * DOC: Synchronous Message Digest API
655 * The synchronous message digest API is used with the ciphers of type
658 * The message digest API is able to maintain state information for the
661 * The synchronous message digest API can store user-related context in its
666 * crypto_alloc_shash() - allocate message digest handle
668 * message digest cipher
672 * Allocate a cipher handle for a message digest. The returned &struct
674 * API invocation for that message digest.
692 * crypto_free_shash() - zeroize and free the message digest handle
716 * The block size for the message digest cipher referenced with the cipher
737 * crypto_shash_digestsize() - obtain message digest size
740 * The size for the message digest created by the message digest cipher
796 * crypto_shash_setkey() - set key for message digest
801 * The caller provided key is set for the keyed message digest cipher. The
802 * cipher handle must point to a keyed message digest cipher in order for this
812 * crypto_shash_digest() - calculate message digest for buffer
823 * Return: 0 if the message digest creation was successful; < 0 if an error
830 * crypto_shash_tfm_digest() - calculate message digest for buffer
849 * crypto_shash_export() - extract operational state for message digest
877 * crypto_shash_init() - (re)initialize message digest
880 * The call (re-)initializes the message digest referenced by the
885 * Return: 0 if the message digest initialization was successful; < 0 if an
899 * crypto_shash_update() - add data to message digest for processing
901 * @data: input data to be added to the message digest
904 * Updates the message digest state of the operational state handle.
907 * Return: 0 if the message digest update was successful; < 0 if an error
914 * crypto_shash_final() - calculate message digest
916 * @out: output buffer filled with the message digest
918 * Finalize the message digest operation and create the message digest
919 * based on all data added to the cipher handle. The message digest is placed
924 * Return: 0 if the message digest creation was successful; < 0 if an error
930 * crypto_shash_finup() - calculate message digest of buffer
941 * Return: 0 if the message digest creation was successful; < 0 if an error