1. 13 4月, 2017 1 次提交
  2. 10 4月, 2017 1 次提交
  3. 18 5月, 2016 1 次提交
  4. 09 4月, 2016 1 次提交
  5. 10 3月, 2016 1 次提交
  6. 06 2月, 2016 1 次提交
  7. 27 1月, 2016 1 次提交
    • R
      Remove /* foo.c */ comments · 34980760
      Rich Salz 提交于
      This was done by the following
              find . -name '*.[ch]' | /tmp/pl
      where /tmp/pl is the following three-line script:
              print unless $. == 1 && m@/\* .*\.[ch] \*/@;
              close ARGV if eof; # Close file to reset $.
      
      And then some hand-editing of other files.
      Reviewed-by: NViktor Dukhovni <viktor@openssl.org>
      34980760
  8. 10 11月, 2015 1 次提交
  9. 11 9月, 2015 1 次提交
  10. 14 5月, 2015 1 次提交
  11. 25 3月, 2015 1 次提交
  12. 22 1月, 2015 1 次提交
  13. 05 8月, 2013 1 次提交
  14. 07 12月, 2011 1 次提交
  15. 06 9月, 2009 1 次提交
    • D
      PR: 1644 · f4274da1
      Dr. Stephen Henson 提交于
      Submitted by: steve@openssl.org
      
      Fix to make DHparams_dup() et al work in C++.
      
      For 1.0 fix the final argument to ASN1_dup() so it is void *. Replace some
      *_dup macros with functions.
      f4274da1
  16. 06 11月, 2008 1 次提交
  17. 02 9月, 2005 1 次提交
  18. 23 2月, 2001 1 次提交
  19. 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
  20. 16 9月, 2000 1 次提交
  21. 05 4月, 2000 1 次提交
    • G
      This is a set of startup code for the DSO support, it's not yet linked into · 8f4fac7f
      Geoff Thorpe 提交于
      the build process (an upcoming commit no doubt), and is very much *new*
      code - what that means is that it compiles ok - usually. It certainly
      doesn't mean it runs well or even properly yet. Please don't muck round
      with this unless you're looking to help out and hunt bugs. :-)
      
      Currently this code doesn't have any support for controlling the "load"
      behaviour (eg. paths, filename translations, etc). That'll be handled
      using DSO_ctrl() and various flags, once we work out a sensible set of
      flags.
      8f4fac7f
  22. 18 1月, 2000 1 次提交
  23. 20 10月, 1999 1 次提交
  24. 22 6月, 1999 1 次提交
  25. 10 5月, 1999 1 次提交
  26. 24 4月, 1999 1 次提交
  27. 20 4月, 1999 1 次提交
  28. 06 3月, 1999 1 次提交
  29. 22 2月, 1999 1 次提交
  30. 19 2月, 1999 1 次提交
  31. 30 1月, 1999 1 次提交
  32. 24 1月, 1999 1 次提交
  33. 17 1月, 1999 1 次提交
    • D
      Time to blow up the source tree :-) This is the beginning of support for · f6aed2cd
      Dr. Stephen Henson 提交于
      GeneralizedTime. At several points PKIX specifies that GeneralizedTime can be
      used but OpenSSL doesn't currently support it. This patch adds several files
      and a bunch of functions.
      
      Of interest is the ASN1_TIME structure and its related functions. At several
      points certificates, CRLs et al specify that a time can be expressed as a
      choice of UTCTime and GeneralizedTime. Currently OpenSSL interprets this
      (wrongly) as UTCTime because GeneralizedTime isn't supported. The ASN1_TIME
      stuff provides this functionality.
      
      Still todo is to trace which cert and CRL points need an ASN1_TIME and modify
      the utilities appropriately and of course fix all the bugs.
      
      Note new OpenSSL copyright in the new file a_time.c. I didn't put it in
      a_gentm.c because it is a minimally modified form a_utctm.c .
      
      Since this adds new files and error codes you will need to do a 'make errors'
      at the top level to add the new codes.
      f6aed2cd