Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

crypto: DSA parameter validation in FIPS mode #3756

Closed
wants to merge 3 commits into from

Commits on Nov 13, 2015

  1. crypto: DSA parameter validation in FIPS mode

    FIPS 180-4 requires specific (L,N) values. OpenSSL will crash if an
    invalid combination is used, so we must check the input sanity first.
    stefanmb committed Nov 13, 2015
    Configuration menu
    Copy the full SHA
    c308612 View commit details
    Browse the repository at this point in the history
  2. test: add test for invalid DSA key size

    Check that invalid DSA key sizes are rejected in FIPS mode.
    stefanmb committed Nov 13, 2015
    Configuration menu
    Copy the full SHA
    27712a2 View commit details
    Browse the repository at this point in the history
  3. test: add hasFipsCrypto to test/common.js

    Utility function for tests to check if OpenSSL is using
    a FIPS verified cryptographic provider.
    stefanmb committed Nov 13, 2015
    Configuration menu
    Copy the full SHA
    76f50a9 View commit details
    Browse the repository at this point in the history