91fc009f40
git-svn-id: https://svn.disconnected-by-peer.at/svn/linamh/trunk/vmware@2787 6952d904-891a-0410-993b-d76249ca496b
258 lines
8.5 KiB
Diff
258 lines
8.5 KiB
Diff
--- doc/crypto/ASN1_OBJECT_new.pod
|
|
+++ doc/crypto/ASN1_OBJECT_new.pod
|
|
@@ -6,6 +6,8 @@ ASN1_OBJECT_new, ASN1_OBJECT_free, - obj
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
+ #include <openssl/asn1.h>
|
|
+
|
|
ASN1_OBJECT *ASN1_OBJECT_new(void);
|
|
void ASN1_OBJECT_free(ASN1_OBJECT *a);
|
|
|
|
--- doc/crypto/ASN1_STRING_length.pod
|
|
+++ doc/crypto/ASN1_STRING_length.pod
|
|
@@ -8,6 +8,8 @@ ASN1_STRING utility functions
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
+ #include <openssl/asn1.h>
|
|
+
|
|
int ASN1_STRING_length(ASN1_STRING *x);
|
|
unsigned char * ASN1_STRING_data(ASN1_STRING *x);
|
|
|
|
--- doc/crypto/ASN1_STRING_new.pod
|
|
+++ doc/crypto/ASN1_STRING_new.pod
|
|
@@ -7,6 +7,8 @@ ASN1_STRING allocation functions
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
+ #include <openssl/asn1.h>
|
|
+
|
|
ASN1_STRING * ASN1_STRING_new(void);
|
|
ASN1_STRING * ASN1_STRING_type_new(int type);
|
|
void ASN1_STRING_free(ASN1_STRING *a);
|
|
--- doc/crypto/bn_internal.pod
|
|
+++ doc/crypto/bn_internal.pod
|
|
@@ -13,6 +13,8 @@ library internal functions
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
+ #include <openssl/bn.h>
|
|
+
|
|
BN_ULONG bn_mul_words(BN_ULONG *rp, BN_ULONG *ap, int num, BN_ULONG w);
|
|
BN_ULONG bn_mul_add_words(BN_ULONG *rp, BN_ULONG *ap, int num,
|
|
BN_ULONG w);
|
|
--- doc/crypto/CRYPTO_set_ex_data.pod
|
|
+++ doc/crypto/CRYPTO_set_ex_data.pod
|
|
@@ -6,6 +6,8 @@ CRYPTO_set_ex_data, CRYPTO_get_ex_data -
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
+ #include <openssl/crypto.h>
|
|
+
|
|
int CRYPTO_set_ex_data(CRYPTO_EX_DATA *r, int idx, void *arg);
|
|
|
|
void *CRYPTO_get_ex_data(CRYPTO_EX_DATA *r, int idx);
|
|
--- doc/crypto/OBJ_nid2obj.pod
|
|
+++ doc/crypto/OBJ_nid2obj.pod
|
|
@@ -8,6 +8,8 @@ functions
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
+ #include <openssl/objects.h>
|
|
+
|
|
ASN1_OBJECT * OBJ_nid2obj(int n);
|
|
const char * OBJ_nid2ln(int n);
|
|
const char * OBJ_nid2sn(int n);
|
|
--- doc/crypto/PKCS7_decrypt.pod
|
|
+++ doc/crypto/PKCS7_decrypt.pod
|
|
@@ -6,7 +6,9 @@ PKCS7_decrypt - decrypt content from a P
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
-int PKCS7_decrypt(PKCS7 *p7, EVP_PKEY *pkey, X509 *cert, BIO *data, int flags);
|
|
+ #include <openssl/pkcs7.h>
|
|
+
|
|
+ int PKCS7_decrypt(PKCS7 *p7, EVP_PKEY *pkey, X509 *cert, BIO *data, int flags);
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
--- doc/crypto/PKCS7_encrypt.pod
|
|
+++ doc/crypto/PKCS7_encrypt.pod
|
|
@@ -6,7 +6,9 @@ PKCS7_encrypt - create a PKCS#7 envelope
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
-PKCS7 *PKCS7_encrypt(STACK_OF(X509) *certs, BIO *in, const EVP_CIPHER *cipher, int flags);
|
|
+ #include <openssl/pkcs7.h>
|
|
+
|
|
+ PKCS7 *PKCS7_encrypt(STACK_OF(X509) *certs, BIO *in, const EVP_CIPHER *cipher, int flags);
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
--- doc/crypto/PKCS7_sign.pod
|
|
+++ doc/crypto/PKCS7_sign.pod
|
|
@@ -6,7 +6,9 @@ PKCS7_sign - create a PKCS#7 signedData
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
-PKCS7 *PKCS7_sign(X509 *signcert, EVP_PKEY *pkey, STACK_OF(X509) *certs, BIO *data, int flags);
|
|
+ #include <openssl/pkcs7.h>
|
|
+
|
|
+ PKCS7 *PKCS7_sign(X509 *signcert, EVP_PKEY *pkey, STACK_OF(X509) *certs, BIO *data, int flags);
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
--- doc/crypto/PKCS7_verify.pod
|
|
+++ doc/crypto/PKCS7_verify.pod
|
|
@@ -6,9 +6,11 @@ PKCS7_verify - verify a PKCS#7 signedDat
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
-int PKCS7_verify(PKCS7 *p7, STACK_OF(X509) *certs, X509_STORE *store, BIO *indata, BIO *out, int flags);
|
|
+ #include <openssl/pkcs7.h>
|
|
|
|
-STACK_OF(X509) *PKCS7_get0_signers(PKCS7 *p7, STACK_OF(X509) *certs, int flags);
|
|
+ int PKCS7_verify(PKCS7 *p7, STACK_OF(X509) *certs, X509_STORE *store, BIO *indata, BIO *out, int flags);
|
|
+
|
|
+ STACK_OF(X509) *PKCS7_get0_signers(PKCS7 *p7, STACK_OF(X509) *certs, int flags);
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
--- doc/crypto/SMIME_read_PKCS7.pod
|
|
+++ doc/crypto/SMIME_read_PKCS7.pod
|
|
@@ -6,7 +6,9 @@ SMIME_read_PKCS7 - parse S/MIME message.
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
-PKCS7 *SMIME_read_PKCS7(BIO *in, BIO **bcont);
|
|
+ #include <openssl/pkcs7.h>
|
|
+
|
|
+ PKCS7 *SMIME_read_PKCS7(BIO *in, BIO **bcont);
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
--- doc/crypto/SMIME_write_PKCS7.pod
|
|
+++ doc/crypto/SMIME_write_PKCS7.pod
|
|
@@ -6,7 +6,9 @@ SMIME_write_PKCS7 - convert PKCS#7 struc
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
-int SMIME_write_PKCS7(BIO *out, PKCS7 *p7, BIO *data, int flags);
|
|
+ #include <openssl/pkcs7.h>
|
|
+
|
|
+ int SMIME_write_PKCS7(BIO *out, PKCS7 *p7, BIO *data, int flags);
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
--- doc/crypto/ui_compat.pod
|
|
+++ doc/crypto/ui_compat.pod
|
|
@@ -7,6 +7,8 @@ Compatibility user interface functions
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
+ #include <openssl/des_old.h>
|
|
+
|
|
int des_read_password(DES_cblock *key,const char *prompt,int verify);
|
|
int des_read_2passwords(DES_cblock *key1,DES_cblock *key2,
|
|
const char *prompt,int verify);
|
|
--- doc/crypto/X509_NAME_add_entry_by_txt.pod
|
|
+++ doc/crypto/X509_NAME_add_entry_by_txt.pod
|
|
@@ -7,15 +7,17 @@ X509_NAME_add_entry, X509_NAME_delete_en
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
-int X509_NAME_add_entry_by_txt(X509_NAME *name, const char *field, int type, const unsigned char *bytes, int len, int loc, int set);
|
|
+ #include <openssl/x509.h>
|
|
|
|
-int X509_NAME_add_entry_by_OBJ(X509_NAME *name, ASN1_OBJECT *obj, int type, unsigned char *bytes, int len, int loc, int set);
|
|
+ int X509_NAME_add_entry_by_txt(X509_NAME *name, const char *field, int type, const unsigned char *bytes, int len, int loc, int set);
|
|
|
|
-int X509_NAME_add_entry_by_NID(X509_NAME *name, int nid, int type, unsigned char *bytes, int len, int loc, int set);
|
|
+ int X509_NAME_add_entry_by_OBJ(X509_NAME *name, ASN1_OBJECT *obj, int type, unsigned char *bytes, int len, int loc, int set);
|
|
|
|
-int X509_NAME_add_entry(X509_NAME *name,X509_NAME_ENTRY *ne, int loc, int set);
|
|
+ int X509_NAME_add_entry_by_NID(X509_NAME *name, int nid, int type, unsigned char *bytes, int len, int loc, int set);
|
|
|
|
-X509_NAME_ENTRY *X509_NAME_delete_entry(X509_NAME *name, int loc);
|
|
+ int X509_NAME_add_entry(X509_NAME *name,X509_NAME_ENTRY *ne, int loc, int set);
|
|
+
|
|
+ X509_NAME_ENTRY *X509_NAME_delete_entry(X509_NAME *name, int loc);
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
--- doc/crypto/X509_NAME_ENTRY_get_object.pod
|
|
+++ doc/crypto/X509_NAME_ENTRY_get_object.pod
|
|
@@ -9,15 +9,17 @@ X509_NAME_ENTRY_create_by_OBJ - X509_NAM
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
-ASN1_OBJECT * X509_NAME_ENTRY_get_object(X509_NAME_ENTRY *ne);
|
|
-ASN1_STRING * X509_NAME_ENTRY_get_data(X509_NAME_ENTRY *ne);
|
|
+ #include <openssl/x509.h>
|
|
|
|
-int X509_NAME_ENTRY_set_object(X509_NAME_ENTRY *ne, ASN1_OBJECT *obj);
|
|
-int X509_NAME_ENTRY_set_data(X509_NAME_ENTRY *ne, int type, const unsigned char *bytes, int len);
|
|
+ ASN1_OBJECT * X509_NAME_ENTRY_get_object(X509_NAME_ENTRY *ne);
|
|
+ ASN1_STRING * X509_NAME_ENTRY_get_data(X509_NAME_ENTRY *ne);
|
|
|
|
-X509_NAME_ENTRY *X509_NAME_ENTRY_create_by_txt(X509_NAME_ENTRY **ne, const char *field, int type, const unsigned char *bytes, int len);
|
|
-X509_NAME_ENTRY *X509_NAME_ENTRY_create_by_NID(X509_NAME_ENTRY **ne, int nid, int type,unsigned char *bytes, int len);
|
|
-X509_NAME_ENTRY *X509_NAME_ENTRY_create_by_OBJ(X509_NAME_ENTRY **ne, ASN1_OBJECT *obj, int type, const unsigned char *bytes, int len);
|
|
+ int X509_NAME_ENTRY_set_object(X509_NAME_ENTRY *ne, ASN1_OBJECT *obj);
|
|
+ int X509_NAME_ENTRY_set_data(X509_NAME_ENTRY *ne, int type, const unsigned char *bytes, int len);
|
|
+
|
|
+ X509_NAME_ENTRY *X509_NAME_ENTRY_create_by_txt(X509_NAME_ENTRY **ne, const char *field, int type, const unsigned char *bytes, int len);
|
|
+ X509_NAME_ENTRY *X509_NAME_ENTRY_create_by_NID(X509_NAME_ENTRY **ne, int nid, int type,unsigned char *bytes, int len);
|
|
+ X509_NAME_ENTRY *X509_NAME_ENTRY_create_by_OBJ(X509_NAME_ENTRY **ne, ASN1_OBJECT *obj, int type, const unsigned char *bytes, int len);
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
--- doc/crypto/X509_NAME_get_index_by_NID.pod
|
|
+++ doc/crypto/X509_NAME_get_index_by_NID.pod
|
|
@@ -8,14 +8,16 @@ X509_NAME lookup and enumeration functio
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
-int X509_NAME_get_index_by_NID(X509_NAME *name,int nid,int lastpos);
|
|
-int X509_NAME_get_index_by_OBJ(X509_NAME *name,ASN1_OBJECT *obj, int lastpos);
|
|
+ #include <openssl/x509.h>
|
|
|
|
-int X509_NAME_entry_count(X509_NAME *name);
|
|
-X509_NAME_ENTRY *X509_NAME_get_entry(X509_NAME *name, int loc);
|
|
+ int X509_NAME_get_index_by_NID(X509_NAME *name,int nid,int lastpos);
|
|
+ int X509_NAME_get_index_by_OBJ(X509_NAME *name,ASN1_OBJECT *obj, int lastpos);
|
|
|
|
-int X509_NAME_get_text_by_NID(X509_NAME *name, int nid, char *buf,int len);
|
|
-int X509_NAME_get_text_by_OBJ(X509_NAME *name, ASN1_OBJECT *obj, char *buf,int len);
|
|
+ int X509_NAME_entry_count(X509_NAME *name);
|
|
+ X509_NAME_ENTRY *X509_NAME_get_entry(X509_NAME *name, int loc);
|
|
+
|
|
+ int X509_NAME_get_text_by_NID(X509_NAME *name, int nid, char *buf,int len);
|
|
+ int X509_NAME_get_text_by_OBJ(X509_NAME *name, ASN1_OBJECT *obj, char *buf,int len);
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
--- doc/crypto/X509_new.pod
|
|
+++ doc/crypto/X509_new.pod
|
|
@@ -6,6 +6,8 @@ X509_new, X509_free - X509 certificate A
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
+ #include <openssl/x509.h>
|
|
+
|
|
X509 *X509_new(void);
|
|
void X509_free(X509 *a);
|
|
|
|
--- Makefile.org
|
|
+++ Makefile.org
|
|
@@ -218,7 +218,7 @@
|
|
MANDIR=$(OPENSSLDIR)/man
|
|
MAN1=1
|
|
MAN3=3
|
|
-MANSUFFIX=
|
|
+MANSUFFIX=ssl
|
|
SHELL=/bin/sh
|
|
|
|
TOP= .
|