active questions tagged cryptography - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T14:02:26Z http://stackoverflow.com/feeds/tag/cryptography http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1832494/what-is-this-string -3 What is this string? [closed] mothorool 2009-12-02T12:02:04Z 2009-12-02T12:46:03Z <p><code>4b17a190bce4ea32236b98dd</code> - I have found something like this. I see that it is too short (24 charsets) for md2, md3 or md5. What can it be? It is possible that it can be descramble by using <code>29711223</code> or <code>30138470</code> or both of this keys. What do you think it can be?</p> <p><hr></p> <p>This string is a mix of 2 numbers. When you know this string and first number you can know second number. I'm making program that need 2 numbers from site that is using strings like this. Becouse of saving traffic I need to find regularity: First number and the string stretch to get second number without using web traffic.</p> <p>Examples:</p> <p>string:<code>4b17a032308f1e9fce5928e1</code> firstNumber:<code>30138470</code> secondNumber:<code>29711223</code></p> <p>string:<code>4b17a190bce4ea32236b98dd</code> firstNumber:<code>29711223</code> secondNumber:<code>30138470</code></p> <p>string:<code>4b17b059f4e9096776d395d0</code> firstNumber:<code>29711223</code> secondNumber:<code>16867082</code></p> <p>string:<code>4b17b0dbd19c49eafcb2c3f1</code> firstNumber:<code>29711223</code> secondNumber:<code>15429461</code></p> <p>string:<code>4b17b1550fbcf1512807c041</code> firstNumber:<code>30138470</code> secondNumber:<code>9481137</code></p> <p>string:<code>4b17b1a607adf06c4f19e26d</code> firstNumber:<code>30138470</code> secondNumber:<code>1</code></p> http://stackoverflow.com/questions/1829879/debugging-signature-verification-failure 0 Debugging Signature Verification failure Wade Williams 2009-12-02T00:16:39Z 2009-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/1828908/storing-a-sha512-password-hash-in-database 1 Storing a SHA512 Password Hash in Database stamp 2009-12-01T21:02:44Z 2009-12-01T21:16:43Z <p>In my ASP.NET web app I'm hashing my user passwords with SHA512.</p> <p>Despite much SO'ing and Googling I'm unclear how I should be storing them in the database (SQL2005) - the code below shows the basics of how I'm creating the hash as a string and I'm currently inserting it into the database into a Char(88) column as that seems to be the length created consistently</p> <p>Is holding it as a String the best way to do it, if so will it always be 88 chars on a SHA512 (as I have seen some bizarre stuff on Google)? </p> <pre><code> Dim byteInput As Byte() = Encoding.UTF8.GetBytes(sSalt &amp; sInput) Dim hash As HashAlgorithm = New SHA512Managed() Dim sInsertToDatabase As String = Convert.ToBase64String(hash.ComputeHash(byteInput)) </code></pre> http://stackoverflow.com/questions/1825000/how-to-sign-a-xml-file-with-a-rsa-key-in-net 0 How to sign a xml file with a rsa key in .net ? Nicolas Riou 2009-12-01T09:24:39Z 2009-12-01T11:14:10Z <p>Hello, </p> <p>I am trying to sign a xml file in C# .Net 3.5 with a private RSA Key generated by openSSL. Here is how I proceeded : I converted the RSA key from pem format to xml format using the chilkat framework (www.example-code.com/csharp/cert_usePrivateKeyFromPEM.asp)</p> <p>With my xml key, I am now able to use native .Net Functions, which I prefer. So I used the methods described on msdn </p> <p>So, at the end, my source code looks like this : </p> <pre><code>RSACryptoServiceProvider rsaProvider = new RSACryptoServiceProvider(); //Load the private key from xml file XmlDocument xmlPrivateKey = new XmlDocument(); xmlPrivateKey.Load("PrivateKey.xml"); rsaProvider.FromXmlString(xmlPrivateKey.InnerXml); // Create a SignedXml object. SignedXml signedXml = new SignedXml(Doc); // Add the key to the SignedXml document. signedXml.SigningKey = Key; // Create a reference to be signed. Reference reference = new Reference(); reference.Uri = ""; // Add an enveloped transformation to the reference. XmlDsigEnvelopedSignatureTransform env = new XmlDsigEnvelopedSignatureTransform(); reference.AddTransform(env); // Add the reference to the SignedXml object. signedXml.AddReference(reference); // Compute the signature. signedXml.ComputeSignature(); // Get the XML representation of the signature and save // it to an XmlElement object. XmlElement xmlDigitalSignature = signedXml.GetXml(); // Append the element to the XML document. Doc.DocumentElement.AppendChild(Doc.ImportNode(xmlDigitalSignature, true)); </code></pre> <p>The Signed Xml I get with this function looks OK, I have the xml element at the end of the file, like it is supposed to be : </p> <pre><code>&lt;Signature xmlns="http://www.w3.org/2000/09/xmldsig#"&gt; &lt;SignedInfo&gt; &lt;CanonicalizationMethod Algorithm="http://www.w3.org/TR/2001/REC-xml-c14n-20010315" /&gt; &lt;SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha1" /&gt; &lt;Reference URI=""&gt; &lt;Transforms&gt; &lt;Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /&gt; &lt;/Transforms&gt; &lt;DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" /&gt; &lt;DigestValue&gt;qoGPSbe4oR9e2XKN6MzP+7XlXYI=&lt;/DigestValue&gt; &lt;/Reference&gt; &lt;/SignedInfo&gt; &lt;SignatureValue&gt;iPQ6IET400CXfchWJcP22p2gK6RpEc9mkSgfoA94fL5UM6+AB5+IO6BbjsNt31q6MB8hR6lAIcnjzHzc5SeXvFP8Py2bqHTYJvcSA6KcKCQl1LiDNt12UwWiKpSkus2p0LdAeeZJNy9aDxjC/blUaZEr4uPFt0kGCD7h1NQM2SY=&lt;/SignatureValue&gt; </code></pre> <p></p> <p>The problem is that when I try to verify the signature using xmlsec at this url : <a href="http://www.aleksey.com/xmlsec/xmldsig-verifier.html" rel="nofollow">http://www.aleksey.com/xmlsec/xmldsig-verifier.html</a>, I get a message telling me the signature is invalid.</p> <p>I have been looking for the error in my code for days and I can't find out. I am beginning to think that the convertion from pem to xml file might be the problem but I don't know how to test this. Moreover, I did not find any other way to convert to key or to use directly the pem file in .Net.</p> <p>Did anyone manage to get a valid signature in .net ?</p> http://stackoverflow.com/questions/1821545/simple-caesar-cipher-in-java 0 Simple caesar cipher in java Max Canlas 2009-11-30T18:32:08Z 2009-11-30T18:36:45Z <p>Hey I'm making a simple caesar cipher in Java using the formula [x-> (x+shift-1) mod 127 + 1] I want to have my encrypted text to have the ASCII characters except the control characters(i.e from 32-127). How can I avoid the control characters from 0-31 applying in the encrypted text. Thank you.</p> http://stackoverflow.com/questions/1596723/visual-basic-cryptography-question 1 Visual Basic Cryptography Question Glenn Sullivan 2009-10-20T19:13:10Z 2009-11-30T15:59:45Z <p>I am trying to mimic the results of some C code that uses the OpenSSL library using the system.security.crytography library in the .net 3.5 world, and I can't seem to get it right. I need some help... part of the issue is my understanding of crytography in general.</p> <p>Here's what is supposed to happen:</p> <ol> <li>I send a request for authentication to a device.</li> <li>It returns a challenge digest, which I then need to sign with a known key and return</li> <li>The device returns a "success" or "Fail" message.</li> </ol> <p>I have the following code snippet that I am trying to "copy":</p> <pre><code> //Seed the PRNG //Cheating here - the PRNG will be seeded when we create a key pair //The key pair is discarded only doing this to seed the PRNG. DSA *temp_dsa = DSA_new(); if(!temp_dsa) { printf("Error: The client had an error with the DSA API\n"); exit(0); } unsigned char seed[20] = "Our Super Secret Key"; temp_dsa = DSA_generate_parameters(128, seed, sizeof(seed), NULL, NULL, NULL, NULL); DSA_free(temp_dsa); //A pointer to the private key. p = (unsigned char *)&amp;priv_key; //Create and allocate a DSA structure from the private key. DSA *priv_dsa = NULL; priv_dsa = d2i_DSAPrivateKey(NULL, &amp;p, sizeof(priv_key)); if(!priv_dsa) { printf("Error: The client had an error with the DSA API\n"); exit(0); } //Allocate memory for the to be computed signature. sigret = OPENSSL_malloc(DSA_size(priv_dsa)); //Sign the challenge digest recieved from the ISC. retval = DSA_sign(0, pResp-&gt;data, pResp-&gt;data_length, sigret, &amp;siglen, priv_dsa); </code></pre> <p>A few more bits of information:</p> <ol> <li><p>priv_key is a 252 element character array of hex characters that is included.</p></li> <li><p>The end result is a 512 (or less) array of characters to send back for validation to the device.</p></li> </ol> <p>Rasmus asked to see the key array. Here it is:</p> <pre><code>unsigned char priv_key[] = {0x30, 0x81, 0xf9, 0x02, 0x01, 0x00, 0x02, 0x41, 0x00, 0xfe, 0xca, 0x97, 0x55, 0x1f, 0xc0, 0xb7, 0x1f, 0xad, 0xf0, 0x93, 0xec, 0x4b, 0x31, 0x94, 0x78, 0x86, 0x82, 0x1b, 0xab, 0xc4, 0x9e, 0x5c, 0x40, 0xd9, 0x89, 0x7d, 0xde, 0x43, 0x38, 0x06, 0x4f, 0x1b, 0x2b, 0xef, 0x5c, 0xb7, 0xff, 0x21, 0xb1, 0x11, 0xe6, 0x9a, 0x81, 0x9a, 0x2b, 0xef, 0x3a, 0xbb, 0x5c, 0xea, 0x76, 0xae, 0x3a, 0x8b, 0x92, 0xd2, 0x7c, 0xf1, 0x89, 0x8e, 0x4d, 0x3f, 0x0d, 0x02, 0x15, 0x00, 0x88, 0x16, 0x1b, 0xf5, 0xda, 0x43, 0xee, 0x4b, 0x58, 0xbb, 0x93, 0xea, 0x4e, 0x2b, 0xda, 0xb9, 0x17, 0xd1, 0xff, 0x21, 0x02, 0x41, 0x00, 0xf6, 0xbb, 0x45, 0xea, 0xda, 0x72, 0x39, 0x4f, 0xc1, 0xdd, 0x02, 0xb4, 0xf3, 0xaa, 0xe5, 0xe2, 0x76, 0xc7, 0xdc, 0x34, 0xb2, 0x0a, 0xd8, 0x69, 0x63, 0xc3, 0x40, 0x2c, 0x58, 0xea, 0xa6, 0xbd, 0x24, 0x8b, 0x6b, 0xaa, 0x4b, 0x41, 0xfc, 0x5f, 0x21, 0x02, 0x3c, 0x27, 0xa9, 0xc7, 0x7a, 0xc8, 0x59, 0xcd, 0x5b, 0xdd, 0x6c, 0x44, 0x48, 0x86, 0xd1, 0x34, 0x46, 0xb0, 0x89, 0x55, 0x50, 0x87, 0x02, 0x41, 0x00, 0x80, 0x29, 0xc6, 0x4a, 0x08, 0x3e, 0x30, 0x54, 0x71, 0x9b, 0x95, 0x49, 0x55, 0x17, 0x70, 0xc7, 0x96, 0x65, 0xc8, 0xc2, 0xe2, 0x8a, 0xe0, 0x5d, 0x9f, 0xe4, 0xb2, 0x1f, 0x20, 0x83, 0x70, 0xbc, 0x88, 0x36, 0x03, 0x29, 0x59, 0xcd, 0xc7, 0xcd, 0xd9, 0x4a, 0xa8, 0x65, 0x24, 0x6a, 0x77, 0x8a, 0x10, 0x88, 0x0d, 0x2f, 0x15, 0x4b, 0xbe, 0xba, 0x13, 0x23, 0xa1, 0x73, 0xa3, 0x04, 0x37, 0xc9, 0x02, 0x14, 0x06, 0x8e, 0xc1, 0x41, 0x40, 0xf1, 0xf6, 0xe1, 0xfa, 0xfb, 0x64, 0x28, 0x02, 0x15, 0xce, 0x47, 0xaa, 0xce, 0x6e, 0xfe}; </code></pre> <p>Can anyone help me translate this code to it's VB.net crypto equivalent?</p> <p>TIA,</p> <p>Glenn</p> http://stackoverflow.com/questions/1005941/secure-data-on-server 2 Secure data on server Schnuffus T. Firefly 2009-06-17T09:02:45Z 2009-11-28T16:34:39Z <p>Hi,</p> <p>I am setting up a server where some important code will reside. I want to make sure the code is unreachable, in case the HD is stolen. Well I know you never can be sure, but reasonably secure. Which method could I use? How to i.e. mount a crypted filesystem at bootup without human interaction?</p> <p>Thank you very much for your help.</p> http://stackoverflow.com/questions/1141542/encryption-with-python 0 encryption with python ajay 2009-07-17T05:39:01Z 2009-11-28T15:00:03Z <p>if i want to use </p> <pre><code> recip = M2Crypto.RSA.load_pub_key(open('recipient_public_key.pem','rb').read()) </code></pre> <p>than how it will retrieve the key .what the recip will print.</p> <p>i need to get the public key of the recipient from the server(open key server) and for that first i need to store the key on server .</p> http://stackoverflow.com/questions/1798872/importing-a-private-public-exchange-key-pair 0 Importing a private-public exchange key pair Raj 2009-11-25T18:09:29Z 2009-11-26T17:08:03Z <p>Hi</p> <p>I want to export a RSA 1024 private-public exchange key pair from Machine-1 to Machine-2. I am using cryptoAPI in XP.</p> <p>In Machine-1, i generated the key pair. I wrapped a session key which actually encrypts some real data. The key container name is "PAIR1".</p> <p>In Machine-2, i wanted to unwrap the session key with the private key(which i generated in Machine-1). For this purpose, i wanted to export the key pair from Machine-1 to Machine-2.</p> <p>I am aware of security flaws of exporting the persistent keys. </p> <p><strong>What i have tried?</strong></p> <p>I exported the keypair as a PKCS#12 -pfx file from Machine_1. When i imported it to Machine-2, the key container name has changed from "PAIR1" to nothing. My application requires the same container name to pick the right private key in the exchange key pair. Is it possible to change the key container name?</p> <p><strong>Will this work?</strong></p> <p>Wrap the exchange key pair with Machine-2's public key and import it to Machine-2. In this case, do think, the key container name will remain the same or will it change? I feel that this might be the right approach.</p> <p>Please give your comments.</p> <p>Thanks</p> <p><strong>Edited:</strong> The reason i asked this query is because I wrapped a session key with an exchange key pair (public key) and put the wrapped key along with the encrypted data in a medium at the server. This medium will go-around different clients and will come back to the server. At this point, I will be decrypting my data with the unwrapped session key. This unwrapping needs the exchange private key. I am doing this for a demo purpose and I cannot expect our marketing guys to perform key exchange etc. We wanted to show the client the security aspects and reduce the hassle of setting up things with our marketing guys.</p> <p>Finally i exported the key pair and imported the same where ever i wanted though Ramsus approach is the right way of doing it.</p> http://stackoverflow.com/questions/1793979/registering-multiple-keystores-in-jvm 1 Registering multiple keystores in JVM Raz 2009-11-25T00:46:00Z 2009-11-26T03:20:14Z <p>Hello,</p> <p>I have two applications running in the same java virtual machine, and both use different keystores and truststores.</p> <p>A viable option would be use a single keystore and import all the other ones into the shared keystore (e.g. keytool -import), but it would really help my requirements if I could use separate keystores for separate applications running in the same jvm.</p> <p>I could set the keystore and truststores to be used as jvm parameters or system properties as follows:</p> <pre><code>java -Djavax.net.ssl.keyStore=serverKeys -Djavax.net.ssl.keyStorePassword=password -Djavax.net.ssl.trustStore=serverTrust -Djavax.net.ssl.trustStorePassword=password SSLApplication </code></pre> <p>or</p> <pre><code>System.setProperty("javax.net.ssl.keyStore","serverKeys") </code></pre> <p>But the problem with this approach is that it specifies the keystore/truststore to be used at a JVM level, thus all applications running in the same JVM gets the same keystore/truststore.</p> <p>I have also tried creating a custom SSLContext and setting it as the default, but it also sets the context for all applications running in the same JVM.</p> <pre><code>SSLContext context = SSLContext.getInstance("SSL"); context.init(kms, tms, null); SSLContext.setDefault(context); </code></pre> <p>I want to be able use different keystores/truststores without modifying individual application codes. </p> <p><strong>A solution that can <em>dynamically register multiple key stores</em> in addition to the default keystore/certs in jre into jvm would be great.</strong></p> <pre><code> The solution will work in this way: - When JVM boots, it loads all the default certs/keystores from jre/certs folder (default java behaviour when no keystores specified). - When App 1 loads it registers its keystores, - then when App 2 loads it registers its keystores... </code></pre> <p>Please let me know your ideas or solutions. Thanks in advance!</p> http://stackoverflow.com/questions/1797986/how-to-read-a-rsa-public-key-from-a-pem-file-or-xml-file 0 how to read a RSA public key from a pem file OR xml file Nicolas Riou 2009-11-25T16:05:52Z 2009-11-25T16:32:19Z <p>Hello,</p> <p>I have a simple thing to do : I want to encryt data using AES algorythm and a key contained in a pem file, like shown on the page : <a href="http://msdn.microsoft.com/en-us/library/sb7w85t6.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/sb7w85t6.aspx</a> </p> <p>In this example, a new encryption key is created every time the function is run. But I need to read this key from either a pem file or an xml file but I can't find a way to do it.</p> <p>Is there a simple way to read a key from a pem file and convert it into a byte array (byte[]) ?</p> <p>I am using C# - .net Framework 3.5 and the key in the file is the RSA public key of our partner.</p> http://stackoverflow.com/questions/1795970/how-does-this-php-nonce-library-work 0 How does this PHP nonce library work? bobo 2009-11-25T10:20:51Z 2009-11-25T10:20:51Z <p>From <a href="http://fullthrottledevelopment.com/php-nonce-library#download" rel="nofollow">http://fullthrottledevelopment.com/php-nonce-library#download</a>, there is a PHP nonce library, but there are a few things that I don't know understand. The first one is that it reminds us to set a value for the <code>FT_NONCE_UNIQUE_KEY</code> but it never uses it in any of its functions.</p> <p>The second thing is, when I call the <code>ft_nonce_create_query_string</code> function, wait for a few seconds and then call it again with the same parameters, both calls return the same value. This is strange, I really don't understand how it can make sure for each nonce it generates, the nonce will be valid for the duration specified in the <code>FT_NONCE_DURATION</code>. </p> <p>But if I wait for longer time before the second call, they will return different value. I have pasted the codes <a href="http://codepad.org/cy4VvE2v" rel="nofollow">here</a> so that you can try to run it directly.</p> <p>Why is it like this? How is it supposed to work?</p> <pre><code>&lt;?php /* * Name: FT-NONCE-LIB * Created By: Full Throttle Development, LLC (http://fullthrottledevelopment.com) * Created On: July 2009 * Last Modified On: August 12, 2009 * Last Modified By: Glenn Ansley (glenn@fullthrottledevelopment.com) * Version: 0.2 */ /* Copyright 2009 Full Throttle Development, LLC This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see &lt;http://www.gnu.org/licenses/&gt;. */ define( 'FT_NONCE_UNIQUE_KEY' , '' ); define( 'FT_NONCE_DURATION' , 300 ); // 300 makes link or form good for 5 minutes from time of generation define( 'FT_NONCE_KEY' , '_nonce' ); // This method creates a key / value pair for a url string function ft_nonce_create_query_string( $action = '' , $user = '' ){ return FT_NONCE_KEY."=".ft_nonce_create( $action , $user ); } // This method creates an nonce for a form field function ft_nonce_create_form_input( $action = '' , $user='' ){ echo "&lt;input type='hidden' name='".FT_NONCE_KEY."' value='".ft_nonce_create( $action . $user )."' /&gt;"; } // This method creates an nonce. It should be called by one of the previous two functions. function ft_nonce_create( $action = '' , $user='' ){ return substr( ft_nonce_generate_hash( $action . $user ), -12, 10); } // This method validates an nonce function ft_nonce_is_valid( $nonce , $action = '' , $user='' ){ // Nonce generated 0-12 hours ago if ( substr(ft_nonce_generate_hash( $action . $user ), -12, 10) == $nonce ){ return true; } return false; } // This method generates the nonce timestamp function ft_nonce_generate_hash( $action='' , $user='' ){ $i = ceil( time() / ( FT_NONCE_DURATION / 2 ) ); return md5( $i . $action . $user . $action ); } if ( FT_NONCE_UNIQUE_KEY == '' ){ die( 'You must enter a unique key on line 2 of ft_nonce_lib.php to use this library.'); } ?&gt; </code></pre> http://stackoverflow.com/questions/1793137/aes-256-in-ctr-mode 0 AES 256 in CTR mode Arabcoder 2009-11-24T21:45:43Z 2009-11-24T22:24:24Z <p>ctr mode makes it possible to use a block cipher as a stream cipher but how strong will be the encryption in this mode ?</p> http://stackoverflow.com/questions/1783279/dealing-with-generator-matrices 1 Dealing with Generator Matrices AlexT 2009-11-23T14:00:39Z 2009-11-24T18:52:47Z <p>I am currently working on some Java code using the book <a href="http://rads.stackoverflow.com/amzn/click/013283796X" rel="nofollow">Error Control Coding: Fundamentals and Applications</a> and can encode well. However, I am using pre-determined values set in the book to get my examples to work, where instead I would like to be able to use the matrices themselves. I am struggling to understand the concepts behind the Generator Matrix, mostly how they are derived from a Vandermonde Matrix. Here are some examples:</p> <p>The generator matrix for a 10-ary Hamming(10,8)</p> <pre><code>1 0 0 0 0 0 0 0 2 8 0 1 0 0 0 0 0 0 3 7 0 0 1 0 0 0 0 0 4 6 0 0 0 1 0 0 0 0 5 5 0 0 0 0 1 0 0 0 6 4 0 0 0 0 0 1 0 0 7 3 0 0 0 0 0 0 1 0 8 2 0 0 0 0 0 0 0 1 9 1 </code></pre> <p>The Vandermonde matrix I have created using my pre-built Matrix class:</p> <pre><code>1 1 1 1 1 1 1 1 1 1 1 2 3 4 5 6 7 8 9 10 1 4 9 5 3 3 5 9 4 1 1 8 5 9 4 7 2 6 3 10 </code></pre> <p>The generator matrix for BCH(10,6), derived from Vandermonde matrix</p> <pre><code>1 0 0 0 0 0 4 7 9 1 0 1 0 0 0 0 10 8 1 2 0 0 1 0 0 0 9 7 7 9 0 0 0 1 0 0 2 1 8 10 0 0 0 0 1 0 1 9 7 4 0 0 0 0 0 1 7 6 7 1 </code></pre> <p>The question I have is how is the above matrix created using an identity matrix and the vandermonde matrix? How would I do something like this in basic pseudocode? I have written a Matrix class allowing me to perform arithmetic functions between matrices (e.g. C = A*B) so it's just the theory behind how the matrices are created and how the contents of the matrix are manipulated to turn the vandermonde matrix into the generator matrix for a BCH(10,6) code that's troubling me.</p> <p>Thanks for your attention.</p> http://stackoverflow.com/questions/1786152/generate-all-combinations-of-a-char-array-inside-of-a-cuda-device-kernel 0 Generate all combinations of a char array inside of a CUDA __device__ kernel sead 2009-11-23T21:33:49Z 2009-11-24T14:35:36Z <p>Hi,</p> <p>I need help please. I started to program a common brute forcer / password guesser with CUDA (2.3 / 3.0beta). I tried different ways to generate all possible plain text "candidates" of a defined ASCII char set. </p> <p>In this sample code I want to generate all 74^4 possible combinations (and just output the result back to host/stdout).</p> <pre><code>$ ./combinations Total number of combinations : 29986576 Maximum output length : 4 ASCII charset length : 74 ASCII charset : 0x30 - 0x7a "0123456789:;&lt;=&gt;?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxy" </code></pre> <p>CUDA code (compiled with 2.3 and 3.0b - sm_10) - combinaions.cu:</p> <pre><code>#include &lt;stdio.h&gt; #include &lt;cuda.h&gt; __device__ uchar4 charset_global = {0x30, 0x30, 0x30, 0x30}; __shared__ __device__ uchar4 charset[128]; __global__ void combo_kernel(uchar4 * result_d, unsigned int N) { int totalThreads = blockDim.x * gridDim.x ; int tasksPerThread = (N % totalThreads) == 0 ? N / totalThreads : N/totalThreads + 1; int myThreadIdx = blockIdx.x * blockDim.x + threadIdx.x ; int endIdx = myThreadIdx + totalThreads * tasksPerThread ; if( endIdx &gt; N) endIdx = N; const unsigned int m = 74 + 0x30; for(int idx = myThreadIdx ; idx &lt; endIdx ; idx += totalThreads) { charset[threadIdx.x].x = charset_global.x; charset[threadIdx.x].y = charset_global.y; charset[threadIdx.x].z = charset_global.z; charset[threadIdx.x].w = charset_global.w; __threadfence(); if(charset[threadIdx.x].x &lt; m) { charset[threadIdx.x].x++; } else if(charset[threadIdx.x].y &lt; m) { charset[threadIdx.x].x = 0x30; // = 0 charset[threadIdx.x].y++; } else if(charset[threadIdx.x].z &lt; m) { charset[threadIdx.x].y = 0x30; // = 0 charset[threadIdx.x].z++; } else if(charset[threadIdx.x].w &lt; m) { charset[threadIdx.x].z = 0x30; charset[threadIdx.x].w++;; // = 0 } charset_global.x = charset[threadIdx.x].x; charset_global.y = charset[threadIdx.x].y; charset_global.z = charset[threadIdx.x].z; charset_global.w = charset[threadIdx.x].w; result_d[idx].x = charset_global.x; result_d[idx].y = charset_global.y; result_d[idx].z = charset_global.z; result_d[idx].w = charset_global.w; } } #define BLOCKS 65535 #define THREADS 128 int main(int argc, char **argv) { const int ascii_chars = 74; const int max_len = 4; const unsigned int N = pow((float)ascii_chars, max_len); size_t size = N * sizeof(uchar4); uchar4 *result_d, *result_h; result_h = (uchar4 *)malloc(size ); cudaMalloc((void **)&amp;result_d, size ); cudaMemset(result_d, 0, size); printf("Total number of combinations\t: %d\n\n", N); printf("Maximum output length\t: %d\n", max_len); printf("ASCII charset length\t: %d\n\n", ascii_chars); printf("ASCII charset\t: 0x30 - 0x%02x\n ", 0x30 + ascii_chars); for(int i=0; i &lt; ascii_chars; i++) printf("%c",i + 0x30); printf("\n\n"); combo_kernel &lt;&lt;&lt; BLOCKS, THREADS &gt;&gt;&gt; (result_d, N); cudaThreadSynchronize(); printf("CUDA kernel done\n"); printf("hit key to continue...\n"); getchar(); cudaMemcpy(result_h, result_d, size, cudaMemcpyDeviceToHost); for (unsigned int i=0; i&lt;N; i++) printf("result[%06u]\t%c%c%c%c\n",i, result_h[i].x, result_h[i].y, result_h[i].z, result_h[i].w); free(result_h); cudaFree(result_d); } </code></pre> <p>The code should compile without any problems but the output is not what i expected.</p> <p>On emulation mode:</p> <pre><code>CUDA kernel done hit key to continue... result[000000] 1000 ... result[000128] 5000 </code></pre> <p>On release mode:</p> <pre><code>CUDA kernel done hit key to continue... result[000000] 1000 ... result[012288] 5000 </code></pre> <p>I also used __threadfence() and or __syncthreads() on different lines of the code also without success...</p> <p>ps. if possible I want to generate everything inside of the kernel function . I also tried "pre" generating of possible plain text candidates inside <strong>host</strong> main function and memcpy to <strong>device</strong>, this works only with a very limited charset size (because of limited device memory).</p> <ul> <li><p>any idea about the output, why the repeating (even with __threadfence() or __syncthreads()) ?</p></li> <li><p>any other method to generate plain text (candidates) inside CUDA kernel fast :-) (~75^8) ?</p></li> </ul> <p>thanks a million</p> <p>greets jan </p> http://stackoverflow.com/questions/1789709/is-it-possible-to-use-aes-with-an-iv-in-ecb-mode 1 Is it possible to use AES with an IV in ECB mode? bobo 2009-11-24T12:16:08Z 2009-11-24T13:30:46Z <p>From <a href="http://php.net/manual/en/function.mcrypt-encrypt.php" rel="nofollow">http://php.net/manual/en/function.mcrypt-encrypt.php</a>, I saw the following codes using AES with an IV in ECB mode,</p> <pre><code>&lt;?php $iv_size = mcrypt_get_iv_size(MCRYPT_RIJNDAEL_256, MCRYPT_MODE_ECB); $iv = mcrypt_create_iv($iv_size, MCRYPT_RAND); $key = "This is a very secret key"; $text = "Meet me at 11 o'clock behind the monument."; echo strlen($text) . "\n"; $crypttext = mcrypt_encrypt(MCRYPT_RIJNDAEL_256, $key, $text, MCRYPT_MODE_ECB, $iv); echo strlen($crypttext) . "\n"; ?&gt; </code></pre> <p>But from wiki <a href="http://en.wikipedia.org/wiki/Block%5Fcipher%5Fmodes%5Fof%5Foperation" rel="nofollow">http://en.wikipedia.org/wiki/Block_cipher_modes_of_operation</a>, it says ECB does not need an IV. Is it really possible to use AES with an IV in ECB mode? In this ECB mode, will the additional IV provide a little bit more security comparing to when it is not used?</p> http://stackoverflow.com/questions/1785555/how-should-i-generate-an-initialization-vector 1 How should I generate an initialization vector? Wade Williams 2009-11-23T19:57:58Z 2009-11-24T06:46:27Z <p>I'm sure there's not one answer to this question, but just trying to find out a general approach.</p> <p>Using Java 1.4.2, I need to generate a key and IV for use in a symmetric algorithm. These values will be pre-shared with the recipient through a secure channel.</p> <p>The key I can generate with KeyGenerator.keyGenerate(). But unless I'm missing it, there's no function for generating a random IV.</p> <p>Should I do something completely arbitrary like pull 16 random bytes from memory? Or is there a preferred way of generating sufficiently random initialization vectors?</p> <p>Any guidance appreciated.</p> http://stackoverflow.com/questions/1784900/copp-validating-the-certificate-chain 0 COPP: Validating the Certificate Chain Pawel Kolodziej 2009-11-23T18:02:35Z 2009-11-23T18:02:35Z <p>I have to verify certificate chain of COPP driver. This chain is returned from COPP deriver as xml document like this :</p> <p>...</p> <p>Procedure of verification is described in <a href="http://msdn.microsoft.com/en-us/library/dd407310%28VS.85%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/dd407310%28VS.85%29.aspx</a></p> <p>I don't want to reinvent wheel. I'm pretty sure it should be implemented by some standard windows API. Is it ?</p> http://stackoverflow.com/questions/1783077/digitially-sign-key-with-lockbox 1 Digitially Sign Key with Lockbox M Schenkel 2009-11-23T13:17:26Z 2009-11-23T15:22:40Z <p>I have to digitally sign a string using the SHA-1 algorithm with RSA using PKCS#1 padding. I have downloaded Turbo Power Lockbox to use with the Delphi programming language.</p> <p>In a <a href="http://stackoverflow.com/questions/1780782/reading-private-key-in-pem-format-with-lockbox">previous question</a> I have learned how to convert private key from PEM format to DER format (which if I understand correctly is ASN.1 format and is used with Lockbox). </p> <p>I am getting a "division by zero" error in the following code on the SignString:</p> <pre><code>uses LbRSA,lbAsym,LbDSA; procedure TForm1.Button1Click(sender: TObject); var mPrivateKey: TLbRSAKey; mLbRSASSA : TLbRSASSA; begin mPrivateKey := TLbRSAKey.Create(aks1024); mPrivateKey.LoadFromFile('C:\temp\myrsakey.der'); mLbRSASSA := TLbRSASSA.create(nil); mLbRSASSA.HashMethod := hmSHA1; mLbRSASSA.PrivateKey.Assign(mprivateKey); mLbRSASSA.SignString('sign this message'); </code></pre> <p>Here is how I generated c:\temp\myrsakey.der:</p> <blockquote> <p>c:\openssl\bin\openssl req -x509 -nodes -days 365 -newkey rsa:1024 -sha1 -subj "/C=US/ST=CA/L=Mountain View/CN=www.mycompany.com" -keyout myrsakey.pem -out c:\temp\myrsacert.pem</p> </blockquote> <p>Use following to convert from PEM to DER:</p> <blockquote> <p>c:\openssl\bin\openssl rsa -inform PEM -outform DER -in c:\temp\myrsakey.pem -out c:\temp\myrsakey.der</p> </blockquote> <p>Any ideas why I am getting the division by zero error?</p> http://stackoverflow.com/questions/1782528/illegalkeysize-exception 0 Illegalkeysize exception Azhar 2009-11-23T11:20:51Z 2009-11-23T13:35:44Z <p>I am using the <a href="http://www.bouncycastle.org/" rel="nofollow">Bouncy Castle</a> Java cryptographic algorithm implementation. I am getting an <code>IllegalKeySizeException</code>. To overcome this I have even changed my java security jars (<code>local_policy.jar</code> and <code>US_Export_policy.jar</code>), but I am still getting the same problem.</p> <p>Can anyone suggest a solution for this (I am using centos operating system)?</p> http://stackoverflow.com/questions/1780782/reading-private-key-in-pem-format-with-lockbox 2 Reading Private Key in PEM format with LockBox M Schenkel 2009-11-23T02:11:33Z 2009-11-23T06:41:27Z <p>I have to digitally sign a string using the SHA-1 algorithm with RSA using PKCS#1 padding. I have downloaded Turbo Power Lockbox.</p> <p>The private key I have is in PEM format and was created using openssl:</p> <blockquote> <p>openssl req -x509 -nodes -days 365 -newkey rsa:1024 -sha1 -subj "/C=US/ST=CA/L=Mountain View/CN=www.mycompany.com" -keyout myrsakey.pem -out c:\temp\myrsacert.pem</p> </blockquote> <p>Here is what it looks like:</p> <blockquote> <p>-----BEGIN RSA PRIVATE KEY----- MIICXAIBAAKBgQDFzvqdAEQn9MrSLTNua5SOxshV/8jQIf3qpfunBXa9SVdm4NJw lY7iYpwivw7EdMlBe4FmezN9LGwyIokcUSt4KUdWmA8l4Lm5rcuDzzfmlVWP7y+j 0GKG2XCp2JwHpW4Q5WiMgcAnCMD/gbDustfz3utxQhLNBdWp2MlrEH2/rQIDAQAB AoGAUMZmnHohWtehgxYmLG8N6QfPgx7CWAupbop9KwUWKdGrOT2RcZwBDv0JmT6/ vwWZsX3Hp5ujuPfM7uQfbUrQHrcruUg/fPY8YXcWgNfOytGpaN/XKxfy2g2Cp8mE 4yoDR2QW8jo25ZH1q1cJ3jMyX9xlXaSZm7qtaoiDydE6roECQQDxqtP2tMEZ2FmQ 2o4T5Zv7P4II2PrLq+9IP0ASCZ2VzLxm2Pk6kxjnPjZ2oHG8pUQHvMz0m8Br3BY8 X1BpXrj9AkEA0YpBH7qm/nbG6YjxKAL3PbxXUJ06T/ByLjfstfCrT3LxDeklfWJb n/V8ahRcKPLajdbKAuWvJA5NvjeJPi34cQJAZ+vD1nUIDKsiaM3zBs9X8gTvUAqu XmMDNJguXxNPdplh8wAevHeA3/+6v+xivHJ8/K7Nm+pWJouv7Co4k/ctqQJASV4y TUzKmgC2xyCG5+6Z6Ujf/b7/ouva3un//PiG0yu40ZkX4l4lHM4UwQPd/QyDj/Rs CTWo7GQBvp+tc1MfUQJBALnQnNOIIkvwIK+1J6iLZgh7GurbCPMrH8nSn8SxkfBe qq5JWo31LQAUNDW5ntG0qHZQpx6zm2MzIlt2NgOLf4s= -----END RSA PRIVATE KEY-----</p> </blockquote> <p>If I am not mistaken, the component I want to use is TLbRSAKey. So I have tried to create key object and read it from file:</p> <pre><code>var mPrivateKey: TLbRSAKey; begin mPrivateKey := TLbRSAKey.Create(aks1024); mPrivateKey.LoadFromFile('C:\temp\myrsakey.pem'); </code></pre> <p>On the LoadFromFile I get a "Invalid RSA Key" error. What am I doing wrong? Does Lockbox support keys in PEM format? None of the examples illustrate; everything seems to be in ASN format</p> http://stackoverflow.com/questions/1765278/protecting-rsacryptoserviceprovider-private-key-with-password-or-otherwise 0 Protecting RSACryptoServiceProvider private key with password or otherwise stovroz 2009-11-19T17:59:51Z 2009-11-22T20:38:25Z <p>I want to encrypt some server data using .NET's RSACryptoServiceProvider and decrypt it when someone enters a key/password via a web page. What are my options for protecting, or ideally not even storing, the private key on the server, whilst avoiding having the user supply it all each time?</p> <ul> <li>Encrypt the private key using a symmetric system and have the user supply the password for that? </li> <li>Store most of the private key on the server but have the user supply N characters of it?</li> <li>Store it in the server's MachineKeyStore and use a secret KeyContainerName as a password?</li> <li>Use CspParameters.KeyPassword in some way which works over the web?</li> <li>Something else?</li> </ul> http://stackoverflow.com/questions/1741375/window-cryptoapi-can-i-choose-the-public-exponent-when-generating-an-rsa-key-pai 0 Window CryptoAPI: Can I choose the public exponent when generating an RSA key pair? Rasmus Faber 2009-11-16T10:42:12Z 2009-11-20T16:10:41Z <p>Using the Windows CryptoAPI, is there any way to specify which public exponent to use when generating a new key-pair (ie. 3 instead of 65537)?</p> <p>As a bonus question: how would I access this functionality using .NET <code>RSACryptoServiceProvider</code>?</p> <p><strong>EDIT:</strong> My guess is that the answer is "No", but I would like to get confirmation.</p> http://stackoverflow.com/questions/1633549/how-to-store-sensitive-data-e-g-passwords-api-keys-in-cocoa-app 2 How to store sensitive data (e.g. passwords, API keys) in Cocoa app? piobyz 2009-10-27T20:46:58Z 2009-11-19T21:07:11Z <p>I need to provide some passwords, API keys and similar sensitive data in my code. What are best practices in that regard? Hard-coded? SQlite? Some cryptographic framework?</p> http://stackoverflow.com/questions/827989/does-the-security-of-skein-as-a-hash-imply-the-security-of-threefish-as-a-block-c 1 Does the security of Skein as a hash imply the security of Threefish as a block cipher? bdonlan 2009-05-06T04:17:12Z 2009-11-19T21:06:12Z <p>The <a href="http://www.schneier.com/skein.html" rel="nofollow">Skein hash</a> proposed for SHA-3 boasts some impressive speed results, which I suspect would be applicable for the Threefish block cipher at its heart - but, if Skein is approved for SHA-3, would this imply that Threefish is considered secure as well? That is, would any vulnerability in Threefish imply a vulnerability in SHA-3? (and thus, a lack of known issues and a general trust in SHA-3 imply the same for Threefish)</p> http://stackoverflow.com/questions/1152555/how-to-encrypt-decrypt-a-text-using-openssl-ecc 0 How to encrypt/decrypt a text using openssl ECC? Sandeep 2009-07-20T09:21:49Z 2009-11-19T17:29:24Z <p>Where can I get a sample code or documentation on using the OpenSSL ECC support to encrypt or decrypt a text string ? I am able to generate ECC private/public key using openSSL API's, but I don't know how to encrypt a plain text using that key !</p> http://stackoverflow.com/questions/1761155/whats-happening-in-the-line-of-code 2 whats happening in the line of code rover12 2009-11-19T05:48:57Z 2009-11-19T06:13:10Z <p>whats happening in this line of code ?</p> <pre><code>SecretKeyFactory factory = SecretKeyFactory.getInstance("PBKDF2WithHmacSHA1"); </code></pre> <p>i specially dont understand getInstance("PBKDF2WithHmacSHA1") part</p> http://stackoverflow.com/questions/1756004/can-two-different-strings-generate-the-same-md5-hash-code 3 Can two different strings generate the same MD5 hash code? Lieven Cardoen 2009-11-18T13:36:19Z 2009-11-18T23:45:03Z <p>For each of our binary assets we generate a MD5 hash. This is used to check whether a certain binary asset is already in our application. But is it possible that two different binary assets generate the same MD5 hast. So is it possible that two different strings generate the same MD5 hash?</p> http://stackoverflow.com/questions/188043/security-crytography-stupid-challege-response-protocol 1 Security, crytography: Stupid Challege - Response protocol?? pabloh84 2008-10-09T16:23:09Z 2009-11-18T18:07:12Z <p>Ok guys just a small game:</p> <p>I have some specifications for a project. At some point they ask for the following to encrypt a password over the net, saying that it is a challenge response protocol:</p> <pre> CLIENT ----------------------------- SERVER (1)ask for challenge --------------&gt; (2) &lt;---------------------------- send SHA1 taken from the time (this is the challenge) (3) make SHA1 xor PASSWORD --------&gt; if it's equal to SHA1 xor stored password (4) &lt;---------------------------- Grant access </pre> <p>For those who don't know it SHA stands for Secure Hashing Algorithm, a standard algorithm for cryptography.</p> <p>I hope it's clear. Question is: If I sniff packets 2 and 3 (the "challenge" and the "challenge xor password", I do have the actual password just with another xor between them both!?!? There is other way to implement this kind of protocol?? </p> http://stackoverflow.com/questions/1403253/derivation-of-iv-for-cbc-chaining-mode 0 Derivation of IV for CBC Chaining Mode ramown 2009-09-10T03:46:53Z 2009-11-18T10:03:02Z <p>Is there any secure way of deriving the value of IV for use in CBC mode (e.g. 3DES CBC) aside from randomizing the IV?</p>