1. 18 10月, 2017 5 次提交
  2. 17 10月, 2017 6 次提交
  3. 16 10月, 2017 7 次提交
  4. 13 10月, 2017 3 次提交
  5. 12 10月, 2017 18 次提交
  6. 11 10月, 2017 1 次提交
    • M
      Ensure we test all parameters for BN_FLG_CONSTTIME · e913d11f
      Matt Caswell 提交于
      RSA_setup_blinding() calls BN_BLINDING_create_param() which later calls
      BN_mod_exp() as follows:
      
      BN_mod_exp(ret->A, ret->A, ret->e, ret->mod, ctx)
      
      ret->mod will have BN_FLG_CONSTTIME set, but ret->e does not. In
      BN_mod_exp() we only test the third param for the existence of this flag.
      We should test all the inputs.
      
      Thanks to Samuel Weiser (samuel.weiser@iaik.tugraz.at) for reporting this
      issue.
      
      This typically only happens once at key load, so this is unlikely to be
      exploitable in any real scenario.
      Reviewed-by: NRich Salz <rsalz@openssl.org>
      (Merged from https://github.com/openssl/openssl/pull/4477)
      e913d11f