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

Encryption #8

Merged
merged 4 commits into from
Oct 2, 2023
Merged

Encryption #8

merged 4 commits into from
Oct 2, 2023

Conversation

rombethor
Copy link
Owner

Data transferred in optionally encrypted using a preshared key, providing a layer of security to what is otherwise plain text.

Encryption is enabled on either the client or server by calling SetEncryptionKey(string key).

The encryption is AES and the data sent is preceeded by a randomised Initialisation Vector (IV).

Admittedly, this kind of encryption is only safe in limited scenarios (server-to-server) because a preshared key could not be provided to a public client. This project has always been geared towards RPC within closed environments, such as kubernetes clusters. A more public-friendly solution may be added in a later version.

@rombethor rombethor merged commit e23d22c into master Oct 2, 2023
@rombethor rombethor deleted the encryption branch October 2, 2023 12:39
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant