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: reduce memory usage of SignFinal #23427

Closed
wants to merge 4 commits into from

Commits on Oct 12, 2018

  1. crypto: reduce memory usage of SignFinal

    The fixed-size buffer on the stack is unnecessary and way too large
    for most applications. This change removes it and allocates the
    required memory directly instead of copying into heap later.
    tniessen committed Oct 12, 2018
    Configuration menu
    Copy the full SHA
    4b4b71b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e5bd9d0 View commit details
    Browse the repository at this point in the history

Commits on Oct 15, 2018

  1. Configuration menu
    Copy the full SHA
    202d506 View commit details
    Browse the repository at this point in the history

Commits on Oct 17, 2018

  1. Configuration menu
    Copy the full SHA
    27f5947 View commit details
    Browse the repository at this point in the history