1. 21 10月, 2001 1 次提交
    • D
      · f1558bb4
      Dr. Stephen Henson 提交于
      Reject certificates with unhandled critical extensions.
      f1558bb4
  2. 12 9月, 2001 1 次提交
  3. 28 6月, 2001 1 次提交
    • D
      · b7a26e6d
      Dr. Stephen Henson 提交于
      Modify apps to use NCONF code instead of old CONF code.
      
      Add new extension functions which work with NCONF.
      
      Tidy up extension config routines and remove redundant code.
      
      Fix NCONF_get_number().
      
      Todo: more testing of apps to see they still work...
      b7a26e6d
  4. 10 5月, 2001 1 次提交
    • D
      · 926a56bf
      Dr. Stephen Henson 提交于
      Purpose and trust setting functions for X509_STORE.
      
      Tidy existing code.
      926a56bf
  5. 16 3月, 2001 1 次提交
    • D
      · 535d79da
      Dr. Stephen Henson 提交于
      Overhaul the display of certificate details in
      the 'ca' utility. This can now be extensively
      customised in the configuration file and handles
      multibyte strings and extensions properly.
      
      This is required when extensions copying from
      certificate requests is supported: the user
      must be able to view the extensions before
      allowing a certificate to be issued.
      535d79da
  6. 23 2月, 2001 1 次提交
  7. 17 1月, 2001 1 次提交
    • D
      · 81f169e9
      Dr. Stephen Henson 提交于
      Initial OCSP certificate verify. Not complete,
      it just supports a "trusted OCSP global root CA".
      81f169e9
  8. 27 12月, 2000 1 次提交
  9. 25 12月, 2000 1 次提交
  10. 15 12月, 2000 1 次提交
  11. 13 12月, 2000 1 次提交
    • D
      · 2aff7727
      Dr. Stephen Henson 提交于
      Rewrite the extension code to use an ASN1_ITEM structure
      for its ASN1 operations as well as the old style function
      pointers (i2d, d2i, new, free). Change standard extensions
      to support this.
      
      Fix a warning in BN_mul(), bn_mul.c about uninitialised 'j'.
      2aff7727
  12. 09 12月, 2000 1 次提交
    • D
      · 9d6b1ce6
      Dr. Stephen Henson 提交于
      Merge from the ASN1 branch of new ASN1 code
      to main trunk.
      
      Lets see if the makes it to openssl-cvs :-)
      9d6b1ce6
  13. 27 10月, 2000 1 次提交
  14. 06 10月, 2000 1 次提交
  15. 06 9月, 2000 1 次提交
    • D
      *BIG* verify code reorganisation. · 2f043896
      Dr. Stephen Henson 提交于
      The old code was painfully primitive and couldn't handle
      distinct certificates using the same subject name.
      
      The new code performs several tests on a candidate issuer
      certificate based on certificate extensions.
      
      It also adds several callbacks to X509_VERIFY_CTX so its
      behaviour can be customised.
      
      Unfortunately some hackery was needed to persuade X509_STORE
      to tolerate this. This should go away when X509_STORE is
      replaced, sometime...
      
      This must have broken something though :-(
      2f043896
  16. 17 6月, 2000 1 次提交
    • D
      Safe stack reorganisation in terms of function casts. · 3aceb94b
      Dr. Stephen Henson 提交于
      After some messing around this seems to work but needs
      a few more tests. Working out the syntax for sk_set_cmp_func()
      (cast it to a function that itself returns a function pointer)
      was painful :-(
      
      Needs some testing to see what other compilers think of this
      syntax.
      
      Also needs similar stuff for ASN1_SET_OF etc etc.
      3aceb94b
  17. 11 6月, 2000 1 次提交
  18. 01 6月, 2000 2 次提交
    • G
      "make update" + stripping the type-specific stack functions out of · 7edd2091
      Geoff Thorpe 提交于
      libeay.num and ssleay.num.
      7edd2091
    • G
      The previous commit to crypto/stack/*.[ch] pulled the type-safety strings · ccd86b68
      Geoff Thorpe 提交于
      yet tighter, and also put some heat on the rest of the library by
      insisting (correctly) that compare callbacks used in stacks are prototyped
      with "const" parameters. This has led to a depth-first explosion of
      compiler warnings in the code where 1 constification has led to 3 or 4
      more. Fortunately these have all been resolved to completion and the code
      seems cleaner as a result - in particular many of the _cmp() functions
      should have been prototyped with "const"s, and now are. There was one
      little problem however;
      
      X509_cmp() should by rights compare "const X509 *" pointers, and it is now
      declared as such. However, it's internal workings can involve
      recalculating hash values and extensions if they have not already been
      setup. Someone with a more intricate understanding of the flow control of
      X509 might be able to tighten this up, but for now - this seemed the
      obvious place to stop the "depth-first" constification of the code by
      using an evil cast (they have migrated all the way here from safestack.h).
      
      Fortunately, this is the only place in the code where this was required
      to complete these type-safety changes, and it's reasonably clear and
      commented, and seemed the least unacceptable of the options. Trying to
      take the constification further ends up exploding out considerably, and
      indeed leads directly into generalised ASN functions which are not likely
      to cooperate well with this.
      ccd86b68
  19. 17 5月, 2000 2 次提交
  20. 02 5月, 2000 1 次提交
  21. 26 3月, 2000 1 次提交
  22. 07 3月, 2000 1 次提交
  23. 26 2月, 2000 2 次提交
  24. 11 2月, 2000 1 次提交
  25. 07 2月, 2000 1 次提交
  26. 07 1月, 2000 1 次提交
  27. 29 12月, 1999 1 次提交
  28. 02 12月, 1999 1 次提交
  29. 29 11月, 1999 1 次提交
    • D
      Add part of chain verify SSL support code: not complete or doing anything · 13938ace
      Dr. Stephen Henson 提交于
      yet.
      
      Add a function X509_STORE_CTX_purpose_inherit() which implements the logic
      of "inheriting" purpose and trust from a parent structure and using a default:
      this will be used in the SSL code and possibly future S/MIME.
      
      Partial documentation of the 'verify' utility. Still need to document how all
      the extension checking works and the various error messages.
      13938ace
  30. 26 11月, 1999 1 次提交
  31. 24 11月, 1999 1 次提交
  32. 19 11月, 1999 1 次提交
  33. 04 11月, 1999 1 次提交
  34. 26 10月, 1999 1 次提交
  35. 20 10月, 1999 1 次提交
  36. 13 10月, 1999 1 次提交
  37. 09 10月, 1999 1 次提交