1. 22 6月, 2013 1 次提交
  2. 14 5月, 2013 1 次提交
  3. 14 1月, 2013 1 次提交
  4. 23 4月, 2012 1 次提交
  5. 22 4月, 2012 1 次提交
    • D
      PR: 2239 · b36bab78
      Dr. Stephen Henson 提交于
      Submitted by: Dominik Oepen <oepen@informatik.hu-berlin.de>
      
      Add Brainpool curves from RFC5639.
      
      Original patch by Annie Yousar <a.yousar@informatik.hu-berlin.de>
      b36bab78
  6. 03 1月, 2012 1 次提交
  7. 07 12月, 2011 1 次提交
  8. 07 10月, 2011 1 次提交
    • D
      ? crypto/aes/aes-armv4.S · 66bb328e
      Dr. Stephen Henson 提交于
      ? crypto/aes/aesni-sha1-x86_64.s
      ? crypto/aes/aesni-x86_64.s
      ? crypto/aes/foo.pl
      ? crypto/aes/vpaes-x86_64.s
      ? crypto/bn/.bn_lib.c.swp
      ? crypto/bn/armv4-gf2m.S
      ? crypto/bn/diffs
      ? crypto/bn/modexp512-x86_64.s
      ? crypto/bn/x86_64-gf2m.s
      ? crypto/bn/x86_64-mont5.s
      ? crypto/ec/bc.txt
      ? crypto/ec/diffs
      ? crypto/modes/a.out
      ? crypto/modes/diffs
      ? crypto/modes/ghash-armv4.S
      ? crypto/modes/ghash-x86_64.s
      ? crypto/modes/op.h
      ? crypto/modes/tst.c
      ? crypto/modes/x.h
      ? crypto/objects/.obj_xref.txt.swp
      ? crypto/rand/diffs
      ? crypto/sha/sha-512
      ? crypto/sha/sha1-armv4-large.S
      ? crypto/sha/sha256-armv4.S
      ? crypto/sha/sha512-armv4.S
      Index: crypto/objects/obj_xref.c
      ===================================================================
      RCS file: /v/openssl/cvs/openssl/crypto/objects/obj_xref.c,v
      retrieving revision 1.9
      diff -u -r1.9 obj_xref.c
      --- crypto/objects/obj_xref.c	5 Nov 2008 18:38:58 -0000	1.9
      +++ crypto/objects/obj_xref.c	6 Oct 2011 20:30:21 -0000
      @@ -110,8 +110,10 @@
       #endif
       	if (rv == NULL)
       		return 0;
      -	*pdig_nid = rv->hash_id;
      -	*ppkey_nid = rv->pkey_id;
      +	if (pdig_nid)
      +		*pdig_nid = rv->hash_id;
      +	if (ppkey_nid)
      +		*ppkey_nid = rv->pkey_id;
       	return 1;
       	}
      
      @@ -144,7 +146,8 @@
       #endif
       	if (rv == NULL)
       		return 0;
      -	*psignid = (*rv)->sign_id;
      +	if (psignid)
      +		*psignid = (*rv)->sign_id;
       	return 1;
       	}
      
      Index: crypto/x509/x509type.c
      ===================================================================
      RCS file: /v/openssl/cvs/openssl/crypto/x509/x509type.c,v
      retrieving revision 1.10
      diff -u -r1.10 x509type.c
      --- crypto/x509/x509type.c	26 Oct 2007 12:06:33 -0000	1.10
      +++ crypto/x509/x509type.c	6 Oct 2011 20:36:04 -0000
      @@ -100,20 +100,26 @@
       		break;
       		}
      
      -	i=X509_get_signature_type(x);
      -	switch (i)
      +	i=OBJ_obj2nid(x->sig_alg->algorithm);
      +	if (i && OBJ_find_sigid_algs(i, NULL, &i))
       		{
      -	case EVP_PKEY_RSA:
      -		ret|=EVP_PKS_RSA;
      -		break;
      -	case EVP_PKEY_DSA:
      -		ret|=EVP_PKS_DSA;
      -		break;
      -	case EVP_PKEY_EC:
      -		ret|=EVP_PKS_EC;
      -		break;
      -	default:
      -		break;
      +
      +		switch (i)
      +			{
      +		case NID_rsaEncryption:
      +		case NID_rsa:
      +			ret|=EVP_PKS_RSA;
      +			break;
      +		case NID_dsa:
      +		case NID_dsa_2:
      +			ret|=EVP_PKS_DSA;
      +			break;
      +		case NID_X9_62_id_ecPublicKey:
      +			ret|=EVP_PKS_EC;
      +			break;
      +		default:
      +			break;
      +			}
       		}
      
       	if (EVP_PKEY_size(pk) <= 1024/8)/* /8 because it's 1024 bits we look
      66bb328e
  9. 24 8月, 2011 1 次提交
  10. 13 4月, 2011 1 次提交
  11. 27 1月, 2011 1 次提交
  12. 07 3月, 2010 1 次提交
  13. 24 2月, 2010 2 次提交
  14. 08 2月, 2010 1 次提交
  15. 26 1月, 2010 1 次提交
    • D
      PR: 2149 · cab6de03
      Dr. Stephen Henson 提交于
      Submitted by: Douglas Stebila <douglas@stebila.ca>
      
      Fix wap OIDs.
      cab6de03
  16. 26 11月, 2009 1 次提交
  17. 10 11月, 2009 1 次提交
    • D
      PR: 2091 · 709a395d
      Dr. Stephen Henson 提交于
      Submitted by: Martin Kaiser <lists@kaiser.cx>, Stephen Henson
      Approved by: steve@openssl.org
      
      If an OID has no short name or long name return the numerical representation.
      709a395d
  18. 08 4月, 2009 1 次提交
  19. 05 4月, 2009 2 次提交
  20. 03 4月, 2009 1 次提交
  21. 26 3月, 2009 1 次提交
  22. 10 2月, 2009 1 次提交
  23. 12 11月, 2008 1 次提交
  24. 06 11月, 2008 1 次提交
  25. 02 11月, 2008 1 次提交
  26. 01 11月, 2008 1 次提交
  27. 23 10月, 2008 1 次提交
  28. 22 10月, 2008 1 次提交
  29. 20 10月, 2008 2 次提交
  30. 18 10月, 2008 2 次提交
  31. 14 10月, 2008 1 次提交
  32. 12 10月, 2008 1 次提交
  33. 27 8月, 2008 1 次提交
  34. 05 7月, 2008 1 次提交
  35. 27 6月, 2008 1 次提交
  36. 04 6月, 2008 1 次提交