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

Add crypto hmac sha 256 #685

Open
wants to merge 5 commits into
base: main
Choose a base branch
from

Commits on Jul 2, 2024

  1. Add crypto hmac-sha256

    ewalk153 committed Jul 2, 2024
    Configuration menu
    Copy the full SHA
    f4cdfc0 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    65fe672 View commit details
    Browse the repository at this point in the history
  3. Address linting feedback

    HmacSha256::new_from_slice(&js_string_secret.as_bytes()) =>
     HmacSha256::new_from_slice(js_string_secret.as_bytes())
    
     No need to pass in address here.
    
     Same for js_string_message.
    ewalk153 committed Jul 2, 2024
    Configuration menu
    Copy the full SHA
    f379f9a View commit details
    Browse the repository at this point in the history
  4. Switch from cryptox to crypto namespace

    Also drop javy_ prefix in anticipation of switching to winter cg.
    ewalk153 committed Jul 2, 2024
    Configuration menu
    Copy the full SHA
    4e6f967 View commit details
    Browse the repository at this point in the history
  5. Apply linting changes

    Ran `cargo fmt -- --check`, and applied suggestions, per ci feedback.
    ewalk153 committed Jul 2, 2024
    Configuration menu
    Copy the full SHA
    1d0bda1 View commit details
    Browse the repository at this point in the history