Lines Matching full:message
17 * DOC: Message Digest Algorithm Definitions
19 * These data structures define modular message digest algorithm
26 * struct hash_alg_common - define properties of message digest
63 * struct ahash_alg - asynchronous message digest definition
73 * final message digest as this only adds more data into the
104 * is only needed for keyed message digests. SHAx/MDx/CRCx do NOT
171 * struct shash_alg - synchronous message digest definition
193 * @descsize: Size of the operational state for the message digest. This state
245 * DOC: Asynchronous Message Digest API
247 * The asynchronous message digest API is used with the ciphers of type
322 * The block size for the message digest cipher referenced with the cipher
345 * crypto_ahash_digestsize() - obtain message digest size
348 * The size for the message digest created by the message digest cipher
352 * Return: message digest size of cipher
436 * crypto_ahash_finup() - update and finalize message digest
449 * crypto_ahash_final() - calculate message digest
453 * Finalize the message digest operation and create the message digest
454 * based on all data added to the cipher handle. The message digest is placed
458 * 0 if the message digest was successfully calculated;
466 * crypto_ahash_digest() - calculate message digest for a buffer
479 * crypto_ahash_export() - extract current message digest state
495 * crypto_ahash_import() - import message digest state
516 * crypto_ahash_init() - (re)initialize message digest handle
520 * The call (re-)initializes the message digest referenced by the ahash_request
537 * crypto_ahash_update() - add data to message digest for processing
541 * Updates the message digest state of the &ahash_request handle. The input data
566 * to plaintext and the message digest output buffer, asynchronous callback
591 * message digest API calls. During
671 * @result: buffer that is filled with the message digest -- the caller must
677 * The source scatter/gather list points to the data the message digest is to
690 * DOC: Synchronous Message Digest API
692 * The synchronous message digest API is used with the ciphers of type
695 * The message digest API is able to maintain state information for the
698 * The synchronous message digest API can store user-related context in its
703 * crypto_alloc_shash() - allocate message digest handle
705 * message digest cipher
709 * Allocate a cipher handle for a message digest. The returned &struct
711 * API invocation for that message digest.
725 * crypto_free_shash() - zeroize and free the message digest handle
753 * The block size for the message digest cipher referenced with the cipher
774 * crypto_shash_digestsize() - obtain message digest size
777 * The size for the message digest created by the message digest cipher
833 * crypto_shash_setkey() - set key for message digest
838 * The caller provided key is set for the keyed message digest cipher. The
839 * cipher handle must point to a keyed message digest cipher in order for this
849 * crypto_shash_digest() - calculate message digest for buffer
860 * Return: 0 if the message digest creation was successful; < 0 if an error
867 * crypto_shash_tfm_digest() - calculate message digest for buffer
886 * crypto_shash_export() - extract operational state for message digest
925 * crypto_shash_init() - (re)initialize message digest
928 * The call (re-)initializes the message digest referenced by the
933 * Return: 0 if the message digest initialization was successful; < 0 if an
947 * crypto_shash_update() - add data to message digest for processing
949 * @data: input data to be added to the message digest
952 * Updates the message digest state of the operational state handle.
955 * Return: 0 if the message digest update was successful; < 0 if an error
962 * crypto_shash_final() - calculate message digest
964 * @out: output buffer filled with the message digest
966 * Finalize the message digest operation and create the message digest
967 * based on all data added to the cipher handle. The message digest is placed
972 * Return: 0 if the message digest creation was successful; < 0 if an error
978 * crypto_shash_finup() - calculate message digest of buffer
989 * Return: 0 if the message digest creation was successful; < 0 if an error