0
votes
1answer
45 views

Decrypt a file and write to same file in c#

I encrypted a file and wrote the encrypted content to the same file . But when I decrypt the file and try to write it to the same i am not able to clear the old content ie my encrypted text . How ...
1
vote
0answers
24 views

Bad Data Error while decrypting session key

With Reference to the MSDN link Session Key Decrption I am trying to decrypt the session key, but I am getting bad data exception at aes.Key = ...
-6
votes
0answers
36 views

How to encrypt the a string with a public key? [closed]

I want to encrypt the bytes of a string in c# with a modulus and an exponent. Why is there a different result from RSACryptoServiceProvider in C#
1
vote
3answers
77 views

Hashing and GetString/GetBytes issue

I have the below code to hash/store/retrieve data for passwords but my first unit test and it fails. I beleive its the Encoding causing the problem because when GetBytes is called it returns ...
0
votes
0answers
39 views

How to solve CWE-321: Use of Hard-coded Cryptographic Key? [closed]

I am trying to protect the key used to encrypt / decrypt values in my C# app. My code is: Private Shared key() As Byte = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, ...
-5
votes
1answer
45 views

Recommendations for cross-language, secure encryption [closed]

I'm working on this what I hope to be my degree project since we have to do one over here to get that lame degree, anyway, I have a SOAP server, a PHP server and hopefully a Java application and an ...
1
vote
2answers
35 views

How to Verify the Identity of the Caller of a Web Service

I have a server which is composed of a page and a web service. The web service is intended to be used by a Windows Phone mobile application that I will develop myself. Now, my question is, how do I ...
1
vote
1answer
55 views

Encrypting PDF using .NET framework

I implemented a class to encrypt PDFs using .NET framework as explained in the example here. It has used AESManaged algorithm to do the encryption. That method works perfectly and I was able to ...
3
votes
2answers
176 views

Encrypting <appSettings> tags in web.config file

I have recently come across this article which describes the process of encrypting the connectionString tags in the web.config file: ...
-2
votes
2answers
105 views

Serialize an Object to a byte[], then encrypting the byte[]

I came across a case where I need to encrypt an object in order to send it for delivery over a .NET Remoting connection. I have already implemented string encryption in our code, so I used a similar ...
0
votes
1answer
111 views

Decrypt encryption done with RsaProtectedConfigurationProvider in web.config file outside of ASP.NET

For my .NET Windows service I need to parse the web.config file for my own ASP.NET web app. I use XmlTextReader to do the parsing, which works great, except when I need to decrypt sections of ...
0
votes
1answer
53 views

TripleDES cryptography from .NET to PHP [closed]

Below you'll find two .NET methods for Encyrption and Decyription Using .NET i can get listed OUTPUTS for specified INPUTs below. The problem is i couldn't convert these code block to PHP I need ...
1
vote
1answer
44 views

Prevent Padding is Invalid Exception when Brute Forcing

Im using this code to decrypt AES data: public static String decrypt(String ciphertext, String password) { byte[] cipherdata = System.Convert.FromBase64String(ciphertext); byte[] iv = new ...
1
vote
2answers
72 views

Changing the Shared Secret in AES Encryption

I have used Advanced Encryption Standard (AES) to encrypt my data before storing them into database. To my understanding, if I change the "Shared Secret" part of the algorithm, I have to update all ...
0
votes
0answers
48 views

RSA Encryption on .NET with DFSR

I am trying to encrypt connection strings within a web.config and replicate it to another server using DFSR. I can get it encrypted and it will work on the server that did the original encryption but ...
-1
votes
1answer
92 views

Do I absolutely have to encrypt the PayPal data if my site uses SSL encryption at all times? [closed]

My site has an SSL certificate, and I force https: upon entry, to avoid man-in-the-middle attacks. Since everything is encrypted by this, do I still need to use additional encryption to use PayPal ...
1
vote
1answer
280 views

RC4 encryption not matching what's expected

I'm having some problems using a bank's web service to pass in credit card payments. They require RC4 encryption on the outbound data, which they expect to be in a hexadecimal format. Here is the ...
2
votes
0answers
69 views

RijndaelManaged.CreateEncryptor key expansion

There are two ways to specify a key and an IV for a RijndaelManaged object. One is by calling CreateEncryptor: var encryptor = rij.CreateEncryptor(Encoding.UTF8.GetBytes(key), ...
0
votes
1answer
77 views

Select correct Asymmetric/SymmetricAlgorithm based on EncryptionMethod node Algorithm attribute

Is there a built-in .NET API that can parse the Algorithm attribute of an EncryptionMethod element in encrypted XML and identify the correct AsymmetricAlgorithm/SymmetricAlgorithm to use in decrypting ...
1
vote
0answers
77 views

Encrypting XML and providing readable password to app users

I'm very new to the topic of encryption. I'm building a WPF application (to manage database permissions) with a config file that contains one connection string that needs to be encrypted. I'm using ...
2
votes
1answer
40 views

Checking if the transport level encryption works?

It´s possible to use the message tracer with WCF to see if the communication using messages encryption is really encrypted. For more info see point 5 here : here But If we instead uses transport ...
0
votes
1answer
71 views

How to manage/store encryption key in .Net smart card?

I've been doing search here and read a lot of Q about the key but unfortunately no one was asking about smart card or any portable device. Here is my question: I have smart card storing sensitive ...
1
vote
1answer
113 views

PasswordDeriveBytes function

I am using AES (Rijndael) symmetric-key algorithm to encrypt-decrypt data. I am using the System.Security.Cryptography. PasswordDeriveBytes function; PasswordDeriveBytes password = new ...
-1
votes
1answer
52 views

How to Store multiple id/passwords using a master key [closed]

similar to say FireFox which allows a master key to store various id/passwords We would need to store multiple user id/passwords to multiple databases and password protected documents rather than ...
2
votes
3answers
234 views

How to create byte[] with length 16 using FromBase64String [duplicate]

I have a requirement to create a byte[] with length 16. (A byte array that has 128 bit to be used as Key in AES encryption). Following is a valid string "AAECAwQFBgcICQoLDA0ODw==" What is the ...
-1
votes
2answers
166 views

How to apply padding for Base64

I have following code that works fine when I use a four letter word as input, E.g. “Test”. When the input is not a multiple of 4, it fails E.g. “MyTest”. Eexception: Invalid length for a Base-64 ...
3
votes
1answer
350 views

Getting incorrect decryption value using AesCryptoServiceProvider

I have following code that uses AesCryptoServiceProvider for encrypting and decrypting. The iv and key used are same for both encryption and decryption. Still the decrypted value differ from the ...
0
votes
0answers
138 views

Does System.Security.Cryptography.ProtectedData / DPAPI comply with encryption export regulations?

I'm using System.Security.Cryptography.ProtectedData in my app, and I wanted to confirm that doing so does comply with US encryption export regulations (otherwise known as Section 740.13(e) of the ...
1
vote
2answers
212 views

Best method for securely storing passwords

What is the best method for saving passwords on a computer so that they can not be accessed? I would like to store them in the Registry encrypted. I would like you to be able to reset the password but ...
1
vote
3answers
212 views

AesCryptoServiceProvider behaviour when trying to decrypt with the wrong key

I'm using AesCryptoServiceProvider and CryptoStream to encrypt some data and it seems to be working OK when I use the same key for decryption. However, If I try to decrypt it with the wrong key, I ...
0
votes
2answers
387 views

Decryption password using Salt in C#

Currently i am using salt to encrypt the password. public static SaltedHash Create(string password) { string salt = _createSalt(); string hash = _calculateHash(salt, ...
1
vote
4answers
87 views

symmetrical encryption encrypting lots of small blocks

I'm trying to use the .Net symmetrical encryption System.Security.Cryptography to encrypt many small blocks of text without adding too much storage overhead (processing time is not important, just ...
0
votes
3answers
108 views

Encryption of Data that should be stored in a Database. And understanding the concept of the “key” used,

I'm new to C# and ASP.NET and I have to do a project now. It deals with confidential data of a firm's employees so it needs to be encrypted. I am not sure if I will be able to get through with my own ...
0
votes
3answers
153 views

Is it good to hash the password or encrypt it? [duplicate]

Possible Duplicate: Difference between Hashing a Password and Encrypting it Hashing vs. Encrypting Passwords I tried hashing my password in C# using Rfc2898DeriveBytes by passing the ...
0
votes
0answers
72 views

Issues with processing apostrophe in SHA1CryptoServiceProvider

I have a SHA1CryptoServiceProvider object which uses ComputeHash method to create a password: private static byte[] GetSHA1(string userLogin, string userPassword) { SHA1CryptoServiceProvider sha ...
3
votes
2answers
102 views

Name of Encryption

i was going through encryption today and my colleague told me a simpler/custom way to do it, what i did is listed down there, so can you please tell me what type of encryption or hashign is that? he ...
3
votes
4answers
170 views

Encryption Engine

Right now i am making a library that will be performing common tasks in C# .Net. basically i am targetting beginners of C# so that they can take benefit from my library and use it to minimize the ...
0
votes
1answer
205 views

Using mouse movement and keystrokes to generate entropy for encryption (As seen on MEGA)

I am interested in generating entropy from mouse movements and keystrokes in .NET (for the purposes of encryption this could be either in a Forms application where the mouse movement and keystroke ...
3
votes
1answer
153 views

How to generate the same AES key in Java(Android) as in .Net?

I need to generate an AES key in Java (Android) from salt and password given from .Net WebService. I need to have the same key as the key generated in .net with the same password and salt (using ...
0
votes
1answer
223 views

How to encrypt data using same algo in SQL [duplicate]

Possible Duplicate: Base64 encoding in SQL Server 2005 T-SQL I have a .net program which encrypts data like this. public static string EncryptStringAES(string plainMessage) { string ...
2
votes
1answer
303 views

How to decrypt AesCryptoServiceProvider using JavaScript?

I am using EncryptStringToBytes_Aes method from MSDN to encrypt some data using custom passphrase like this: string original = "some data to encrypt"; byte[] encrypted; using (AesManaged aes = new ...
0
votes
2answers
542 views

Is EnableViewStateMAC=true compulsory for ViewStateEncryption in an ASP.Net Website?

I'm currently fixing some Security issues in our ASP.net website application. One of the issue was that the ViewState was not encrypted. So i did check on StackOverFlow and elsewhere on how to ...
0
votes
1answer
360 views

Authenticating iOS application for an IIS webservice

My team will be building iOS and Android versions of an application that would be used by a few hundred employees in the field. We will be developing a .NET webservice in-house for the purpose of ...
0
votes
2answers
163 views

How to create an encrypted file container using .net

I need to create a encrypted file container in an asp net mvc app. I found this program that does the job http://www.michaelcodes.net/post/TrueCrypt-6a-System-Encryption-Benchmarks.aspx but it ...
9
votes
1answer
151 views

How to avoid extra memory use during encryption and decryption?

So I have a basic crypto class. Note that this is a simplified implementation to illustrate the question. Now to my mind both these methods have an extra byte array and string instance. xmlString ...
0
votes
1answer
82 views

Best encryption available for PHP and .NET [closed]

I don't know very much about encryption and I looked it up but I couldn't find anything so maybe you guys know. I want to upload an encrypted string created in c# to PHP where it has to process that ...
0
votes
1answer
63 views

.net RSA - Changing private key

I'm testing RSA algorthm and just for trying tested what happend when decrypting with the wrong private key (D param). I'm using RSACryptoServiceProvider with default constructor (no params). I ...
1
vote
2answers
50 views

Porting Encryption Service from .Net To Java

I have an encryption service (.Net Class Lib) now i have to port it to java, as far as the encryption and decryption goes both the services are serving fine but the problem is that i have to save the ...
2
votes
3answers
136 views

Create a secure hash that hides an int value in C#

I am trying to create a registration code for my C# 2.0 desktop application, which is a pay-per-use application. The registration code must hide an int value within it (the int value represents the ...
0
votes
0answers
117 views

Bug in Blowfish decryption, please help me to spot the error

I have an assigment to do for school. The task is to implement the Blowfish encryption algorithm in C#. Encryption works well, but decryption fails and produces "random" output. Maybe some more ...

1 2 3 4 5 12