You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We need a way of encrypting the text data stored in Firebase. It would be ideal to have a centralized way of doing this across all the platforms (at this time JawWeb and JawAndroid).
AES-256 algorithms seem to be the most popular these days so that may be a good algorithm to use.
Tasks:
Research specific algorithm to implement
Determine method of generating keys / initial vectors in a common method across platforms
Implement encryption method on JawAndroid
Implement encryption method on JawWeb
The text was updated successfully, but these errors were encountered:
I implemented an AES-256 encryption algorithm into the JawWeb project. Currently, the project is using this aesjs implementation with the CTR mode.
We still need to figure out a way of generating and sharing the encryption keys between JawWeb and JawAndroid. There does not seem to be a common way to share the encryption between the Javascript for the web project and the Java of the android project.
We need a way of encrypting the text data stored in Firebase. It would be ideal to have a centralized way of doing this across all the platforms (at this time JawWeb and JawAndroid).
AES-256 algorithms seem to be the most popular these days so that may be a good algorithm to use.
Tasks:
Research specific algorithm to implement
Determine method of generating keys / initial vectors in a common method across platforms
Implement encryption method on JawAndroid
Implement encryption method on JawWeb
The text was updated successfully, but these errors were encountered: