A downloadable library

Download NowName your own price

Authenticated encryption of Roblox networking with ECDH key exchanges and ChaCha20 ciphering.

This is designed to be used with RbxNet! A version that supports native RemoteFunction/Event instances will be coming later.

Usage

This library returns a function that wraps your remotes, like so.

-- Server
local AttemptLogin = EncryptedNet(Remotes.Server:Create("AttemptLogin"))
AttemptLogin:SetCallback(function(Player, password) -- Use normally
    -- ...
end)
--Client
local AttemptLogin = EncryptedNet(Remotes.Client:Get("AttemptLogin"))
AttemptLogin:CallServerAsync(password):andThen(function(response) -- Use normally
    -- ...
end)

While there's no difference to how you write your networking, this EncryptedNet(remote) wrapper is actually encrypting and signing all the traffic that flows through those remotes!

demo

How EncryptedNet works

When you require() EncryptedNet from the server, it sets up a RemoteFunction for a handshake. When you require() EncryptedNet from the client, it calls that handshake remote. The server and client each generate public & private keys, then send their public keys to each other. Using these keys, they perform an Elliptic-curve Diffie–Hellman key exchange to arrive at a shared secret that is later used to encrypt all traffic.

When the server calls :SetCallback() on a remote, the callback is actually set to a function that receives encrypted data and a signature. This function decrypts the data with the shared secret using the ChaCha20 cipher (since ChaCha20 is efficient for non-hardware applications like ours), then verifies the decrypted data using the elliptic curve signature. Once it has done that, it passes the decrypted data to your specified callback function and your code runs none the wiser.

When a client calls :CallServerAsync() on a remote, it first takes your arguments and encrypts them with ChaCha20 and the shared secret, then creates a signature using your private key, and then sends those along.

This process is similarly done around :Connect():SendToPlayer(), etc. All of the RbxNet API is wrapped to properly handle authenticated encryption on all of your traffic on that remote.

Credits

Absolutely massive shoutout to PG23186706924 and Anavrins for their pure Lua implementation of the elliptic curve cryptography tech that powers this library. I have ported it to Roblox and optimized it for Luau and it is wonderful.

StatusReleased
CategoryTool
Rating
Rated 5.0 out of 5 stars
(1 total ratings)
Authorboatbomber
Tagsauthentication, chacha20, cipher, cryptography, ecc, ecdh, network, rbxnet, roblox, security

Download

Download NowName your own price

Click download now to get access to the following files:

EncryptedNet.rbxm 22 kB