active questions tagged encryption - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T11:25:30Zhttp://stackoverflow.com/feeds/tag/encryptionhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1823633/high-performance-encryption-in-adobe-air-flash0high performance encryption in adobe air / flashFreddy Rios2009-12-01T02:24:57Z2009-12-09T11:04:52Z
<p>When looking for encryption related classes/functions in action script / air / flash, I saw the <strong><a href="http://code.google.com/p/as3crypto/" rel="nofollow">as3crypto</a></strong> project. </p>
<p>This one provides a v. nice set of options, but I am a bit concerned on what the numbers presented means when these are used to decrypt a local media file when its selected about to be played.</p>
<p>I am looking for <strong>security vs. performance balance</strong>. </p>
<p>For <strong>video/music</strong>, it needs to decode at a fast enough pace so the player <strong>plays it smoothly</strong> - which is something that <strong>depends on the format</strong> used, but is in all cases less than the delay of having to wait to decode the whole file.</p>
<p>The hardest part comes from having to use it for <strong>flash apps</strong> as well, since afaik it needs to <strong>wait for all of it to do anything</strong>. Unless this assumption is wrong, this is where the best performance algorithm in the list in the as3crypto page seems <strong>too slow</strong> i.e. <strong>at 1.5 MB x sec, it would take 20 secs to decipher a 30 MB flash app</strong>.</p>
<p>The <strong>main questions</strong> I have on this are:</p>
<ul>
<li>Are there any <strong>other libraries</strong> with higher performance? Anything in adobe air maybe? </li>
<li>For <strong>videos/songs</strong>, what would be a good number of <strong>MB x sec for it to be playable</strong>?</li>
<li>Does flash waits until loading completely a flash app before running anything of it?</li>
</ul>
http://stackoverflow.com/questions/1868320/what-is-the-best-way-to-keep-database-data-enctypted-with-user-passwords3What is the best way to keep database data enctypted with user passwords?Dan Sosedoff2009-12-08T16:56:58Z2009-12-09T10:45:19Z
<p>Lets say, application has really specific data which belongs to user, and nobody supposed to see it except the owner. I use MySQL database with DataMapper ORM mapper, the application is written in Ruby on Sinatra. </p>
<p>Application behavior:</p>
<ol>
<li>User signs up for an account. Creates username and password.</li>
<li>Logs into his dashboard.</li>
<li>Some fields in specific tables must be protected. </li>
</ol>
<p>Basically, im looking for auto-enctyption for a model properties. Something like this:</p>
<pre><code>class Transaction
include DataMapper::Resource
property :id, Serial
property :value, String, :length => 1024, :ecrypted => true
... etc ...
belongs_to :user
end
</code></pre>
<p>I assume that encryption/decryption on fly will cause performance problems, but its ok. At least if that works - im fine. </p>
<p>Any ideas how to do this?</p>
http://stackoverflow.com/questions/1872170/how-to-protect-intellectual-property-in-java-app1How to protect intellectual property in java appMulmoth2009-12-09T07:22:27Z2009-12-09T08:20:08Z
<p>What product / technology can I you use to protect my java code in a commercial application? Is there a obfuscator that does the job? On the other side, it would be great to have anything that combines file-based license management with byte-code encryption.</p>
<p>Any Ideas? Best practices?</p>
http://stackoverflow.com/questions/1869588/what-is-the-safest-algorithm-in-kohanas-auth-module2What is the safest algorithm in Kohana's auth module?amgeex2009-12-08T20:22:14Z2009-12-09T04:34:06Z
<p>I'd prefer to use the crypt function and use blowfish encryption, but the current implementation of this module uses the hash function, which doesn't offer this encryption method. So, what is the safest algorithm in Kohana's auth module? Would SHA-512 be a good option or am I better off modifying the module to use crypt and blowfish?</p>
http://stackoverflow.com/questions/1870047/what-encryption-scheme-meets-requirement-of-decimal-plaintext-ciphertext-and-pr4What encryption scheme meets requirement of decimal plaintext & ciphertext and preserves length?unknown (google)2009-12-08T21:41:52Z2009-12-08T23:38:14Z
<p>Hi,</p>
<p>I need an encryption scheme where the plaintext and ciphertext are composed entirely of decimal digits.</p>
<p>In addition, the plaintext and ciphertext must be the same length.</p>
<p>Also the underlying encryption algorithm should be an industry-standard.
I don't mind if its symmetric (e.g AES) or asymmetric (e.g RSA) - but it must be a recognised algorithm for which I can get a FIPS-140 approved library. (Otherwise it won't get past the security review stage).</p>
<p>Using AES OFB is fine for preserving the length of hex-based input (i.e. where each byte has 256 possible values: 0x00 --> 0xFF). However, this will not work for my means as plaintext and ciphertext must be entirely decimal.</p>
<p>NB: "Entirely decimal" may be interpreted two ways - both of which are acceptable for my requirements:</p>
<ol>
<li>Input & output bytes are characters '0' --> '9' (i.e. byte values: 0x30 -> 0x39)</li>
<li>Input & output bytes have the 100 (decimal) values: 0x00 --> 0x99 (i.e. BCD)</li>
</ol>
<p>Some more info:
The max plaintext & ciphertext length is likely to be 10 decimal digits.
(I.e. 10 bytes if using '0'-->'9' or 5 bytes if using BCD)</p>
<p>Consider following sample to see why AES fails:
Input string is 8 digit number.
Max 8-digit number is: 99999999
In hex this is: 0x5f5e0ff</p>
<p>This could be treated as 4 bytes: <0x05><0xf5><0xe0><0xff></p>
<p>If I use AES OFB, I will get 4 byte output.</p>
<p>Highest possible 4-byte ciphertext output is <0xFF><0xFF><0xFF><0xFF></p>
<p>Converting this back to an integer gives: 4294967295
I.e. a 10-digit number. </p>
<p>==> Two digits too long.</p>
<p>One last thing - there is no limit on the length any keys / IVs required.</p>
<p>Thanks in advance for any suggestions you may have to address this.</p>
<p>David.</p>
http://stackoverflow.com/questions/1868339/encrypting-flash-files0encrypting flash filesufk2009-12-08T17:00:34Z2009-12-08T19:24:00Z
<p>what's the recommended method to encrypt flash files ?</p>
<p>i'd like to make some flash programs that are commericals, how can i made sure that they won't get decrypted or to make sure that i used to strongest file encryption possible.</p>
http://stackoverflow.com/questions/1868532/encrypting-data-using-blowfish-under-flash0encrypting data using blowfish under flash.ufk2009-12-08T17:28:04Z2009-12-08T17:44:27Z
<p>how can i encrypt data in flash? is there a toolkit or class or something that can help me do that ?</p>
http://stackoverflow.com/questions/1868371/flash-how-to-encrypt-information-that-is-sent-from-swf-to-web-server0flash: how to encrypt information that is sent from swf to web serverufk2009-12-08T17:04:12Z2009-12-08T17:31:45Z
<p>hi.
i want to make flash programs that send information to the web server that cannot be revealed by the user. of course the user will be able to see that HTTP request that is being sent, but i want to encrypt the data before transferring it. what's the best method to achieve that ?</p>
http://stackoverflow.com/questions/1867136/has-anyone-got-a-tutorial-up-on-getting-your-own-smartcard-and-getting-pkcs11-wo0Has anyone got a tutorial up on getting your own smartcard and getting pkcs#11 working on it?joeforker2009-12-08T13:57:34Z2009-12-08T15:32:46Z
<p>Has anyone got a tutorial up on getting your own smartcard and getting pkcs#11 working on it? In Linux? (Windows would be fine too).</p>
<p>Most of the vendors seem to assume you'll be wanting enough for your whole company, not one or two.</p>
http://stackoverflow.com/questions/479838/asp-membership-cannot-handle-encrypted-connection-strings-in-web-config0ASP Membership cannot handle encrypted connection strings in web.configChris Simpson2009-01-26T13:45:33Z2009-12-08T09:00:02Z
<p>We were experiencing errors with one of our web methods on a test web server we have. The main error was:</p>
<pre><code>"Access to the path 'E:\websites\Discovery\ProfileService\App_Data' is denied"
</code></pre>
<p>Looking further down the stack trace gives a little more info:</p>
<pre><code>"at System.Web.DataAccess.SqlConnectionHelper.CreateMdfFile..."
"at System.Web.DataAccess.SqlConnectionHelper.EnsureSqlExpressDBFile..."
"at System.Web.DataAccess.SqlConnectionHelper.GetConnection..."
"at System.Web.Security.SqlMembershipProvider.GetUser..."
"at System.Web.Security.Membership.GetUser..."
"at System.Web.Security.Membership.GetUser..."
</code></pre>
<p>It appeared that the membership provider was trying to find a connection string for a membership call. On failing to find this entry, it tried to create a new local membership database and failed to do this with a permissions error.</p>
<p>We double checked the connection strings and they seemed ok though they were encrypted. We then saved the config with the connection strings section decrypted - the call now worked!</p>
<p>We know that the connection strings were correct because other service methods were working fine. What is even stranger is that some aspects of membership seemed to work with encryption in place.</p>
<p>Has anyone seen this before or know how to make this work with encrypted connection strings?</p>
http://stackoverflow.com/questions/1863871/signing-messages-with-pyme-gnupg-python-wrapper0Signing messages with PyMe (GnuPG Python Wrapper)Yan2009-12-08T00:52:07Z2009-12-08T00:52:07Z
<p>Hi,
I use PyMe to sign and verify messages.
I have a problem setting a pass-phrase callback that will return a password for the
private signature key whenever needed for signing.
My code looks like this:</p>
<p>def passphrase_callback(hint='', desc='', prev_bad=''):
return 'password'</p>
<p>class CryptoEngine:
def <strong>init</strong>(self, user_id, passphrase):
"Initialize with ID (e-mail)"
self.user_id = user_id
self.passphrase = passphrase
def verify(self, data):
c = core.Context()
sig = core.Data(string = data)
file = None
plain = core.Data()
c.op_verify(sig, file, plain)
result = c.op_verify_result()
plain.seek(0, 0)
plaintext = plain.read()
sig = result.signatures
status = False
for s in sig:
status = (s.status == 0)
return status, plaintext</p>
<p>def sign(self, data):
c = core.Context()
for sigkey in c.op_keylist_all(self.user_id, 1):
if sigkey.can_sign:
c.signers_add(sigkey)
if not c.signers_enum(0):
raise CryptoEngine.NoSignKeys("No secret %s's keys suitable for signing" % self.user_id)</p>
<pre><code>plain = core.Data(data)
sig = core.Data()
c.set_passphrase_cb(passphrase_callback)
c.op_sign(plain, sig, mode.CLEAR)
sig.seek(0, 0)
return sig.read()
</code></pre>
<p>Despite setting the passphrase callback I still either get a message box asking for the pass-phrase or just an exception notifying of a bad password.
Did someone solve this problem and could share his knowledge?
Thanks, Yan</p>
http://stackoverflow.com/questions/1863360/translating-algorithm-code-from-ruby-to-php1Translating algorithm/code from Ruby to PHPstormist2009-12-07T22:30:12Z2009-12-07T23:34:51Z
<pre><code>digest = HMAC.digest(Digest.new(SHA1), Base64.decode64(key), HashString) return Base64.encode64(digest.to_s()).chomp()
</code></pre>
<p>What would the above be in PHP? </p>
http://stackoverflow.com/questions/1860659/will-encrypting-a-comma-seperated-list-of-ids-make-it-smaller-to-fit-into-a-cook0will encrypting a comma seperated list of ID's make it smaller to fit into a cookie?mrblah2009-12-07T15:22:29Z2009-12-07T23:30:23Z
<p>say I want to store ID's in a cookie:</p>
<p>123,1232,3443,2343,2344422,2342</p>
<p>seeing that a cookie has a 4kb limit (or whatever), would encrypting the value allow for more storage somehow?</p>
<p>if so, which encryption would be best? (not really worried about security, just want to store more with less footprint)</p>
http://stackoverflow.com/questions/1362209/dpapi-with-asp-net-service-account0DPAPI with ASP.NET Service AccountJay2009-09-01T12:26:14Z2009-12-07T18:00:02Z
<p>Hi,</p>
<p>I want to encrypt data before saving it to the database. The access to the data is controlled by the application. So anyone with Admin role should be able to see the data. I want to be able to protect the encryption key used to encrypt/decrypt the data. I dont want to use the DPAPI machine key since the server hosts multiple apps. </p>
<p>I was wondering if it is possible to create a service account and use that account's logon credential to encrypt the key in the web.config file.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1859473/in-php-how-to-find-already-encrypted-file-in-specific-folder1in php how to find already encrypted file in specific folder.Rahul2009-12-07T11:39:19Z2009-12-07T17:43:18Z
<p>Hi,</p>
<p>I am using PGP (GNU Privacy Guard) for encrypting the file.
while encrypting i removed the '.pgp' extension of encrypted file.</p>
<p>Now some how i want to know which file is already encrypted in the specific folder.</p>
<p><strong>Note :-</strong> <em>my goal is that ... do not encrypt any file twice ... so before encrypt any file .. i want to check is the file already encrypted.</em></p>
<p>in php can we find out which file is already encrypted ?</p>
<p>Thanks & Regards
Rahul.</p>
http://stackoverflow.com/questions/1859410/is-there-a-way-to-check-with-calls-into-my-web-application-api-came-from-my-distr0Is there a way to check with calls into my web-application API came from my distributed client???Greg2009-12-07T11:22:19Z2009-12-07T11:28:42Z
<p>Hi,</p>
<p>Is there a way to check with calls into my web-application API came from my distributed client???</p>
<p>That is if I have both a thick client (windows forms client say) and the server side web application that exposes a HTTPS interface (assume user puts username/passwork into the client configuration for authentication), is there a way to ensure the web application interface is ONLY used by my client? That is, prevent uses 'playing the system' and developing their own scripts/apps to use the API (and hence potentially misuse the service).</p>
<p>If I bury an private key into the WinForms client somehow so it can sign the payloads, the implication would be it could be decompiled by a user??? Just be curious to know if it is possible to solve this one....</p>
<p>thanks</p>
http://stackoverflow.com/questions/1856064/running-a-website-from-an-encrypted-partition1Running a website from an encrypted partitionJB Lesage2009-12-06T17:59:41Z2009-12-07T08:31:01Z
<p>I am looking at the possibility of running a PHP-based website (built in symfony) from an encrypted partition on a LAMP server. The reason for this is because a client would have access to the server but I don't want them to see the source code behind the php website. </p>
<p>I am open to other solutions if this is not possible. For example, possibly running the site from a virtual machine instance that cant be accessed easily. </p>
<p>I am not a big fan of simply obfuscating the code because, according to other posts, it can be easily reversed. </p>
<p>Is it possible to run a PHP app within an environment which is not human-accessible/readable?</p>
http://stackoverflow.com/questions/1303220/padding-error-when-using-rsa-encryption-in-c-and-decryption-in-java1Padding error when using RSA Encryption in C# and Decryption in JavaMatt Shaver2009-08-19T23:43:57Z2009-12-06T09:59:59Z
<p>Currently I am receiving the following error when using Java to decrypt a Base64 encoded RSA encrypted string that was made in C#:</p>
<blockquote>
<p>javax.crypto.BadPaddingException: Not PKCS#1 block type 2 or Zero padding</p>
</blockquote>
<p>The setup process between the exchange from .NET and Java is done by creating a private key in the .NET key store then from the PEM file extracted, created use keytool to create a JKS version with the private key. Java loads the already created JKS and decodes the Base64 string into a byte array and then uses the private key to decrypt.</p>
<p>Here is the code that I have in C# that creates the encrypted string:</p>
<pre><code>public string Encrypt(string value) {
byte[] baIn = null;
byte[] baRet = null;
string keyContainerName = "test";
CspParameters cp = new CspParameters();
cp.Flags = CspProviderFlags.UseMachineKeyStore;
cp.KeyContainerName = keyContainerName;
RSACryptoServiceProvider rsa = new RSACryptoServiceProvider(cp);
// Convert the input string to a byte array
baIn = UnicodeEncoding.Unicode.GetBytes(value);
// Encrypt
baRet = rsa.Encrypt(baIn, false);
// Convert the encrypted byte array to a base64 string
return Convert.ToBase64String(baRet);
}
</code></pre>
<p>Here is the code that I have in Java that decrypts the inputted string:</p>
<pre><code>public void decrypt(String base64String) {
String keyStorePath = "C:\Key.keystore";
String storepass = "1234";
String keypass = "abcd";
byte[] data = Base64.decode(base64String);
byte[] cipherData = null;
keystore = KeyStore.getInstance("JKS");
keystore.load(new FileInputStream(keyStorePath), storepass.toCharArray());
RSAPrivateKey privateRSAKey = (RSAPrivateKey) keystore.getKey(alias, keypass.toCharArray());
Cipher cipher = Cipher.getInstance("RSA/ECB/PKCS1Padding");
cipher.init(Cipher.DECRYPT_MODE, privateRSAKey);
cipherData = cipher.doFinal(data);
System.out.println(new String(cipherData));
}
</code></pre>
<p>Does anyone see a step missing or where the padding or item needs to be changed? I have done hours of reading on this site and others but haven't really found a concrete solution.</p>
<p>You're help is vastly appreciated.</p>
<p>Thanks. -Matt</p>
http://stackoverflow.com/questions/1286578/bignum-libraries-for-windows1Bignum libraries for windows?FiberOptick2009-08-17T07:29:41Z2009-12-05T21:19:28Z
<p>Are there any bignum libraries that are good for Windows use? I looked at GMP, but unfortunately it does not look like it can be compiled on Windows...I'm going to be doing some custom RSA and hashing routines, and I need something that can handle <em>extremely</em> large integers.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1844778/understanding-nss-pk11cipherop-and-c-memory-allocation0Understanding NSS PK11_CipherOp and C memory allocationHamy2009-12-04T04:05:23Z2009-12-05T01:13:20Z
<p>Hey all, </p>
<p>Having some issues with C. I have this is my code:</p>
<pre><code>// First line works, second line does not!
char outbuf[1024];
// char *outbuf = (char *) malloc(1024); // char is always 1
</code></pre>
<p>I am passing this outbuf to a method called <code>PK11_CipherOp()</code>, declared in the NSS library. The Documentation for this method can be found <a href="http://mxr.mozilla.org/mozilla/source/security/nss/lib/pk11wrap/pk11cxt.c#666" rel="nofollow">here</a>, you can see that it expects a <code>char *</code> for the outbuf param. </p>
<p>I cannot understand why the first line works reliably, and the second line does not!</p>
<p>To see the full code, please see <a href="http://code.google.com/p/sysecure/source/browse/trunk/session%5Fkeys.c?spec=svn25&r=25#118" rel="nofollow">File Source</a></p>
<p>Thanks, </p>
<p>Hamilton</p>
http://stackoverflow.com/questions/1849117/simple-encryption-tutorial0simple encryption tutorial?unknown (google)2009-12-04T19:26:09Z2009-12-04T20:21:50Z
<p>I'm looking for a simple encryption tutorial, for encoding a string into another string. I'm looking for it in general mathematical terms or psuedocode; we're doing it in a scripting language that doesn't have access to libraries. </p>
<p>We have a Micros POS ( point of sale ) system and we want to write a script that puts an encoded string on the bottom of receipts. This string is what a customer would use to log on to a website and fill out a survey about the business. </p>
<p>So in this string, I would like to get a three-digit hard-coded location identifier, the date, and time; e.g.:
0010912041421
Where 001 is the location identifier, 09 the year, 12 the month, and 04 the day, and 1421 the military time ( 2:41 PM ). That way we know which location the respondent visited and when. </p>
<p>Obviously if we just printed that string, it would be easy for someone to crack the 'code' and fill out endless surveys at our expense, without having actually visited our stores. So if we could do a simple encryption, and decode it with a pre-set key, that would be great. The decoding would take place on the website.</p>
<p>The encrypted string should also be about the same number of characters, to lessen the chance of people mistyping a long arbitrary string. </p>
http://stackoverflow.com/questions/783523/encrypted-volume-automounting-in-mac-os-x0Encrypted volume automounting in Mac OS Xnsayer2009-04-23T21:06:01Z2009-12-03T18:03:52Z
<p>I've had a need to create an encrypted volume on my mac for the company source code. The requirements are not terribly stringent: If someone can log into the machine as me, they win, but otherwise, they should lose. With that set of requirements, you can make it so that the disk is automatically mounted at login.</p>
http://stackoverflow.com/questions/1840720/python-x-509-asymmetric-encryption0python X.509 asymmetric encryptionBacci2009-12-03T15:38:19Z2009-12-03T15:53:01Z
<p>Hello
I'm trying to understand how certificate and asymmetric encryption works. I'm looking for a python library where i can import public or private ca signed certificates and automatically encrypt or decrypt message in string format, i viewed the crypto library embedded in python source, but i don't know how to use the hex modulus and exponent in this part of the certificate:</p>
<pre><code>RSA Public Key: (1024 bit)
Modulus (1024 bit):
00:b4:31:98:0a:c4:bc:62:c1:88:aa:dc:b0:c8:bb:
33:35:19:d5:0c:64:b9:3d:41:b2:96:fc:f3:31:e1:
66:36:d0:8e:56:12:44:ba:75:eb:e8:1c:9c:5b:66:
70:33:52:14:c9:ec:4f:91:51:70:39:de:53:85:17:
16:94:6e:ee:f4:d5:6f:d5:ca:b3:47:5e:1b:0c:7b:
c5:cc:2b:6b:c1:90:c3:16:31:0d:bf:7a:c7:47:77:
8f:a0:21:c7:4c:d0:16:65:00:c1:0f:d7:b8:80:e3:
d2:75:6b:c1:ea:9e:5c:5c:ea:7d:c1:a1:10:bc:b8:
e8:35:1c:9e:27:52:7e:41:8f
Exponent: 65537 (0x10001)
</code></pre>
<p>is there anyone can help me?</p>
<p>thanks</p>
http://stackoverflow.com/questions/1839038/encryption-and-java-method-generating-key-what-size0Encryption and Java, method generating key - what size?Kumar2009-12-03T10:27:37Z2009-12-03T12:28:59Z
<p>I got the following method body to generate a key for encryption:</p>
<pre><code>new BigInteger(500, new SecureRandom()).toString(64);
</code></pre>
<p>Could anyone explain what is the size of generated key?</p>
http://stackoverflow.com/questions/1837884/whats-easier-to-encrypt-on-iphone-core-data-or-property-lists0What's easier to encrypt on iPhone: Core Data or Property Lists?Apophenia Overload2009-12-03T05:41:44Z2009-12-03T06:33:27Z
<p>What type of persistent data storage would be easier to encrypt on the iPhone- core data, or property lists? By "easier" I mean require less time and complicated steps to implement.</p>
http://stackoverflow.com/questions/1836223/asp-net-rijndael-decryption-error-length-of-the-data-to-decrypt-is-invalid0ASP.NET Rijndael Decryption Error: Length of the data to decrypt is invalid.stamp2009-12-02T22:13:21Z2009-12-02T22:39:40Z
<p>OK, so having <a href="http://stackoverflow.com/questions/1835896/asp-net-rijndael-encryption-error-specified-key-is-not-a-valid-size-for-this-al">just got the key</a> to be accepted and have an encrypted string out which is 44 char long, I now am unable to decrypt (aarrgghh):</p>
<p><strong><em>Length of the data to decrypt is invalid.</em></strong></p>
<p>Having looked around and read various posts it looks as though the conversion to a Base64String may be the problem but I can't see where it is wrong - many of the solutions I have seen appear to be identical to what I have. Again, I'd really appreciate any help - extracts below:</p>
<p>Encryption/Decryption Function</p>
<pre><code>Private byteKey As Byte() = Encoding.UTF8.GetBytes("B499F4BF48242E05548D1E4C8BB26A2E")
Private byteIV As Byte() = Encoding.UTF8.GetBytes(",%u'm&'CXSy/T7x;4")
Private Function Rijndael(ByVal sInput As String, ByVal bEncrypt As Boolean) As String
' Create an instance of encyrption algorithm.
Dim _rijndael As New RijndaelManaged()
' Create an encryptor using key and IV - already available in byte() as byteKey and byteIV
Dim transform As ICryptoTransform
If bEncrypt Then
transform = _rijndael.CreateEncryptor(byteKey, byteIV)
Else
transform = _rijndael.CreateDecryptor(byteKey, byteIV)
End If
' Create streams for input and output
Dim msOutput As New System.IO.MemoryStream()
Dim msInput As New CryptoStream(msOutput, transform, CryptoStreamMode.Write)
' Feed data into the crypto stream.
msInput.Write(Encoding.UTF8.GetBytes(sInput), 0, Encoding.UTF8.GetBytes(sInput).Length)
' Flush crypto stream.
msInput.FlushFinalBlock()
Dim byteOutput As Byte() = msOutput.ToArray
Return Convert.ToBase64String(byteOutput)
End Function
</code></pre>
<p>Usage:</p>
<pre><code>Dim sEncrypted As String = Rijndael("This is a test", True)
Dim sDecrypted As String = Rijndael(sEncrypted, False) **This is the line where it is crashing**
</code></pre>
<p><strong>EDIT - Final, seemingly working pair of functions (see comment) for ref:</strong></p>
<pre><code>Private byteKey As Byte() = Encoding.UTF8.GetBytes("B499F4BF48242E05548D1E4C8BB26A2E")
Private byteIV As Byte() = Encoding.UTF8.GetBytes(",%u'm&'CXSy/T7x;4")
Public Function Encrypt(ByVal sInput As String) As String
' Create an instance of our encyrption algorithm.
Dim _rijndael As New RijndaelManaged()
' Create an encryptor using our key and IV
Dim transform As ICryptoTransform
transform = _rijndael.CreateEncryptor(byteKey, byteIV)
' Create the streams for input and output
Dim msOutput As New System.IO.MemoryStream()
Dim msInput As New CryptoStream(msOutput, transform, CryptoStreamMode.Write)
' Feed our data into the crypto stream
msInput.Write(Encoding.UTF8.GetBytes(sInput), 0, Encoding.UTF8.GetBytes(sInput).Length)
msInput.FlushFinalBlock()
Return Convert.ToBase64String(msOutput.ToArray)
End Function
Public Function Decrypt(ByVal sInput As String) As String
' Create an instance of our encyrption algorithm.
Dim _rijndael As New RijndaelManaged()
' Create an encryptor using our key and IV
Dim transform As ICryptoTransform
transform = _rijndael.CreateDecryptor(byteKey, byteIV)
' Create the streams for input and output
Dim msOutput As New System.IO.MemoryStream()
Dim msInput As New CryptoStream(msOutput, transform, CryptoStreamMode.Write)
' Feed our data into the crypto stream.
msInput.Write(Convert.FromBase64String(sInput), 0, Convert.FromBase64String(sInput).Length)
msInput.FlushFinalBlock()
Return Encoding.UTF8.GetString(msOutput.ToArray)
End Function
</code></pre>
<p>Usage</p>
<pre><code>Dim sEncrypted As String = Encrypt("This is a test")
Dim sDecrypted As String = Decrypt(sEncrypted)
</code></pre>
http://stackoverflow.com/questions/1835896/asp-net-rijndael-encryption-error-specified-key-is-not-a-valid-size-for-this-al0ASP.NET Rijndael Encryption Error - Specified key is not a valid size for this algorithm. stamp2009-12-02T21:17:53Z2009-12-02T21:22:30Z
<p>I can't seem to get past this problem, I've created what I assume to be a 256-bit key using the random generator at <a href="https://www.grc.com/passwords.htm" rel="nofollow">GRC</a> and combined that with my IV. I keep getting the error below:</p>
<p><strong><em>Specified key is not a valid size for this algorithm.</em></strong> </p>
<p>Any help is gratefully received, here is the code I am using to Encrypt/Decrypt:</p>
<pre><code>Private Function Rijndael(ByVal sInput As String, ByVal bEncrypt As Boolean) As String
' Setup the Key and Initialization Vector.
Dim byteKey As Byte() = Encoding.UTF8.GetBytes("C3CA193570B26E5C3CBB50FD805A0E23BAFFABA135E82C41517EEDCB9B7C90AC")
Dim byteIV As Byte() = Encoding.UTF8.GetBytes("c+O2r)J~?L:$]u[2")
' Create an instance of the encyrption algorithm.
Dim _rijndael As New RijndaelManaged()
' Create an encryptor using our key and IV
Dim transform As ICryptoTransform
If bEncrypt Then
transform = _rijndael.CreateEncryptor(byteKey, byteIV)
Else
transform = _rijndael.CreateDecryptor(byteKey, byteIV)
End If
' Create the streams for input and output
Dim msOutput As New System.IO.MemoryStream()
Dim msInput As New CryptoStream(msOutput, transform, CryptoStreamMode.Write)
' Feed data into the crypto stream.
msInput.Write(Encoding.UTF8.GetBytes(sInput), 0, Encoding.UTF8.GetBytes(sInput).Length)
' Flush crypto stream.
msInput.FlushFinalBlock()
Return Convert.ToBase64String(msOutput.ToArray)
End Function
</code></pre>
http://stackoverflow.com/questions/454048/what-is-the-difference-between-encrypting-and-signing-in-asymmetric-encryption2What is the difference between encrypting and signing in asymmetric encryption?Simucal2009-01-17T21:07:43Z2009-12-02T09:16:40Z
<p>What is the difference between encrypting some data vs signing some data (using RSA)? </p>
<p>Does it simply reverse the role of the public-private keys? </p>
<p>For example, I want to use my private key to generate messages so only I can possibly be the sender. I want my public key to be used to read the messages and I do not care who reads them. I want to be able to encrypt certain information and use it as a product-key for my software. I only care that I am the only one who can generate these. I would like to include my public key in my software to decrypt/read the signature of the key. I do not care who can read the data in the key, I only care that I am the only verifiable one who can generate them.</p>
<p>Is signing useful in this scenario?</p>
http://stackoverflow.com/questions/1829879/debugging-signature-verification-failure0Debugging Signature Verification failureWade Williams2009-12-02T00:16:39Z2009-12-02T07:14:19Z
<p>Using Java 1.4.2 with unlimited jurisdiction policy files installed.</p>
<p>I have a class that has been successfully signing and verifying. However, now I've changed the keys and suddenly verification is failing.</p>
<p>Keys were generated with:</p>
<pre><code>openssl genrsa -aes256 -out production_private.pem 2048
openssl pkcs8 -topk8 -nocrypt -in production_private.pem -outform der -out production_private.der
openssl rsa -in production_private.pem -pubout -outform DER -out production_public.der
</code></pre>
<p>I did do a verification using the PEM keys and openssl using:</p>
<pre><code>openssl dgst -sha1 -sign production_private.pem -out test.txt.sha1 test.txt
Enter pass phrase for production_private.pem:
openssl dgst -sha1 -verify production_public.pem -signature test.txt.sha1 test.txt
Verified OK
</code></pre>
<p>But it does not appear you can do that using DER keys.</p>
<p>No errors are thrown. Signature.verify just returns false. Since it works with one set of keys and not another, my assumption is it must be a key problem of some kind. </p>
<p>Any additional thoughts on how I might verify that the keypair is correct? I don't want to kill myself looking for coding errors just to find out that the keys were the source of the problem.</p>
<p>I am happy to share source upon request - I just don't want to muddy the issue until necessary.</p>
http://stackoverflow.com/questions/1824579/sql-server-encryption-using-self-signed-ssl-certificate-querying-from-asp-net-30SQL Server encryption using self signed SSL certificate. Querying from ASP.NET 3.5.nailitdown2009-12-01T07:35:05Z2009-12-02T05:00:33Z
<p>I've created a self-signed cert for testing encryption between my web application and the SQL Server.</p>
<p>When attempting to query the database using "Encrypt=Yes;" in the connection string, I receive the following message:</p>
<blockquote>
<p>A connection was successfully established with the server, but then an error occurred during the pre-login handshake. (provider: SSL Provider, error: 0 - The certificate chain was issued by an authority that is not trusted.) </p>
</blockquote>
<p><strong>Background</strong><br>
I received an identical message when first attempting an encrypted connection from management studio. This was resolved by installing the self-signed cert into my Trusted Certificate Authorities.</p>
<p><strong>Question</strong><br>
Is there a way I can get ASP.NET to trust the certificate the same way my user account does?</p>