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 client_ed25519 authentication #1518

Merged
merged 5 commits into from
Dec 12, 2023
Merged

Add client_ed25519 authentication #1518

merged 5 commits into from
Dec 12, 2023

Commits on Dec 10, 2023

  1. Add client_ed25519 authentication

    - Implements the necessary client code for [ed25519 authentication](https://mariadb.com/kb/en/authentication-plugin-ed25519/).
    - Add a test directly from the reference implementation to verify it
    works.
    - A continuation of #1220,
    but doesn't use CGO.
    - This patch uses filippo.io/edwards25519 to implement the crypto bits.
    The standard library `crypto/ed25519` cannot be used as MariaDB chose
    a scheme that is simply not compatible with what the standard library
    provides.
    Gusted committed Dec 10, 2023
    Configuration menu
    Copy the full SHA
    68789d1 View commit details
    Browse the repository at this point in the history

Commits on Dec 11, 2023

  1. code style changes

    methane committed Dec 11, 2023
    Configuration menu
    Copy the full SHA
    ee271ad View commit details
    Browse the repository at this point in the history

Commits on Dec 12, 2023

  1. Configuration menu
    Copy the full SHA
    da50f26 View commit details
    Browse the repository at this point in the history
  2. fix fragile test

    methane committed Dec 12, 2023
    Configuration menu
    Copy the full SHA
    a560843 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    ae976ad View commit details
    Browse the repository at this point in the history