@@ -506,18 +506,6 @@ int crypto_ahash_digest(struct ahash_request *req);
506
506
*/
507
507
int crypto_ahash_export (struct ahash_request * req , void * out );
508
508
509
- /**
510
- * crypto_ahash_export_core() - extract core state for message digest
511
- * @req: reference to the ahash_request handle whose state is exported
512
- * @out: output buffer of sufficient size that can hold the hash state
513
- *
514
- * Export the hash state without the partial block buffer.
515
- *
516
- * Context: Softirq or process context.
517
- * Return: 0 if the export creation was successful; < 0 if an error occurred
518
- */
519
- int crypto_ahash_export_core (struct ahash_request * req , void * out );
520
-
521
509
/**
522
510
* crypto_ahash_import() - import message digest state
523
511
* @req: reference to ahash_request handle the state is imported into
@@ -531,18 +519,6 @@ int crypto_ahash_export_core(struct ahash_request *req, void *out);
531
519
*/
532
520
int crypto_ahash_import (struct ahash_request * req , const void * in );
533
521
534
- /**
535
- * crypto_ahash_import_core() - import core state
536
- * @req: reference to ahash_request handle the state is imported into
537
- * @in: buffer holding the state
538
- *
539
- * Import the hash state without the partial block buffer.
540
- *
541
- * Context: Softirq or process context.
542
- * Return: 0 if the import was successful; < 0 if an error occurred
543
- */
544
- int crypto_ahash_import_core (struct ahash_request * req , const void * in );
545
-
546
522
/**
547
523
* crypto_ahash_init() - (re)initialize message digest handle
548
524
* @req: ahash_request handle that already is initialized with all necessary
@@ -933,18 +909,6 @@ int crypto_hash_digest(struct crypto_ahash *tfm, const u8 *data,
933
909
*/
934
910
int crypto_shash_export (struct shash_desc * desc , void * out );
935
911
936
- /**
937
- * crypto_shash_export_core() - extract core state for message digest
938
- * @desc: reference to the operational state handle whose state is exported
939
- * @out: output buffer of sufficient size that can hold the hash state
940
- *
941
- * Export the hash state without the partial block buffer.
942
- *
943
- * Context: Softirq or process context.
944
- * Return: 0 if the export creation was successful; < 0 if an error occurred
945
- */
946
- int crypto_shash_export_core (struct shash_desc * desc , void * out );
947
-
948
912
/**
949
913
* crypto_shash_import() - import operational state
950
914
* @desc: reference to the operational state handle the state imported into
@@ -959,18 +923,6 @@ int crypto_shash_export_core(struct shash_desc *desc, void *out);
959
923
*/
960
924
int crypto_shash_import (struct shash_desc * desc , const void * in );
961
925
962
- /**
963
- * crypto_shash_import_core() - import core state
964
- * @desc: reference to the operational state handle the state imported into
965
- * @in: buffer holding the state
966
- *
967
- * Import the hash state without the partial block buffer.
968
- *
969
- * Context: Softirq or process context.
970
- * Return: 0 if the import was successful; < 0 if an error occurred
971
- */
972
- int crypto_shash_import_core (struct shash_desc * desc , const void * in );
973
-
974
926
/**
975
927
* crypto_shash_init() - (re)initialize message digest
976
928
* @desc: operational state handle that is already filled
0 commit comments