encryption

  1. K

    Encrypt text which comes to StreamWriter from Console.SetOut

    Hi, I run the other assembly from my program and I've redirected the output to the file. I would like to encrypt (at least the simple XOR) output from the other assembly in "real time". I will show this on snippet: FileStream streamer; StreamWriter writer; TextWriter oldOut =...
  2. hamstergeek

    Custom result chipertext, Encryption using AES algorithm

    Hi folks, is it possible to customize the results of the encryption text using this aes algorithm. I have an encryption case how to do a conversion from string to digit string as an example plaintext: "KSJJ12BK1J2B4KJBSFDJB" chipertext: "001238912389" i want the ciphertext to be a string only...
  3. misael

    how to build quarantine system ?

    I'm making antivirus but stuck in quarantine feature. im not sure what i do is right way step that i doing now : 1. create folder quarantine [done] 2. move suspected file into folder quarantine [done] 3. encryption executeable file on quarantine folder. so the suspected file can't be...
  4. D

    Where should I store my encryption keys?

    What is current best practice regarding implementing encryption within a c# program and can anyone recommend some good articles/tutorials/examples? Basically I want to create an application which makes use of encryption (using standard .net libraries) for internal security features. It will not...
  5. G

    Question Improving speed in my code

    Is there any way to improve the speed in my script?? Thanks in advance, appreciate any help. using System; using System.Collections.Generic; using System.Linq; using System.Security.Cryptography; using System.Text; using System.Threading.Tasks; namespace MegaTool { public static class mega...
  6. B

    TLS/SSL Security with wolfSSL

    Hello C# development world. If looking for a progressive, low memory TLS library for security, wolfSSL now has a wrapper for C#. The Visual Studio project for it, along with some examples, can be found in the directory wolfSSL_root/wrapper/CSharp/ off of the github download at...
Top Bottom