summaryrefslogtreecommitdiffstats
path: root/crypto/store/str_lib.c
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2003-05-20 08:49:12 +0000
committerRichard Levitte <levitte@openssl.org>2003-05-20 08:49:12 +0000
commit164bc7dae8277221564a4f0161eb86e736541220 (patch)
treeeb4dda78563dc06bf52f9647fb6c846122c9746f /crypto/store/str_lib.c
parentf59c9419502287b12a7ae00c5df4113959bd4acf (diff)
Some misspelled function names.
Diffstat (limited to 'crypto/store/str_lib.c')
-rw-r--r--crypto/store/str_lib.c16
1 files changed, 6 insertions, 10 deletions
diff --git a/crypto/store/str_lib.c b/crypto/store/str_lib.c
index dbcf3a07bd..9f59398a68 100644
--- a/crypto/store/str_lib.c
+++ b/crypto/store/str_lib.c
@@ -258,7 +258,7 @@ X509 *STORE_get_certificate(STORE *s, OPENSSL_ITEM attributes[],
return x;
}
-int store_certificate(STORE *s, X509 *data, OPENSSL_ITEM attributes[],
+int STORE_store_certificate(STORE *s, X509 *data, OPENSSL_ITEM attributes[],
OPENSSL_ITEM parameters[])
{
STORE_OBJECT *object = STORE_OBJECT_new();
@@ -445,11 +445,7 @@ EVP_PKEY *STORE_get_private_key(STORE *s, OPENSSL_ITEM attributes[],
REF_PRINT("EVP_PKEY",data);
#endif
pkey = object->data.key;
- STORE_OBJECT_free(object);
- return pkey;
- }
-
-int store_private_key(STORE *s, EVP_PKEY *data, OPENSSL_ITEM attributes[],
+ STORE_OBJECT_free(object);TORE *s, EVP_PKEY *data, OPENSSL_ITEM attributes[],
OPENSSL_ITEM parameters[])
{
STORE_OBJECT *object = STORE_OBJECT_new();
@@ -625,7 +621,7 @@ EVP_PKEY *STORE_get_public_key(STORE *s, OPENSSL_ITEM attributes[],
return pkey;
}
-int store_public_key(STORE *s, EVP_PKEY *data, OPENSSL_ITEM attributes[],
+int STORE_store_public_key(STORE *s, EVP_PKEY *data, OPENSSL_ITEM attributes[],
OPENSSL_ITEM parameters[])
{
STORE_OBJECT *object = STORE_OBJECT_new();
@@ -827,7 +823,7 @@ X509_CRL *STORE_get_crl(STORE *s, OPENSSL_ITEM attributes[],
return crl;
}
-int store_crl(STORE *s, X509_CRL *data, OPENSSL_ITEM attributes[],
+int STORE_store_crl(STORE *s, X509_CRL *data, OPENSSL_ITEM attributes[],
OPENSSL_ITEM parameters[])
{
STORE_OBJECT *object = STORE_OBJECT_new();
@@ -950,7 +946,7 @@ int STORE_list_crl_endp(STORE *s, void *handle)
return 1;
}
-int store_number(STORE *s, BIGNUM *data, OPENSSL_ITEM attributes[],
+int STORE_store_number(STORE *s, BIGNUM *data, OPENSSL_ITEM attributes[],
OPENSSL_ITEM parameters[])
{
STORE_OBJECT *object = STORE_OBJECT_new();
@@ -1021,7 +1017,7 @@ int STORE_delete_number(STORE *s, OPENSSL_ITEM attributes[],
return 1;
}
-int store_arbitrary(STORE *s, BUF_MEM *data, OPENSSL_ITEM attributes[],
+int STORE_store_arbitrary(STORE *s, BUF_MEM *data, OPENSSL_ITEM attributes[],
OPENSSL_ITEM parameters[])
{
STORE_OBJECT *object = STORE_OBJECT_new();