I'm building an application and want it to securely transfer data to a server.
Loading
I'm building an application and want it to securely transfer data to a server.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Prasad RaveendranPosted Nov 1, 2023, 12:39 AM
Remember, security is a broad subject, and this is a basic example. It's crucial to understand the specific security requirements of your application, follow best practices, and possibly involve a security professional to assess the overall security of your application.
Prasad RaveendranPosted Nov 1, 2023, 12:37 AM
To securely transfer data from your .NET Core application to a server, you can use various methods and technologies. Here's an approach using HTTPS, which is a common and secure way to communicate between a client and a server.
Aymen AmriPosted Oct 31, 2023, 9:55 PM
It depends on the environment and the infrastructure that you will use. The best thing is to use a PKI with a certificate Authority, requests ... but it's generally costly.
There is another way that generates a key for every communication then encapsulate it in a cryptographic message that needs only one certificate (you can generate it using openssl). It's the Cryptographic Message Syntax pkcs7.
https://learn.microsoft.com/en-us/windows/win32/seccrypto/pkcs--7-concepts