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

feat(signer)!: add proxy keys #39

Merged
merged 17 commits into from
Aug 7, 2024
Merged

feat(signer)!: add proxy keys #39

merged 17 commits into from
Aug 7, 2024

Commits on Jul 26, 2024

  1. feat(signer)!: add proxy keys

    - add `generate_proxy_keys` endpoint to the Signer API. Modify the signer client accordingly.
    
    - add a `.dockerignore` file
    
    - remove the need for modules to provide their id in requests. A module's JWT is now solely sufficient to identify the module.
      * `SigningService` now contains jwt <-> module_id in a bidirectional hashmap
    
    - add authentication middleware to the signer service instead of manual auth in the handlers
    
    - introduce `ModuleId` and `Jwt` wrapper types around strings to improve semantics (useful after a couple of mishaps with key <-> value directions across the different maps)
      * see `common::types`
    
    - add example proxy key generation request in `da_commit` module
    
    - small misc changes
    
    - small reformatting
    David-Petrov committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    78d53ed View commit details
    Browse the repository at this point in the history

Commits on Aug 5, 2024

  1. Merge branch 'main' into feat/proxy-keys

    * make `crates::common::signature::random_secret()` infallible
    
    * fix flaky test
    David-Petrov committed Aug 5, 2024
    Configuration menu
    Copy the full SHA
    99c8d25 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    fa24af2 View commit details
    Browse the repository at this point in the history
  3. chore(signer): remove SignerModuleError::UnknownModuleId

    not needed anymore since JWTs now uniquely identify the module
    David-Petrov committed Aug 5, 2024
    Configuration menu
    Copy the full SHA
    6c53f23 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    0a54b47 View commit details
    Browse the repository at this point in the history

Commits on Aug 6, 2024

  1. Configuration menu
    Copy the full SHA
    de518d5 View commit details
    Browse the repository at this point in the history
  2. chore: resolve TODO

    * also, add `rust-toolchain.toml`
    David-Petrov committed Aug 6, 2024
    Configuration menu
    Copy the full SHA
    66aef60 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    8fe2619 View commit details
    Browse the repository at this point in the history
  4. chore: fix typo

    David-Petrov committed Aug 6, 2024
    Configuration menu
    Copy the full SHA
    047239b View commit details
    Browse the repository at this point in the history

Commits on Aug 7, 2024

  1. Configuration menu
    Copy the full SHA
    ab2377f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    45a0a59 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    35cd9a4 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    17a2c60 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    0797107 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    f0b9078 View commit details
    Browse the repository at this point in the history
  7. chore: remove TODO

    David-Petrov committed Aug 7, 2024
    Configuration menu
    Copy the full SHA
    db4308e View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    584d662 View commit details
    Browse the repository at this point in the history