summaryrefslogtreecommitdiff
path: root/lib/crypto-backend.c
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@redhat.com>2015-03-18 10:09:34 +0100
committerNikos Mavrogiannopoulos <nmav@redhat.com>2015-03-18 10:09:34 +0100
commit3862a97af5ebefa656aa738af37f443ad86f8a3e (patch)
tree06ad6a5f2a2d378575ab24153bf35a22a742ee1e /lib/crypto-backend.c
parentf0c4dd30e7f51cd09299a130cf68ad79c58cb270 (diff)
downloadgnutls-3862a97af5ebefa656aa738af37f443ad86f8a3e.tar.gz
removed unused functions
Diffstat (limited to 'lib/crypto-backend.c')
-rw-r--r--lib/crypto-backend.c97
1 files changed, 0 insertions, 97 deletions
diff --git a/lib/crypto-backend.c b/lib/crypto-backend.c
index 2132b5334e..17f3dd03c8 100644
--- a/lib/crypto-backend.c
+++ b/lib/crypto-backend.c
@@ -342,100 +342,3 @@ int gnutls_crypto_pk_register(int priority, const gnutls_crypto_pk_st * s)
return GNUTLS_E_CRYPTO_ALREADY_REGISTERED;
}
-/*-
- * gnutls_crypto_cipher_register:
- * @priority: is the priority of the cipher interface
- * @s: is a structure holding new interface's data
- *
- * This function will register a cipher interface to be used by
- * gnutls. Any interface registered will override the included engine
- * and by convention kernel implemented interfaces should have
- * priority of 90 and CPU-assisted of 80. The interface with the lowest priority will be used
- * by gnutls.
- *
- * This function should be called before gnutls_global_init().
- *
- * For simplicity you can use the convenience
- * gnutls_crypto_cipher_register() macro.
- *
- * Returns: %GNUTLS_E_SUCCESS on success, otherwise a negative error code.
- *
- * Since: 2.6.0
- -*/
-int
-gnutls_crypto_cipher_register(int priority,
- const gnutls_crypto_cipher_st * s)
-{
- if (crypto_cipher_prio > priority) {
- memcpy(&_gnutls_cipher_ops, s, sizeof(*s));
- crypto_cipher_prio = priority;
- return 0;
- }
-
- return GNUTLS_E_CRYPTO_ALREADY_REGISTERED;
-}
-
-/*-
- * gnutls_crypto_mac_register:
- * @priority: is the priority of the mac interface
- * @s: is a structure holding new interface's data
- *
- * This function will register a mac interface to be used by
- * gnutls. Any interface registered will override the included engine
- * and by convention kernel implemented interfaces should have
- * priority of 90 and CPU-assisted of 80. The interface with the lowest priority will be used
- * by gnutls.
- *
- * This function should be called before gnutls_global_init().
- *
- * For simplicity you can use the convenience
- * gnutls_crypto_digest_register() macro.
- *
- * Returns: %GNUTLS_E_SUCCESS on success, otherwise a negative error code.
- *
- * Since: 2.6.0
- -*/
-int
-gnutls_crypto_mac_register(int priority, const gnutls_crypto_mac_st * s)
-{
- if (crypto_mac_prio > priority) {
- memcpy(&_gnutls_mac_ops, s, sizeof(*s));
- crypto_mac_prio = priority;
- return 0;
- }
-
- return GNUTLS_E_CRYPTO_ALREADY_REGISTERED;
-}
-
-/*-
- * gnutls_crypto_digest_register:
- * @priority: is the priority of the digest interface
- * @s: is a structure holding new interface's data
- *
- * This function will register a digest interface to be used by
- * gnutls. Any interface registered will override the included engine
- * and by convention kernel implemented interfaces should have
- * priority of 90 and CPU-assisted of 80. The interface with the lowest priority will be used
- * by gnutls.
- *
- * This function should be called before gnutls_global_init().
- *
- * For simplicity you can use the convenience
- * gnutls_crypto_digest_register() macro.
- *
- * Returns: %GNUTLS_E_SUCCESS on success, otherwise a negative error code.
- *
- * Since: 2.6.0
- -*/
-int
-gnutls_crypto_digest_register(int priority,
- const gnutls_crypto_digest_st * s)
-{
- if (crypto_digest_prio > priority) {
- memcpy(&_gnutls_digest_ops, s, sizeof(*s));
- crypto_digest_prio = priority;
- return 0;
- }
-
- return GNUTLS_E_CRYPTO_ALREADY_REGISTERED;
-}