From f1ccfac037766fe7f3db33640fcdca3ba496aeaf Mon Sep 17 00:00:00 2001 From: Miloslav Trmač Date: Thu, 2 Dec 2010 16:13:32 +0100 Subject: Drop ncr_private_key_create (). The current API exposes NSS internal mechanisms, drop it for now. Perhaps a better interface can be added in the future. --- include/ncrypto/ncrypto.h | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'include/ncrypto/ncrypto.h') diff --git a/include/ncrypto/ncrypto.h b/include/ncrypto/ncrypto.h index ff20d8c..329d12a 100644 --- a/include/ncrypto/ncrypto.h +++ b/include/ncrypto/ncrypto.h @@ -77,12 +77,10 @@ CK_RV ncr_public_key_create (struct ncr_public_key **key, const void *der, CK_RV ncr_public_key_export (struct ncr_public_key *key, void *dest, size_t *dest_size_ptr); CK_RV ncr_public_key_destroy (struct ncr_public_key *key); + /* The PKCS#8 privateKeyInfo structure is used for private keys. "Sensitive" corresponds to CKA_SENSITIVE. */ -CK_RV ncr_private_key_create (struct ncr_private_key **key, CK_KEY_TYPE type, - _Bool sensitive, const void *der, size_t der_size, - const void *public_value, - size_t public_value_size); +/* Use algorithm-specific ncr_private_key_create_* for key creation. */ CK_RV ncr_private_key_set_sensitive (struct ncr_private_key *key); CK_RV ncr_private_key_export (struct ncr_private_key *key, void *dest, size_t *dest_size_ptr); -- cgit