aboutsummaryrefslogtreecommitdiff
path: root/platform/linux-generic/include
diff options
context:
space:
mode:
authorMike Holmes <mike.holmes@linaro.org>2014-11-24 12:18:42 -0500
committerMaxim Uvarov <maxim.uvarov@linaro.org>2014-11-25 18:06:40 +0300
commitaa0cd5993b5452275bd1398cadf57a2b1e206cf3 (patch)
tree1495883443287b8445b924cfe70ac915fcc14350 /platform/linux-generic/include
parent4a64ecca19e44edc6f9ac1926dbc823fb6928ace (diff)
API: crypto: Remove unused async API
For the 1.0 release there are no platforms using the async API. With no way to test these APIs they should be removed until needed. Signed-off-by: Mike Holmes <mike.holmes@linaro.org> Reviewed-by: Robert King <robking@cisco.com> Signed-off-by: Maxim Uvarov <maxim.uvarov@linaro.org>
Diffstat (limited to 'platform/linux-generic/include')
-rw-r--r--platform/linux-generic/include/api/odp_crypto.h44
1 files changed, 0 insertions, 44 deletions
diff --git a/platform/linux-generic/include/api/odp_crypto.h b/platform/linux-generic/include/api/odp_crypto.h
index 4741bcbdf..337e7cfe2 100644
--- a/platform/linux-generic/include/api/odp_crypto.h
+++ b/platform/linux-generic/include/api/odp_crypto.h
@@ -225,50 +225,6 @@ odp_crypto_session_create(odp_crypto_session_params_t *params,
odp_crypto_session_t *session,
enum odp_crypto_ses_create_err *status);
-/**
- * Crypto session creation (asynchronous)
- *
- * Initiate crypto session creation. Results are delivered using
- * the completion event via the completion queue.
- *
- * @param params Session parameters
- * @param completion_event Event by which the session creation results are
- * delivered.
- * @param completion_queue Queue by which the completion event will be
- * delivered.
- *
- * @return 0 if successful else -1
- *
- */
-int
-odp_crypto_session_create_async(odp_crypto_session_params_t *params,
- odp_buffer_t completion_event,
- odp_queue_t completion_queue);
-
-
-/**
- * Crypto session creation completion status
- *
- * Accessor function for obtaining creation status from the completion event.
- *
- * @param completion_event Event containing operation results
- * @param status Pointer to store creation return code
- */
-void
-odp_crypto_get_ses_create_compl_status(odp_buffer_t completion_event,
- enum odp_crypto_ses_create_err *status);
-
-/**
- * Crypto session creation completion return value
- *
- * Accessor function for obtaining handle for newly created session.
- *
- * @param completion_event Event containing operation results
- * @param session Pointer to store session handle
- */
-void
-odp_crypto_get_ses_create_compl_session(odp_buffer_t completion_event,
- odp_crypto_session_t *session);
/**
* Crypto per packet operation