diff options
author | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2010-12-12 09:40:29 +0100 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2010-12-12 09:40:29 +0100 |
commit | 1c297951ba962c0922f7e8b60f91d32b0d2e901f (patch) | |
tree | 56b770947bcbb98320390dac10a5ef3f39b69035 /lib/pkcs11_privkey.c | |
parent | 535596a4e2f857e6373b28142295bf8d6d1b6654 (diff) | |
download | gnutls-1c297951ba962c0922f7e8b60f91d32b0d2e901f.tar.gz |
deprecated x509/sign.h and moved functionality of it in gnutls_sig.h.
Diffstat (limited to 'lib/pkcs11_privkey.c')
-rw-r--r-- | lib/pkcs11_privkey.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/pkcs11_privkey.c b/lib/pkcs11_privkey.c index efc5e6de2e..547db4d5ac 100644 --- a/lib/pkcs11_privkey.c +++ b/lib/pkcs11_privkey.c @@ -29,7 +29,7 @@ #include <gnutls_errors.h> #include <gnutls_datum.h> #include <pkcs11_int.h> -#include <sign.h> +#include <gnutls_sig.h> struct gnutls_pkcs11_privkey_st { @@ -165,7 +165,7 @@ gnutls_pkcs11_privkey_sign_data (gnutls_pkcs11_privkey_t signer, goto cleanup; } - ret = gnutls_pkcs11_privkey_sign_hash (signer, &digest, signature); + ret = _gnutls_pkcs11_privkey_sign_hash (signer, &digest, signature); _gnutls_free_datum (&digest); if (ret < 0) @@ -195,8 +195,8 @@ cleanup: } \ } while (ret < 0); -/** - * gnutls_pkcs11_privkey_sign_hash: +/*- + * _gnutls_pkcs11_privkey_sign_hash: * @key: Holds the key * @hash: holds the data to be signed (should be output of a hash) * @signature: will contain the signature allocated with gnutls_malloc() @@ -207,9 +207,9 @@ cleanup: * * Returns: On success, %GNUTLS_E_SUCCESS is returned, otherwise a * negative error value. - **/ + -*/ int -gnutls_pkcs11_privkey_sign_hash (gnutls_pkcs11_privkey_t key, +_gnutls_pkcs11_privkey_sign_hash (gnutls_pkcs11_privkey_t key, const gnutls_datum_t * hash, gnutls_datum_t * signature) { |