1. 26 5月, 2023 1 次提交
  2. 12 4月, 2023 2 次提交
  3. 10 8月, 2021 1 次提交
  4. 27 2月, 2020 1 次提交
  5. 28 9月, 2019 1 次提交
  6. 11 9月, 2018 1 次提交
  7. 31 7月, 2018 1 次提交
  8. 20 6月, 2017 1 次提交
  9. 18 5月, 2016 1 次提交
  10. 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
  11. 22 1月, 2015 1 次提交
  12. 08 12月, 2014 1 次提交
  13. 23 5月, 2011 1 次提交
  14. 21 5月, 2011 2 次提交
  15. 15 2月, 2011 1 次提交
  16. 13 2月, 2011 1 次提交
  17. 29 10月, 2002 1 次提交
  18. 28 10月, 2002 2 次提交
  19. 02 8月, 2002 2 次提交
    • B
      Rename implementations of method functions so that they match · 35b73a1f
      Bodo Möller 提交于
      the new method names where _GF... suffixes have been removed.
      
      Revert changes to ..._{get/set}_Jprojective_coordinates_...:
      The current implementation for ECC over binary fields does not use
      projective coordinates, and if it did, it would not use Jacobian
      projective coordinates; so it's OK to use the ..._GFp prefix for all
      this.
      
      Add author attributions to some files so that it doesn't look
      as if Sun wrote all of this :-)
      35b73a1f
    • B
      add support for elliptic curves over binary fields · 7793f30e
      Bodo Möller 提交于
      Submitted by: Duglas Stebila <douglas.stebila@sun.com>,
                    Sheueling Chang <sheueling.chang@sun.com>
      
      (CHANGES entries by Bodo Moeller)
      7793f30e
  20. 14 2月, 2002 1 次提交
  21. 09 3月, 2001 1 次提交
  22. 07 3月, 2001 1 次提交
  23. 06 3月, 2001 2 次提交
  24. 04 6月, 1999 1 次提交
  25. 30 1月, 1999 1 次提交
  26. 24 1月, 1999 1 次提交
  27. 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