-
Notifications
You must be signed in to change notification settings - Fork 14
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
#75 | Private and Public Keys Have Been Encrypted & Flows and Tests Have Been Refactored #104
Conversation
… & Keys Have Been Integrated to Flow
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks cool!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we define README.md
to understand the module easily if possible?
@Rapter1990 What kind of description did we need to make? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
Previously, the private and public keys used for token generation were openly stored in the database. Due to the potential security vulnerability, it was considered more appropriate to hash these keys and store them in the database. To address this issue, a private repository was created specifically for the purpose of hashing operations. Within this repository, hashing workflows were developed to ensure that the hashing process is not directly accessible from external sources. Subsequently, this library was integrated into the backend project. After the integration, the workflows were updated, and the keys are now stored in a hashed form, rather than being openly accessible. The database scripts were also updated accordingly.