Skip to content

Commit

Permalink
Update from HEAD.
Browse files Browse the repository at this point in the history
  • Loading branch information
snhenson committed Jan 21, 2007
1 parent 9907d29 commit 4a0d353
Show file tree
Hide file tree
Showing 54 changed files with 67 additions and 67 deletions.
2 changes: 1 addition & 1 deletion crypto/aes/aes_misc.c
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
#include <openssl/aes.h>
#include "aes_locl.h"

const char *AES_version="AES" OPENSSL_VERSION_PTEXT;
const char AES_version[]="AES" OPENSSL_VERSION_PTEXT;

const char *AES_options(void) {
#ifdef FULL_UNROLL
Expand Down
2 changes: 1 addition & 1 deletion crypto/asn1/asn1_lib.c
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@

static int asn1_get_length(const unsigned char **pp,int *inf,long *rl,int max);
static void asn1_put_length(unsigned char **pp, int length);
const char *ASN1_version="ASN.1" OPENSSL_VERSION_PTEXT;
const char ASN1_version[]="ASN.1" OPENSSL_VERSION_PTEXT;

static int _asn1_check_infinite_end(const unsigned char **p, long len)
{
Expand Down
2 changes: 1 addition & 1 deletion crypto/bf/bf_ecb.c
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
* CAMBRIDGE SECURITY WORKSHOP, CAMBRIDGE, U.K., DECEMBER 9-11, 1993)
*/

const char *BF_version="Blowfish" OPENSSL_VERSION_PTEXT;
const char BF_version[]="Blowfish" OPENSSL_VERSION_PTEXT;

const char *BF_options(void)
{
Expand Down
2 changes: 1 addition & 1 deletion crypto/bn/bn_lib.c
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
#include "cryptlib.h"
#include "bn_lcl.h"

const char *BN_version="Big Number" OPENSSL_VERSION_PTEXT;
const char BN_version[]="Big Number" OPENSSL_VERSION_PTEXT;

/* This stuff appears to be completely unused, so is deprecated */
#ifndef OPENSSL_NO_DEPRECATED
Expand Down
2 changes: 1 addition & 1 deletion crypto/camellia/cmll_misc.c
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
#include <openssl/camellia.h>
#include "cmll_locl.h"

const char *CAMELLIA_version="CAMELLIA" OPENSSL_VERSION_PTEXT;
const char CAMELLIA_version[]="CAMELLIA" OPENSSL_VERSION_PTEXT;

int Camellia_set_key(const unsigned char *userKey, const int bits,
CAMELLIA_KEY *key)
Expand Down
2 changes: 1 addition & 1 deletion crypto/cast/c_ecb.c
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
#include "cast_lcl.h"
#include <openssl/opensslv.h>

const char *CAST_version="CAST" OPENSSL_VERSION_PTEXT;
const char CAST_version[]="CAST" OPENSSL_VERSION_PTEXT;

void CAST_ecb_encrypt(const unsigned char *in, unsigned char *out,
CAST_KEY *ks, int enc)
Expand Down
2 changes: 1 addition & 1 deletion crypto/conf/conf_def.c
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ static int def_dump(const CONF *conf, BIO *bp);
static int def_is_number(const CONF *conf, char c);
static int def_to_int(const CONF *conf, char c);

const char *CONF_def_version="CONF_def" OPENSSL_VERSION_PTEXT;
const char CONF_def_version[]="CONF_def" OPENSSL_VERSION_PTEXT;

static CONF_METHOD default_method = {
"OpenSSL default",
Expand Down
2 changes: 1 addition & 1 deletion crypto/conf/conf_lib.c
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
#include <openssl/conf_api.h>
#include <openssl/lhash.h>

const char *CONF_version="CONF" OPENSSL_VERSION_PTEXT;
const char CONF_version[]="CONF" OPENSSL_VERSION_PTEXT;

static CONF_METHOD *default_CONF_method=NULL;

Expand Down
4 changes: 2 additions & 2 deletions crypto/des/des_ver.h
Original file line number Diff line number Diff line change
Expand Up @@ -67,5 +67,5 @@
#define DES_version OSSL_DES_version
#define libdes_version OSSL_libdes_version

OPENSSL_EXTERN const char *OSSL_DES_version; /* SSLeay version string */
OPENSSL_EXTERN const char *OSSL_libdes_version; /* old libdes version string */
OPENSSL_EXTERN const char OSSL_DES_version[]; /* SSLeay version string */
OPENSSL_EXTERN const char OSSL_libdes_version[]; /* old libdes version string */
4 changes: 2 additions & 2 deletions crypto/des/ecb_enc.c
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@
#include <openssl/opensslv.h>
#include <openssl/bio.h>

OPENSSL_GLOBAL const char *libdes_version="libdes" OPENSSL_VERSION_PTEXT;
OPENSSL_GLOBAL const char *DES_version="DES" OPENSSL_VERSION_PTEXT;
OPENSSL_GLOBAL const char libdes_version[]="libdes" OPENSSL_VERSION_PTEXT;
OPENSSL_GLOBAL const char DES_version[]="DES" OPENSSL_VERSION_PTEXT;

const char *DES_options(void)
{
Expand Down
2 changes: 1 addition & 1 deletion crypto/dh/dh_lib.c
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
#include <openssl/engine.h>
#endif

const char *DH_version="Diffie-Hellman" OPENSSL_VERSION_PTEXT;
const char DH_version[]="Diffie-Hellman" OPENSSL_VERSION_PTEXT;

static const DH_METHOD *default_DH_method = NULL;

Expand Down
2 changes: 1 addition & 1 deletion crypto/dsa/dsa_lib.c
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
#include <openssl/dh.h>
#endif

const char *DSA_version="DSA" OPENSSL_VERSION_PTEXT;
const char DSA_version[]="DSA" OPENSSL_VERSION_PTEXT;

static const DSA_METHOD *default_DSA_method = NULL;

Expand Down
2 changes: 1 addition & 1 deletion crypto/ecdh/ech_lib.c
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
#endif
#include <openssl/err.h>

const char *ECDH_version="ECDH" OPENSSL_VERSION_PTEXT;
const char ECDH_version[]="ECDH" OPENSSL_VERSION_PTEXT;

static const ECDH_METHOD *default_ECDH_method = NULL;

Expand Down
2 changes: 1 addition & 1 deletion crypto/ecdsa/ecs_lib.c
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
#include <openssl/err.h>
#include <openssl/bn.h>

const char *ECDSA_version="ECDSA" OPENSSL_VERSION_PTEXT;
const char ECDSA_version[]="ECDSA" OPENSSL_VERSION_PTEXT;

static const ECDSA_METHOD *default_ECDSA_method = NULL;

Expand Down
2 changes: 1 addition & 1 deletion crypto/evp/evp_enc.c
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
#endif
#include "evp_locl.h"

const char *EVP_version="EVP" OPENSSL_VERSION_PTEXT;
const char EVP_version[]="EVP" OPENSSL_VERSION_PTEXT;

void EVP_CIPHER_CTX_init(EVP_CIPHER_CTX *ctx)
{
Expand Down
2 changes: 1 addition & 1 deletion crypto/idea/i_ecb.c
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
#include "idea_lcl.h"
#include <openssl/opensslv.h>

const char *IDEA_version="IDEA" OPENSSL_VERSION_PTEXT;
const char IDEA_version[]="IDEA" OPENSSL_VERSION_PTEXT;

const char *idea_options(void)
{
Expand Down
2 changes: 1 addition & 1 deletion crypto/lhash/lhash.c
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@
#include <openssl/crypto.h>
#include <openssl/lhash.h>

const char *lh_version="lhash" OPENSSL_VERSION_PTEXT;
const char lh_version[]="lhash" OPENSSL_VERSION_PTEXT;

#undef MIN_NODES
#define MIN_NODES 16
Expand Down
2 changes: 1 addition & 1 deletion crypto/md2/md2_dgst.c
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
#include <openssl/opensslv.h>
#include <openssl/crypto.h>

const char *MD2_version="MD2" OPENSSL_VERSION_PTEXT;
const char MD2_version[]="MD2" OPENSSL_VERSION_PTEXT;

/* Implemented from RFC1319 The MD2 Message-Digest Algorithm
*/
Expand Down
2 changes: 1 addition & 1 deletion crypto/md4/md4_dgst.c
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
#include "md4_locl.h"
#include <openssl/opensslv.h>

const char *MD4_version="MD4" OPENSSL_VERSION_PTEXT;
const char MD4_version[]="MD4" OPENSSL_VERSION_PTEXT;

/* Implemented from RFC1186 The MD4 Message-Digest Algorithm
*/
Expand Down
2 changes: 1 addition & 1 deletion crypto/md5/md5_dgst.c
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
#include "md5_locl.h"
#include <openssl/opensslv.h>

const char *MD5_version="MD5" OPENSSL_VERSION_PTEXT;
const char MD5_version[]="MD5" OPENSSL_VERSION_PTEXT;

/* Implemented from RFC1321 The MD5 Message-Digest Algorithm
*/
Expand Down
2 changes: 1 addition & 1 deletion crypto/pem/pem_lib.c
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
#include <openssl/des.h>
#endif

const char *PEM_version="PEM" OPENSSL_VERSION_PTEXT;
const char PEM_version[]="PEM" OPENSSL_VERSION_PTEXT;

#define MIN_LENGTH 4

Expand Down
2 changes: 1 addition & 1 deletion crypto/rand/md_rand.c
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ static unsigned long locking_thread = 0; /* valid iff crypto_lock_rand is set */
int rand_predictable=0;
#endif

const char *RAND_version="RAND" OPENSSL_VERSION_PTEXT;
const char RAND_version[]="RAND" OPENSSL_VERSION_PTEXT;

static void ssleay_rand_cleanup(void);
static void ssleay_rand_seed(const void *buf, int num);
Expand Down
2 changes: 1 addition & 1 deletion crypto/rc2/rc2_ecb.c
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
#include "rc2_locl.h"
#include <openssl/opensslv.h>

const char *RC2_version="RC2" OPENSSL_VERSION_PTEXT;
const char RC2_version[]="RC2" OPENSSL_VERSION_PTEXT;

/* RC2 as implemented frm a posting from
* Newsgroups: sci.crypt
Expand Down
2 changes: 1 addition & 1 deletion crypto/rc4/rc4_skey.c
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
#include "rc4_locl.h"
#include <openssl/opensslv.h>

const char *RC4_version="RC4" OPENSSL_VERSION_PTEXT;
const char RC4_version[]="RC4" OPENSSL_VERSION_PTEXT;

const char *RC4_options(void)
{
Expand Down
2 changes: 1 addition & 1 deletion crypto/ripemd/rmd_dgst.c
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
#include "rmd_locl.h"
#include <openssl/opensslv.h>

const char *RMD160_version="RIPE-MD160" OPENSSL_VERSION_PTEXT;
const char RMD160_version[]="RIPE-MD160" OPENSSL_VERSION_PTEXT;

# ifdef RMD160_ASM
void ripemd160_block_x86(RIPEMD160_CTX *c, unsigned long *p,size_t num);
Expand Down
2 changes: 1 addition & 1 deletion crypto/rsa/rsa_lib.c
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
#include <openssl/engine.h>
#endif

const char *RSA_version="RSA" OPENSSL_VERSION_PTEXT;
const char RSA_version[]="RSA" OPENSSL_VERSION_PTEXT;

static const RSA_METHOD *default_RSA_meth=NULL;

Expand Down
2 changes: 1 addition & 1 deletion crypto/sha/sha1dgst.c
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@

#include <openssl/opensslv.h>

const char *SHA1_version="SHA1" OPENSSL_VERSION_PTEXT;
const char SHA1_version[]="SHA1" OPENSSL_VERSION_PTEXT;

/* The implementation is in ../md32_common.h */

Expand Down
2 changes: 1 addition & 1 deletion crypto/sha/sha256.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
#include <openssl/sha.h>
#include <openssl/opensslv.h>

const char *SHA256_version="SHA-256" OPENSSL_VERSION_PTEXT;
const char SHA256_version[]="SHA-256" OPENSSL_VERSION_PTEXT;

int SHA224_Init (SHA256_CTX *c)
{
Expand Down
2 changes: 1 addition & 1 deletion crypto/sha/sha512.c
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@

#include "cryptlib.h"

const char *SHA512_version="SHA-512" OPENSSL_VERSION_PTEXT;
const char SHA512_version[]="SHA-512" OPENSSL_VERSION_PTEXT;

#if defined(_M_IX86) || defined(_M_AMD64) || defined(__i386) || defined(__x86_64)
#define SHA512_BLOCK_CAN_MANAGE_UNALIGNED_DATA
Expand Down
2 changes: 1 addition & 1 deletion crypto/sha/sha_dgst.c
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@

#include <openssl/opensslv.h>

const char *SHA_version="SHA" OPENSSL_VERSION_PTEXT;
const char SHA_version[]="SHA" OPENSSL_VERSION_PTEXT;

/* The implementation is in ../md32_common.h */

Expand Down
2 changes: 1 addition & 1 deletion crypto/stack/stack.c
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
#undef MIN_NODES
#define MIN_NODES 4

const char *STACK_version="Stack" OPENSSL_VERSION_PTEXT;
const char STACK_version[]="Stack" OPENSSL_VERSION_PTEXT;

#include <errno.h>

Expand Down
2 changes: 1 addition & 1 deletion crypto/txt_db/txt_db.c
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
#undef BUFSIZE
#define BUFSIZE 512

const char *TXT_DB_version="TXT_DB" OPENSSL_VERSION_PTEXT;
const char TXT_DB_version[]="TXT_DB" OPENSSL_VERSION_PTEXT;

TXT_DB *TXT_DB_read(BIO *in, int num)
{
Expand Down
2 changes: 1 addition & 1 deletion crypto/x509/x509_vfy.c
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ static int check_revocation(X509_STORE_CTX *ctx);
static int check_cert(X509_STORE_CTX *ctx);
static int check_policy(X509_STORE_CTX *ctx);
static int internal_verify(X509_STORE_CTX *ctx);
const char *X509_version="X.509" OPENSSL_VERSION_PTEXT;
const char X509_version[]="X.509" OPENSSL_VERSION_PTEXT;


static int null_callback(int ok, X509_STORE_CTX *e)
Expand Down
2 changes: 1 addition & 1 deletion crypto/x509v3/v3_addr.c
Original file line number Diff line number Diff line change
Expand Up @@ -1046,7 +1046,7 @@ static void *v2i_IPAddrBlocks(struct v3_ext_method *method,
/*
* OpenSSL dispatch
*/
X509V3_EXT_METHOD v3_addr = {
const X509V3_EXT_METHOD v3_addr = {
NID_sbgp_ipAddrBlock, /* nid */
0, /* flags */
ASN1_ITEM_ref(IPAddrBlocks), /* template */
Expand Down
2 changes: 1 addition & 1 deletion crypto/x509v3/v3_akey.c
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ static STACK_OF(CONF_VALUE) *i2v_AUTHORITY_KEYID(X509V3_EXT_METHOD *method,
static AUTHORITY_KEYID *v2i_AUTHORITY_KEYID(X509V3_EXT_METHOD *method,
X509V3_CTX *ctx, STACK_OF(CONF_VALUE) *values);

X509V3_EXT_METHOD v3_akey_id =
const X509V3_EXT_METHOD v3_akey_id =
{
NID_authority_key_identifier,
X509V3_EXT_MULTILINE, ASN1_ITEM_ref(AUTHORITY_KEYID),
Expand Down
2 changes: 1 addition & 1 deletion crypto/x509v3/v3_alt.c
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ static int copy_issuer(X509V3_CTX *ctx, GENERAL_NAMES *gens);
static int do_othername(GENERAL_NAME *gen, char *value, X509V3_CTX *ctx);
static int do_dirname(GENERAL_NAME *gen, char *value, X509V3_CTX *ctx);

X509V3_EXT_METHOD v3_alt[] = {
const X509V3_EXT_METHOD v3_alt[] = {
{ NID_subject_alt_name, 0, ASN1_ITEM_ref(GENERAL_NAMES),
0,0,0,0,
0,0,
Expand Down
2 changes: 1 addition & 1 deletion crypto/x509v3/v3_asid.c
Original file line number Diff line number Diff line change
Expand Up @@ -608,7 +608,7 @@ static void *v2i_ASIdentifiers(struct v3_ext_method *method,
/*
* OpenSSL dispatch.
*/
X509V3_EXT_METHOD v3_asid = {
const X509V3_EXT_METHOD v3_asid = {
NID_sbgp_autonomousSysNum, /* nid */
0, /* flags */
ASN1_ITEM_ref(ASIdentifiers), /* template */
Expand Down
2 changes: 1 addition & 1 deletion crypto/x509v3/v3_bcons.c
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
static STACK_OF(CONF_VALUE) *i2v_BASIC_CONSTRAINTS(X509V3_EXT_METHOD *method, BASIC_CONSTRAINTS *bcons, STACK_OF(CONF_VALUE) *extlist);
static BASIC_CONSTRAINTS *v2i_BASIC_CONSTRAINTS(X509V3_EXT_METHOD *method, X509V3_CTX *ctx, STACK_OF(CONF_VALUE) *values);

X509V3_EXT_METHOD v3_bcons = {
const X509V3_EXT_METHOD v3_bcons = {
NID_basic_constraints, 0,
ASN1_ITEM_ref(BASIC_CONSTRAINTS),
0,0,0,0,
Expand Down
4 changes: 2 additions & 2 deletions crypto/x509v3/v3_bitst.c
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ static BIT_STRING_BITNAME key_usage_type_table[] = {



X509V3_EXT_METHOD v3_nscert = EXT_BITSTRING(NID_netscape_cert_type, ns_cert_type_table);
X509V3_EXT_METHOD v3_key_usage = EXT_BITSTRING(NID_key_usage, key_usage_type_table);
const X509V3_EXT_METHOD v3_nscert = EXT_BITSTRING(NID_netscape_cert_type, ns_cert_type_table);
const X509V3_EXT_METHOD v3_key_usage = EXT_BITSTRING(NID_key_usage, key_usage_type_table);

STACK_OF(CONF_VALUE) *i2v_ASN1_BIT_STRING(X509V3_EXT_METHOD *method,
ASN1_BIT_STRING *bits, STACK_OF(CONF_VALUE) *ret)
Expand Down
2 changes: 1 addition & 1 deletion crypto/x509v3/v3_cpols.c
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ static POLICYQUALINFO *notice_section(X509V3_CTX *ctx,
STACK_OF(CONF_VALUE) *unot, int ia5org);
static int nref_nos(STACK_OF(ASN1_INTEGER) *nnums, STACK_OF(CONF_VALUE) *nos);

X509V3_EXT_METHOD v3_cpols = {
const X509V3_EXT_METHOD v3_cpols = {
NID_certificate_policies, 0,ASN1_ITEM_ref(CERTIFICATEPOLICIES),
0,0,0,0,
0,0,
Expand Down
2 changes: 1 addition & 1 deletion crypto/x509v3/v3_crld.c
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ static STACK_OF(CONF_VALUE) *i2v_crld(X509V3_EXT_METHOD *method,
static STACK_OF(DIST_POINT) *v2i_crld(X509V3_EXT_METHOD *method,
X509V3_CTX *ctx, STACK_OF(CONF_VALUE) *nval);

X509V3_EXT_METHOD v3_crld = {
const X509V3_EXT_METHOD v3_crld = {
NID_crl_distribution_points, X509V3_EXT_MULTILINE, ASN1_ITEM_ref(CRL_DIST_POINTS),
0,0,0,0,
0,0,
Expand Down
2 changes: 1 addition & 1 deletion crypto/x509v3/v3_enum.c
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ static ENUMERATED_NAMES crl_reasons[] = {
{-1, NULL, NULL}
};

X509V3_EXT_METHOD v3_crl_reason = {
const X509V3_EXT_METHOD v3_crl_reason = {
NID_crl_reason, 0, ASN1_ITEM_ref(ASN1_ENUMERATED),
0,0,0,0,
(X509V3_EXT_I2S)i2s_ASN1_ENUMERATED_TABLE,
Expand Down
4 changes: 2 additions & 2 deletions crypto/x509v3/v3_extku.c
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ static void *v2i_EXTENDED_KEY_USAGE(X509V3_EXT_METHOD *method,
static STACK_OF(CONF_VALUE) *i2v_EXTENDED_KEY_USAGE(X509V3_EXT_METHOD *method,
void *eku, STACK_OF(CONF_VALUE) *extlist);

X509V3_EXT_METHOD v3_ext_ku = {
const X509V3_EXT_METHOD v3_ext_ku = {
NID_ext_key_usage, 0,
ASN1_ITEM_ref(EXTENDED_KEY_USAGE),
0,0,0,0,
Expand All @@ -80,7 +80,7 @@ X509V3_EXT_METHOD v3_ext_ku = {
};

/* NB OCSP acceptable responses also is a SEQUENCE OF OBJECT */
X509V3_EXT_METHOD v3_ocsp_accresp = {
const X509V3_EXT_METHOD v3_ocsp_accresp = {
NID_id_pkix_OCSP_acceptableResponses, 0,
ASN1_ITEM_ref(EXTENDED_KEY_USAGE),
0,0,0,0,
Expand Down

0 comments on commit 4a0d353

Please sign in to comment.