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 communication of player accounts between frontend and backend #32

Draft
wants to merge 3 commits into
base: main
Choose a base branch
from

Commits on Sep 6, 2022

  1. Add communication of player accounts between frontend and backend

    This change adds OpenSSL as an explicit dependency to allow creation,
    verification, and management of private and public keys for player
    account verification. The same keys will be used to sign and verify
    client/server connection messages.
    fairlight1337 committed Sep 6, 2022
    Configuration menu
    Copy the full SHA
    9b0e786 View commit details
    Browse the repository at this point in the history
  2. Adding a crypto service stub class

    The crypto part of client/server communication and player account
    handling will require extensive use of crypto functions, which should be
    implemented in a central place.
    fairlight1337 committed Sep 6, 2022
    Configuration menu
    Copy the full SHA
    61fd64a View commit details
    Browse the repository at this point in the history

Commits on Sep 12, 2022

  1. Added database functions for storage and management of data

    The SOCI database backend as well as the general database interface got
    functions for storing and managing data. This includes creation of
    arbitrary entities, adding properties to them, and deleting either of
    them again. The only thing missing in this one is the retrieval part,
    which will be done next.
    fairlight1337 committed Sep 12, 2022
    Configuration menu
    Copy the full SHA
    1ee1aca View commit details
    Browse the repository at this point in the history