summaryrefslogtreecommitdiffstats
path: root/crypto/crypto-lib.com
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2003-11-29 09:19:12 +0000
committerRichard Levitte <levitte@openssl.org>2003-11-29 09:19:12 +0000
commitd87b79bf31ccbc2da5e80e9e43f6558d3803b65e (patch)
tree1102ea07a7f20545edfd9d27586abc78ded0e234 /crypto/crypto-lib.com
parent70ef9c5a3ddf317b204c7f77aa3fc01b5ebeb0fb (diff)
Damnit, I'm sick of having to do something special every time a module
that gets built before objects barfs all over the place because it uses a new NID that hasn't had a chance of getting defined yet (in this case, it was about a couple of new EC curves, and therefore a couple of new corresponding NIDs). I'm placing objects first in SDIRS! There.
Diffstat (limited to 'crypto/crypto-lib.com')
-rw-r--r--crypto/crypto-lib.com6
1 files changed, 4 insertions, 2 deletions
diff --git a/crypto/crypto-lib.com b/crypto/crypto-lib.com
index 410e449046..5f7c83fe54 100644
--- a/crypto/crypto-lib.com
+++ b/crypto/crypto-lib.com
@@ -75,10 +75,12 @@ $ ENDIF
$!
$! Define The Different Encryption Types.
$!
-$ ENCRYPT_TYPES = "Basic,MD2,MD4,MD5,SHA,MDC2,HMAC,RIPEMD,"+ -
+$ ENCRYPT_TYPES = "Basic,"+ -
+ "OBJECTS,"+ -
+ "MD2,MD4,MD5,SHA,MDC2,HMAC,RIPEMD,"+ -
"DES,RC2,RC4,RC5,IDEA,BF,CAST,"+ -
"BN,EC,RSA,DSA,ECDSA,DH,ECDH,DSO,ENGINE,AES,"+ -
- "BUFFER,BIO,STACK,LHASH,RAND,ERR,OBJECTS,"+ -
+ "BUFFER,BIO,STACK,LHASH,RAND,ERR,"+ -
"EVP,EVP_2,ASN1,ASN1_2,PEM,X509,X509V3,"+ -
"CONF,TXT_DB,PKCS7,PKCS12,COMP,OCSP,UI,KRB5,"+ -
"STORE"