C
C#17mo ago
Boggo

❔ Client-Server Encryption

Whats the best way to encrypt data sent from a client to server --> server to client?
15 Replies
Buddy
Buddy17mo ago
SSL traffic Ok
Boggo
Boggo17mo ago
$ssl $channels
MODiX
MODiX17mo ago
see $channel
Boggo
Boggo17mo ago
$channel
MODiX
MODiX17mo ago
Exploring System.Threading.Channels
A blog about software engineering and applied cryptography.
.NET Blog
An Introduction to System.Threading.Channels - .NET Blog
“Producer/consumer” problems are everywhere, in all facets of our lives. A line cook at a fast food restaurant, slicing tomatoes that are handed off to another cook to assemble a burger, which is handed off to a register worker to fulfill your order,
Boggo
Boggo17mo ago
$ssltraffic
Angius
Angius17mo ago
What are you trying to do right now? Using the tag system as Google?
Boggo
Boggo17mo ago
i cant find a decent article, trying to see if bot had one
Angius
Angius17mo ago
Cloudflare
What is SSL (Secure Sockets Layer)? | Cloudflare
Secure Sockets Layer (SSL) is an encryption security protocol. Transport Layer Security, or TLS, has replaced SSL. Learn the definition of SSL and how it works.
Angius
Angius17mo ago
SSL is otherwise known as HTTPS
Boggo
Boggo17mo ago
yes ive read up on SSL itself, but implenting things ive learnt in c# doesnt come naturally for example, i have now a networkStream, from which i create a SSL stream. Cool, but then i need certificates etc
Angius
Angius17mo ago
You don't implement SSL in your project You get a cert and bind it to the domain, so to speak Something like Certbot would make it automatic But other than that, you can get free certs from LetsEncrypt
Boggo
Boggo17mo ago
do they work locally? im not actually accessing the internet as such the clients and server are all being run on my local network
Angius
Angius17mo ago
Ah, well, locally, you should have a development cert installed You should be able to access your app via HTTPS That said... what's the point of encryption if everything is local...?
Accord
Accord17mo ago
Was this issue resolved? If so, run /close - otherwise I will mark this as stale and this post will be archived until there is new activity.