1. 14 9月, 2017 1 次提交
  2. 09 9月, 2017 3 次提交
  3. 08 9月, 2017 1 次提交
  4. 06 9月, 2017 1 次提交
  5. 04 9月, 2017 3 次提交
  6. 03 9月, 2017 2 次提交
  7. 02 9月, 2017 2 次提交
  8. 01 9月, 2017 1 次提交
  9. 31 8月, 2017 5 次提交
  10. 30 8月, 2017 4 次提交
  11. 28 8月, 2017 1 次提交
    • D
      DRBG: clarify difference between entropy counts and buffer lengths · aa048aef
      Dr. Matthias St. Pierre 提交于
      Unlike the NIST DRBG standard, entropy counts are in bits and
      buffer lengths are in bytes. This has lead to some confusion and
      errors in the past, see my comment on PR 3789.
      
      To clarify the destinction between entropy counts and buffer lengths,
      a 'len' suffix has been added to all member names of RAND_DRBG which
      represent buffer lengths:
      
      -   {min,max}_{entropy,adin,nonce,pers}
      +   {min,max}_{entropy,adin,nonce,pers}len
      
      This change makes naming also more consistent, as can be seen in the
      diffs, for example:
      
      -    else if (adinlen > drbg->max_adin) {
      +    else if (adinlen > drbg->max_adinlen) {
      
      Also replaced all 'ent's by 'entropy's, following a suggestion of Paul Dale.
      Reviewed-by: NPaul Dale <paul.dale@oracle.com>
      Reviewed-by: NRich Salz <rsalz@openssl.org>
      (Merged from https://github.com/openssl/openssl/pull/4266)
      aa048aef
  12. 27 8月, 2017 1 次提交
  13. 25 8月, 2017 7 次提交
  14. 24 8月, 2017 1 次提交
  15. 23 8月, 2017 1 次提交
  16. 22 8月, 2017 6 次提交