Click here to Skip to main content
15,890,282 members
Everything / DES

DES

DES

Great Reads

by Asher Barak, Itiel Beeri
Infrastructure for large scale WCF services layer development
by Huzifa Terkawi
This article will aim to give you a brief and to point tutorial about DES modes , hash Functions , AES , RSA algorithms and example of their usage , using OpenSSL.

Latest Articles

by Asher Barak, Itiel Beeri
Infrastructure for large scale WCF services layer development
by Huzifa Terkawi
This article will aim to give you a brief and to point tutorial about DES modes , hash Functions , AES , RSA algorithms and example of their usage , using OpenSSL.

All Articles

Sort by Score

DES 

14 Jan 2016 by Asher Barak, Itiel Beeri
Infrastructure for large scale WCF services layer development
6 Jun 2016 by OriginalGriff
If your application needs it, then pretty much you can't.The problem is that if your app needs the key value to decrypt your data, then it needs to be able to read it from somewhere. Which means that any other application can also read it from the same location if it does the same things. No...
5 Oct 2016 by Member 12759596
We were using hard coded IVParameterSpec in our program.We use same IvParameterSpec to encrypt and later to decrypt our strings .We want to use below code to generate IvParameterSpec SecureRandom random = new SecureRandom();byte[] iv = random.generateSeed(16);IvParameterSpec ips =...
18 Jun 2017 by Ravi Bhavnani
There are several issues with your code.  But perhaps most importantly, you're simply adding the created buttons to a list, and not the form.  Instead of doing: buttons.Add(Productbtn); try: this.Controls.Add(Productbtn); /ravi
19 Jun 2017 by Simon_Whale
I see a couple of issues. 1. like Ravi pointed out you need to add the button to the panel only. 2. you need to set the top and left properties of the button to position the button to the screen where you want it at the moment you are setting all of them to 10, I would do something similar to...
11 Sep 2022 by Member 14379241
Suppose the values of different sizes of rectangular pieces of land are known (presumed rounded to the nearest metre), and held in a two-dimensional array, with the price for an m × n sized piece the same as for an n × m piece of land. Also...
11 Sep 2022 by OriginalGriff
While we are more than willing to help those that are stuck, that doesn't mean that we are here to do it all for you! We can't do all the work, you are either getting paid for this, or it's part of your grades and it wouldn't be at all fair for...
6 Aug 2015 by Huzifa Terkawi
This article will aim to give you a brief and to point tutorial about DES modes , hash Functions , AES , RSA algorithms and example of their usage , using OpenSSL.
15 Jun 2017 by Patrice T
Quote: How do I select which encryption and decryption algorithm is best C#? There is not answer to this question because we don't have the necessary information. We don't know how important are your files, nor the context. The answer for C# is the same as for any other language, because...
15 Jun 2017 by RickZeeland
Go for AES with 256bit key and CBC cipher mode if you want fast performance, because most modern hardware (CPU's) supports it. See this article for more information: Swanky Encryption/Decryption in C#[^]
6 Jun 2016 by Jaimesh.2411
Tool : Windows 7 64 bit OS, Visual Studio 2012, Install Shield to create setup.I have one windows form application. I have used DES algorithm to Encrypt and Decrypt data. For this purpose I have used one Key(Secret key to encryption). How can I secure this key so that no one can get it and...
6 Jun 2016 by shukla dhaval
You can you RSA with public and private key to protect your data.you will get more information RSA Algorithm With C#[^]
15 Jun 2017 by prashureddy
I have to write a c# encryption and decryption for large files which are more than 200 MB. Please anyone provide the fast and secure algorithm suggestion for my problem What I have tried: I tried AES and DES Algorithms. But is taking time. I tried Partial-Encryption also. But its not given...
26 Jan 2016 by Member 12288342
Can anyone help me to create DES decryption algorithm by using ECb mode.I want to achieve the same functionality like this guy does.http://www.emvlab.org/descalc/Key:- 0123456789ABCDEF0123456789ABCDEFinput data:- 1214F1DE3FA3C46BSlect ECB radio button and click "Decrypt"output...
6 Jun 2016 by koolprasad2003
There are multiple ways to secure your key, but it depends upon how you create your key.One way to create a dynamic key for encryption and decryption so there is no need to store it anywhere.e.g. you can pick a HDD serial no and encrypt your key and use same for decryption (In this case you...
25 Jul 2017 by Member 9983063
Hello Guys,I hopeyou will be fine guys i have facing a logical problems that it i want buttons like this in m[^] in my form but i can't do it please help me how can i do it Thanks What I have tried: Button button = sender as Button; string buttonText = button.Text; ...
20 Jun 2017 by Member 9983063
Well i have solved this issue my self with this link .net - Dynamic button creation & placing them in a predefined order using c# - Stack Overflow[^] Thank you guys for my help.