User Rasmus Faber - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T17:15:16Z http://stackoverflow.com/feeds/user/5542 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1833261/qt-expand-to-home-directory 0 Qt: Expand ~ to home-directory Rasmus Faber 2009-12-02T14:32:42Z 2009-12-03T13:28:34Z <p>Does Qt have any platform-independent functionality to accept paths like "~/myfile"?</p> <p>I know about <a href="http://opengroup.org/onlinepubs/007908799/xsh/wordexp.html" rel="nofollow">wordexp</a>, but it would be nice with a platform-independent wrapper.</p> <p><strong>Edit:</strong></p> <p>Thank you all for the responses. "~/myfile" was just an example. What I am looking for is functionality to handle file-paths as you would be able to write on the command-line. So on Linux, it should accept "~/myfile", "~otheruser/hisfile", "$VAR/file" etc. On Windows, it should accept "%HOMEDIR%\myfile" etc.</p> http://stackoverflow.com/questions/1798872/importing-a-private-public-exchange-key-pair/1802188#1802188 1 Answer by Rasmus Faber for Importing a private-public exchange key pair Rasmus Faber 2009-11-26T08:00:17Z 2009-11-26T14:22:20Z <p>The <em>right</em> way to do this, is to generate the keypair on machine-2, export the public key only, transport this to machine-1 and use it to wrap the session key.</p> <p>How did you export and import the PKCS#12-file? Windows will usually add the key container name as a proprietary extension inside the PKCS#12-file, so it should have been transported together with the rest of the key pair.</p> http://stackoverflow.com/questions/1773179/what-are-those-garbage-16-bytes-at-the-beginning-of-an-unencrypted-encrypteddat/1776151#1776151 2 Answer by Rasmus Faber for What are those "garbage" 16 bytes at the beginning of an unencrypted EncryptedData tag from an encrypted ws-security SOAP message? (WCF) Rasmus Faber 2009-11-21T17:39:49Z 2009-11-21T17:39:49Z <p>When using Triple-DES and AES the cipher-text is prefixed by the IV. So when decrypting, you should use the first 16 bytes of the value as the IV and then perform the AES-CBC decryption on the remaining bytes. My guess is that you have forgotten this and thus are decrypting the IV also (which will yield garbage).</p> 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/1765278/protecting-rsacryptoserviceprovider-private-key-with-password-or-otherwise/1766420#1766420 0 Answer by Rasmus Faber for Protecting RSACryptoServiceProvider private key with password or otherwise Rasmus Faber 2009-11-19T20:50:11Z 2009-11-19T20:50:11Z <p>Your best option will be to store the private keys in a Hardware Security Module protected by the password with the HSM ensuring that the key is not usable without the password.</p> <p>If an HSM is not an option (they are quite expensive after all), you should derive a symmetric key using PBKDF2 or a similar strong system an encrypt the private key with that. Using the CSP's password-protection is also an option, but it is somewhat less transparent exactly what is going on, and you have to take care to avoid having the key accesible to domain-administrators etc.</p> http://stackoverflow.com/questions/1761723/bytearray-in-c-is-unable-to-show-all-contents-in-textbox/1761770#1761770 1 Answer by Rasmus Faber for ByteArray In C# Is Unable To Show All Contents In TextBox Rasmus Faber 2009-11-19T08:34:43Z 2009-11-19T08:34:43Z <p>You cannot convert a PDF to text by just interpreting it as ASCII. You may be lucky enough that some of the text actually is ASCII, but you can also expect some of the non-text contents to be indistinguishable from ASCII.</p> <p>Instead use one of the solutions for parsing PDF. Here is one way using PDFBox and IKVM: <a href="http://naspinski.net/post/ParsingReading-a-PDF-file-with-C-and-AspNet-to-text.aspx" rel="nofollow">Naspinski.net: Parsing/Reading a PDF file with C# and Asp.Net to text</a></p> http://stackoverflow.com/questions/1741993/qmake-test-for-current-spec 0 qmake: Test for current spec. Rasmus Faber 2009-11-16T12:47:01Z 2009-11-16T12:47:01Z <p>I would like to detect whether qmake is currently building using MingW (win32-gcc) or Visual Studio (win32-msvc200X).</p> <p>At the moment I am using the following construct:</p> <pre><code>windows{ contains(QMAKE_CC, gcc){ # MingW } contains(QMAKE_CC, cl){ # Visual Studio } } </code></pre> <p>This does not seem particularly robust. Is there a better way?</p> http://stackoverflow.com/questions/1740534/qmake-how-do-i-copy-dll-sos-to-the-output-directory 1 qmake: How do I copy .dll/.so's to the output directory? Rasmus Faber 2009-11-16T07:01:35Z 2009-11-16T08:51:38Z <p>I have a Qt-project that builds a dll/shared-library and another Qt-project that tests the library.</p> <p>Is there any good way to have qmake copy the dll to the output-folder of the test-project?</p> http://stackoverflow.com/questions/1707854/parse-string-to-c-lambda-func/1707954#1707954 1 Answer by Rasmus Faber for Parse string to C# lambda Func Rasmus Faber 2009-11-10T13:26:03Z 2009-11-10T13:26:03Z <p>You might be able to do something with <a href="http://msdn.microsoft.com/en-us/library/microsoft.csharp.csharpcodeprovider.aspx" rel="nofollow">CSharpCodeProvider</a> (wrap the expression with some more code to create a valid class and compile it into an assembly, then load the assembly). </p> <p>I believe that is how <a href="http://www.linqpad.net/" rel="nofollow">LINQPad</a> does it.</p> http://stackoverflow.com/questions/1519291/qt-should-i-use-visual-studio-qt-creator-or-something-else 5 Qt: Should I use Visual Studio, Qt Creator or something else? Rasmus Faber 2009-10-05T10:28:56Z 2009-11-10T12:06:11Z <p>I realize that there have been similar questions, but they seem to have been from when Qt Creator was still in beta, so the answer might have changed since then:</p> <p>We are going to start a project with a small amount of GUI that needs to work on Windows, OS X and Linux. So choosing Qt was a no-brainer, even though we have little experience with Qt.</p> <p>What is currently the best option for IDE?</p> <p>All the developers will be using Windows machines, so the IDE does not need to be cross-platform.</p> <p>We use Visual Studio for most things, but most of us are also comfortable with Eclipse.</p> <p>How are the refactoring tools in Qt Creator? I like Visual Assist X when using Visual Studio for C++. Have anyone tried using that with Qt-projects?</p> <p>I realize that was a lot of different questions. Please answer even if you can't answer all of them.</p> <p><em>EDIT:</em></p> <p>I should probable add that we already have Visual Studio and Visual Assist licenses, so the cost of those is not an issue.</p> http://stackoverflow.com/questions/1675689/what-c-features-would-be-removed-if-backwards-compatibility-were-not-an-issue/1675818#1675818 13 Answer by Rasmus Faber for What C# features would be removed if backwards compatibility were not an issue? Rasmus Faber 2009-11-04T18:45:09Z 2009-11-04T18:45:09Z <p>I have heard several of the C# designers mention that they regret making arrays <a href="http://blogs.msdn.com/ericlippert/archive/2007/10/17/covariance-and-contravariance-in-c-part-two-array-covariance.aspx" rel="nofollow">covariant</a>.</p> http://stackoverflow.com/questions/1647568/how-to-encode-an-rsa-key-using-pkcs12-in-python/1648617#1648617 1 Answer by Rasmus Faber for How to encode an RSA key using PKCS12 in Python? Rasmus Faber 2009-10-30T08:29:58Z 2009-10-30T08:29:58Z <p>If you can handle some ASN.1 generation, you can relatively easily convert a PKCS#8-file into a PKCS#12-file. A PKCS#12-file is basically a wrapper around a PKCS#8 and a certificate, so to make a PKCS#12-file, you just have to add some additional data around your PKCS#8-file and your certificate.</p> <p>Usually a PKCS#12-file will contain the certificate(s) in an encrypted structure, but all compliant parsers should be able to read it from an unencrypted structure. Also, PKCS#12-files will usually contain a MacData-structure for integrity-check, but this is optional and a compliant parser should work fine without it.</p> http://stackoverflow.com/questions/1638971/aes-difference-between-iphone-objective-c-and-java/1643618#1643618 0 Answer by Rasmus Faber for AES difference between iPhone (Objective-c) and Java Rasmus Faber 2009-10-29T13:11:14Z 2009-10-29T13:11:14Z <p>Based on your samples, the server is doing it right, and the client is not.</p> <p>Looking at the data, I would guess that the key is wrong. Please show us the iPhone code, especially the code to go from "1234567891123456" to your key.</p> http://stackoverflow.com/questions/1636176/how-to-test-cryptography-methods/1640205#1640205 5 Answer by Rasmus Faber for How to test cryptography methods Rasmus Faber 2009-10-28T21:23:10Z 2009-10-28T21:23:10Z <p>Known correct data for cryptographic algorithms is usually called <em>test vectors</em>. So google "MD5 test vectors" to get a ton of good input data for your tests.</p> <p>The most authoritative resource for test vectors is of course the document defining the algorithm. Most standards documents will include a set of test vectors. For instance, <a href="http://tools.ietf.org/html/rfc1321" rel="nofollow">RFC 1321</a> contains the following set of test data:</p> <pre><code>MD5 ("") = d41d8cd98f00b204e9800998ecf8427e MD5 ("a") = 0cc175b9c0f1b6a831c399e269772661 MD5 ("abc") = 900150983cd24fb0d6963f7d28e17f72 MD5 ("message digest") = f96b697d7cb7938d525a2f31aaf161d0 MD5 ("abcdefghijklmnopqrstuvwxyz") = c3fcd3d76192e4007dfb496cca67e13b MD5 ("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789") = d174ab98d277d9f5a5611c2c9f419d9f MD5 ("123456789012345678901234567890123456789012345678901234567890123456 78901234567890") = 57edf4a22be3c955ac49da2e2107b67a </code></pre> http://stackoverflow.com/questions/479799/c-net-replace-host-in-uri 3 C#/.NET: Replace host in Uri Rasmus Faber 2009-01-26T13:32:21Z 2009-10-26T20:21:41Z <p>What is the nicest way of replacing the host-part of an Uri using .NET?</p> <p>I.e.:</p> <pre><code>string ReplaceHost(string original, string newHostName); //... string s = ReplaceHost("http://oldhostname/index.html", "newhostname"); Assert.AreEqual("http://newhostname/index.html", s); //... string s = ReplaceHost("http://user:pass@oldhostname/index.html", "newhostname"); Assert.AreEqual("http://user:pass@newhostname/index.html", s); //... string s = ReplaceHost("ftp://user:pass@oldhostname", "newhostname"); Assert.AreEqual("ftp://user:pass@newhostname", s); //etc. </code></pre> <p>System.Uri does not seem to help much.</p> http://stackoverflow.com/questions/1623189/rsacryptoserviceprovider-using-x509-certificates-c/1624695#1624695 0 Answer by Rasmus Faber for rsacryptoserviceprovider using x509 certificates c# Rasmus Faber 2009-10-26T13:11:48Z 2009-10-26T19:04:14Z <p>The following code works fine for me:</p> <pre><code> RSACryptoServiceProvider privateKey = new RSACryptoServiceProvider(); privateKey.FromXmlString("&lt;RSAKeyValue&gt;&lt;Modulus&gt;wL8s+C8SnnlaaqR+VsyijmxOJOARNa4o7ZNsqfy3+9J9Ol2JNSjjMfQWoUnFtClzJBlZhU5KtuazQe8ZKXTX9YvKoJdRhlsonZkC04qiTMdO/FZIH00GrCRxeQ7XDnQnvPB9Bdsvs//7zrY3f7eLIkpIyK9cQHU+5jjJd5IT0eE=&lt;/Modulus&gt;&lt;Exponent&gt;AQAB&lt;/Exponent&gt;&lt;P&gt;83xxN7jvpg5z16pxz2tIQIdqd/EfmikR9Q2TjG2tosWkUSvtyx0xHZ9EqdTUbSGZZ+jgrabzkafYc7Mplylwew==&lt;/P&gt;&lt;Q&gt;yqcnYSZEXHwJvRWi2V09PNEENTozQZywcFptUUGar9TciaQvoNv3lpnfzUKNBRdhzq4lImxkamajZlTWE5buUw==&lt;/Q&gt;&lt;DP&gt;37HqilkbwyHwB6mOGhPkM3S1ujAK6qTk3JB2iEOTjMGrru9+7maJYz+Z47Wm3ARMXgyzrpZ9m8nqsJFfmoL11Q==&lt;/DP&gt;&lt;DQ&gt;v285tv8kMs2FkZYfuP/oOkwkkneBNejjj68Md2bmzlThZDCyQV2pvB1tmgPVHUsiPNCrCaKlFRISJzfa5rR8Ow==&lt;/DQ&gt;&lt;InverseQ&gt;fgJE2TRe/SS+YqW0/I+FtHrdfbbao0/R3pHD4r4oceZQUemlBgZ7DxOAetebHKthlOdjGkmfWYB8EU4XoWggqw==&lt;/InverseQ&gt;&lt;D&gt;FMLCwjy3wbAKiCANp6XFAJgz1o7365NFv0k41BpvasViTa4TgFFWH2ROJ7M9g0lPqJy+YrhrHcY9mqV5TVjTheQp0JeckrgO2B39XngPMAMMdne3rWGpf0Pfbj3FLfchMk6XYDXSZzCS2CmSeRA4aBMb+4R3YurixyJLrnGRMH0=&lt;/D&gt;&lt;/RSAKeyValue&gt;"); RSACryptoServiceProvider publicKey = new RSACryptoServiceProvider(); publicKey.FromXmlString("&lt;RSAKeyValue&gt;&lt;Modulus&gt;wL8s+C8SnnlaaqR+VsyijmxOJOARNa4o7ZNsqfy3+9J9Ol2JNSjjMfQWoUnFtClzJBlZhU5KtuazQe8ZKXTX9YvKoJdRhlsonZkC04qiTMdO/FZIH00GrCRxeQ7XDnQnvPB9Bdsvs//7zrY3f7eLIkpIyK9cQHU+5jjJd5IT0eE=&lt;/Modulus&gt;&lt;Exponent&gt;AQAB&lt;/Exponent&gt;&lt;/RSAKeyValue&gt;"); { string text = "foo"; byte[] encrypted = publicKey.Encrypt(Encoding.UTF8.GetBytes(text), false); byte[] decryptedBytes = privateKey.Decrypt(encrypted, false); } </code></pre> <p>Can you double-check that the exported private key is from cert.PrivateKey and the public key is from cert.PublicKey.Key?</p> http://stackoverflow.com/questions/1596723/visual-basic-cryptography-question/1599322#1599322 1 Answer by Rasmus Faber for Visual Basic Cryptography Question Rasmus Faber 2009-10-21T07:48:00Z 2009-10-26T13:20:16Z <p>Sorry, the code below does not work. .NET requires additional values in the DSAParameters. I added a comment with another suggestion about BouncyCastle.NET.</p> <p><hr /></p> <p>Sorry, I can't write VB.NET, but you can probably translate the following C# code:</p> <pre><code>DSAParameters keyValue = new DSAParameters(); keyValue.P = new byte[]{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}; keyValue.Q = new byte[]{0x88, 0x16, 0x1b, 0xf5, 0xda, 0x43, 0xee, 0x4b, 0x58, 0xbb, 0x93, 0xea, 0x4e, 0x2b, 0xda, 0xb9, 0x17, 0xd1, 0xff, 0x21}; keyValue.G = new byte[]{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}; keyValue.X = new byte[]{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}; keyValue.Y = new byte[]{0x06, 0x8e, 0xc1, 0x41, 0x40, 0xf1, 0xf6, 0xe1, 0xfa, 0xfb, 0x64, 0x28, 0x02, 0x15, 0xce, 0x47, 0xaa, 0xce, 0x6e, 0xfe}; using (DSACryptoServiceProvider key = new DSACryptoServiceProvider()) { key.ImportParameters(keyValue); byte[] res = key.SignData(data); } </code></pre> <p>Your priv_key array of hex-characters is an ASN.1 DER encoded DSA private key (in OpenSSL's non-standard format). Here is a dump, you can probably see where I got the values from:</p> <pre><code> 0 30 249: SEQUENCE { 3 02 1: INTEGER 0 6 02 65: INTEGER : 00 FE CA 97 55 1F C0 B7 1F AD F0 93 EC 4B 31 94 : 78 86 82 1B AB C4 9E 5C 40 D9 89 7D DE 43 38 06 : 4F 1B 2B EF 5C B7 FF 21 B1 11 E6 9A 81 9A 2B EF : 3A BB 5C EA 76 AE 3A 8B 92 D2 7C F1 89 8E 4D 3F : 0D 73 02 21: INTEGER : 00 88 16 1B F5 DA 43 EE 4B 58 BB 93 EA 4E 2B DA : B9 17 D1 FF 21 96 02 65: INTEGER : 00 F6 BB 45 EA DA 72 39 4F C1 DD 02 B4 F3 AA E5 : E2 76 C7 DC 34 B2 0A D8 69 63 C3 40 2C 58 EA A6 : BD 24 8B 6B AA 4B 41 FC 5F 21 02 3C 27 A9 C7 7A : C8 59 CD 5B DD 6C 44 48 86 D1 34 46 B0 89 55 50 : 87 163 02 65: INTEGER : 00 80 29 C6 4A 08 3E 30 54 71 9B 95 49 55 17 70 : C7 96 65 C8 C2 E2 8A E0 5D 9F E4 B2 1F 20 83 70 : BC 88 36 03 29 59 CD C7 CD D9 4A A8 65 24 6A 77 : 8A 10 88 0D 2F 15 4B BE BA 13 23 A1 73 A3 04 37 : C9 230 02 20: INTEGER : 06 8E C1 41 40 F1 F6 E1 FA FB 64 28 02 15 CE 47 : AA CE 6E FE : } </code></pre> <p>Likewise the output from <code>SignData</code> might not be in the format you expect. I think OpenSSL puts the result in an ASN.1 DER-container. It will look like this:</p> <pre><code>3082[2 bytes for length of remaining data] 0281[1 byte for length of this data][some bytes with first half of signature] 0281[1 byte for length of this data][some bytes with second half of signature] </code></pre> <p>.NET just concatenates the two halves of the signature.</p> http://stackoverflow.com/questions/1618196/where-should-i-put-my-test-code-for-my-class/1618418#1618418 0 Answer by Rasmus Faber for where should I put my test code for my class? Rasmus Faber 2009-10-24T16:16:36Z 2009-10-24T16:16:36Z <p>Create separate projects for unit-tests, integration-tests and functional-tests. Even if your "real" code has multiple projects, you can probably do with one project for each test-type, but it is important to distinguish between each type of test.</p> <p>For the unit-tests, you should create a parallel namespace-hierarchy. So if you have crazy.juggler.drummer.Customer, you should unit-test it in crazy.juggler.drummer.CustomerTest. That way it is easy to see which classes are properly tested.</p> <p>Functional- and integration-tests may be harder to place, but usually you can find a proper place. Tests of the database-layer probably belong somewhere like my.app.database.DatabaseIntegrationTest. Functional-tests might warrant their own namespace: my.app.functionaltests.CustomerCreationWorkflowTest.</p> <p>But tip #1: be tough about separating the various kind of tests. Especially be sure to keep the collection of unit-tests separate from the integration-tests.</p> http://stackoverflow.com/questions/1601560/java-and-net-interop-on-rsa-signatures/1602711#1602711 2 Answer by Rasmus Faber for Java and .NET interop on (RSA) signatures Rasmus Faber 2009-10-21T18:32:36Z 2009-10-21T18:32:36Z <blockquote> <p>// In a different method, rsaParams.Exponent and rsaParams.Modulus are set</p> </blockquote> <p>To set the <em>private</em> exponent in an RSA key, you should use <a href="http://msdn.microsoft.com/en-us/library/system.security.cryptography.rsaparameters.d.aspx" rel="nofollow"><code>RSAParameters.D</code></a>. <code>RSAParameters.Exponent</code> is for the <em>public</em> exponent.</p> http://stackoverflow.com/questions/1595163/is-authentication-required-recommended-with-a-stream-cipher/1599360#1599360 0 Answer by Rasmus Faber for Is authentication required/recommended with a stream cipher? Rasmus Faber 2009-10-21T08:01:15Z 2009-10-21T08:01:15Z <p>You could consider using AES in <a href="http://en.wikipedia.org/wiki/GCM%5Fmode" rel="nofollow">GCM-mode</a>. That will give you a stream-cipher with built-in authentication.</p> http://stackoverflow.com/questions/1590582/visual-studio-best-way-to-use-multiple-programming-languages-for-a-single-applic 1 Visual Studio: Best way to use multiple programming languages for a single application Rasmus Faber 2009-10-19T19:21:54Z 2009-10-19T19:33:50Z <p>I often find myself using several programming languages when making .NET applications. Usually C++/CLI for interop to legacy code and C# for the rest.</p> <p>With the coming support for F# as a first-class language, I could see myself mixing that in as well.</p> <p>But is the only way to use multiple language still to setup a project per language? Do Visual Studio 2010 have any improved support for this? Are there any other solutions out there?</p> http://stackoverflow.com/questions/1566848/using-win32-crypto-api/1589047#1589047 0 Answer by Rasmus Faber for Using Win32 Crypto API Rasmus Faber 2009-10-19T14:39:04Z 2009-10-19T14:39:04Z <blockquote> <p>i just want to use one, i figured how to get context but i'm still thinking about the size of buffer i need to use for CryptEncrypt() to get it working with aes256 ? i also want to use random salt.</p> </blockquote> <p>AES256 in CBC-mode with PKCS#7-padding (which is the default) will need a buffersize that is the input-data rounded up to the next multiple of 16 (but always at least one byte more). Ie. 35 -> 48, 52 -> 64, 80 -> 96.</p> <p>There is no salt involved in AES256. Are you talking about key-derivation? Or do you mean the IV?</p> http://stackoverflow.com/questions/1553761/qt-writing-plugins-for-other-applications 0 Qt: Writing plugins for other applications Rasmus Faber 2009-10-12T10:14:10Z 2009-10-12T10:18:14Z <p>I am writing a plugin for another application. I want to support the plugin on multiple platforms, so I am strongly considering using Qt.</p> <p>The plugin needs to be able to show some basic GUI. The plugin interface does not in any way handle GUI - it is just a simple DLL/shared library specified with a C-header file.</p> <p>Can I use Qt inside such a shared library? The calling application might or might not be using Qt itself. Any hints on what to do? Do I need to run a QApplication event-loop in a separate thread? Or can I just call the event-loop myself while waiting for input? (I only need modal dialogs).</p> http://stackoverflow.com/questions/1528928/using-a-previously-generated-rsa-public-private-key-with-the-net-framework/1538636#1538636 1 Answer by Rasmus Faber for Using a previously generated RSA public/private key with the .net framework Rasmus Faber 2009-10-08T15:44:48Z 2009-10-08T15:44:48Z <p>To use an existing key, you can use the <a href="http://msdn.microsoft.com/en-us/library/system.security.cryptography.rsacryptoserviceprovider.importparameters.aspx" rel="nofollow"><code>ImportParameters</code></a>-method:</p> <pre><code>RSAParameters parameters = new RSAParameters() parameters.Modulus = // ... parameters.Exponent = // ... RSA rsa = new RSACryptoServiceProvider(); rsa.ImportParameters(parameters); rsa.Encrypt(/*...*/); </code></pre> <p>You can add the private parameters, too, in order to use it for decrypting or signing.</p> <p>In order to tell you how to get from your existing keydata to the parameters, we need to know exactly how they are encoded. Try showing us the strings (replace most of the private key with Xs if it is a real key).</p> http://stackoverflow.com/questions/1524390/qt-what-unit-testing-framework 2 Qt: What unit-testing framework? Rasmus Faber 2009-10-06T08:54:04Z 2009-10-07T11:59:01Z <p>I am just starting up a new project that needs some cross-platform GUI, and we have chosen Qt as the GUI-framework.</p> <p>We need a unit-testing framework, too. Until about a year ago we used an in-house developed unit-testing framework for C++-projects, but we are now transitioning to using Google Test for new projects.</p> <p>Anyone have any experience with using Google Test for Qt-applications? Is QtTest/QTestLib a better alternative?</p> <p>I am still not sure how much we want to use Qt in the non-GUI parts of the project - we would probably prefer to just use STL/Boost in the core-code with a small interface to the Qt-based GUI.</p> <p><em>EDIT:</em></p> <p>Looks like many are leaning towards QtTest. Any experiences with integrating this with a Continous Integration server? Also, it would seem to me that having to handle a separate application for each new test case would cause a lot of friction. Any good ways to solve that? Does Qt Creator have a good way of handling such test cases or would you need to have a project per test case?</p> http://stackoverflow.com/questions/1519383/visual-studio-profiles-for-addins 1 Visual Studio: Profiles for addins Rasmus Faber 2009-10-05T10:52:40Z 2009-10-05T11:45:11Z <p>I would like to be able to switch between using Visual Studio with C#-addins (Resharper, TestDriven.Net and VisualSVN) and C++-addins (Visual Assist X and VisualSVN). I have found that Resharper and Visual Assist X does not coexist very well and I would like an easy way to change between them.</p> <p>Anyone know how to do that? If I can have different key-bindings for each profile, that would be a big plus - as would the ability to have different instances of Visual Studio running in different profiles.</p> <p>Virtual machines would do it of course, but that seems overkill.</p> http://stackoverflow.com/questions/1503974/decrypting-pkcs7-encrypted-data-in-c/1505612#1505612 2 Answer by Rasmus Faber for Decrypting PKCS#7 encrypted data in C# Rasmus Faber 2009-10-01T18:22:11Z 2009-10-01T18:22:11Z <p>The .NET framework has only rudimentary support for PKCS#7/CMS, so it does not support streaming the data.</p> <p>You need a 3rd party library. As others have mentioned, BouncyCastle is an excellent choice. It does support PKCS#7 (PKCS#7 is also known as CMS).</p> <p>Their tests are probably a good place to look for sample code: <a href="http://www.bouncycastle.org/viewcvs/viewcvs.cgi/csharp/crypto/test/src/cms/test/EnvelopedDataStreamTest.cs?rev=1.5&amp;content-type=text/vnd.viewcvs-markup" rel="nofollow">EnvelopedDataStreamTest.cs</a>.</p> http://stackoverflow.com/questions/1503281/secret-computing-does-such-an-animal-exist/1505521#1505521 0 Answer by Rasmus Faber for Secret computing: does such an animal exist? Rasmus Faber 2009-10-01T18:06:16Z 2009-10-01T18:06:16Z <p>Others have already pointed out the theoretic possibilities of fully homomorphic encryption, but I would like to point out that a (secret input, secret output, non-secret program)-system can be used to mke a (secret input, secret output, secret program)-system: just have the non-secret program be an interpreter for some general-purpose language and use (actual-program, input) as the input for the non-secret program.</p> <p>Of course a standard computer embedded in a tamper-proof case and certified by an independent third party would be a much more practical solution.</p> http://stackoverflow.com/questions/1497557/c-winforms-do-i-need-the-iwin32windows 0 C#/WinForms: Do I need the IWin32Windows? Rasmus Faber 2009-09-30T11:29:35Z 2009-09-30T11:35:36Z <p>When writing WinForms application with proper separation between View- and Controller/Presenter-functionality, I often find myself writing code like this:</p> <pre><code>public void class SomeView:Form{ private void loadFileButton_Click(object sender, EventArgs e) { _loadFileAction.Execute(this); } } public void class LoadFileAction:Action{ public override void Execute(IWin32Window owner){ // ... string file = _fileSelector.SelectFile(owner); } } public void class FileSelector:IFileSelector{ public override void SelectFile(IWin32Window owner){ OpenFileDialog dialog = new OpenFileDialog(); dialog.ShowDialog(owner); //... } } </code></pre> <p>or some other variation of passing around the correct window for opening sub-dialogs.</p> <p>I am often tempted to just skip the window-handles and always use the parameter-less ShowDialog()-methods - which should just use the current active window.</p> <p>Do anyone have any experiences using similar architectures? What do you do?</p> http://stackoverflow.com/questions/1487680/signed-email-in-php/1491634#1491634 2 Answer by Rasmus Faber for "Signed" email in PHP Rasmus Faber 2009-09-29T10:02:33Z 2009-09-29T10:02:33Z <p>If I understand you correctly, you want to generate a signed e-mail using PHP.</p> <p>The standard way to send signed e-mails is S/MIME (another less common way is PGP). S/MIME is basically a MIME message containing the base64-encoding of a CMS message (CMS is also sometimes called PKCS#7).</p> <p>One way to do this from PHP is with the PHP-bindings to OpenSSL's <a href="http://dk2.php.net/manual/en/function.openssl-pkcs7-sign.php" rel="nofollow"><code>openssl_pkcs7_sign</code></a>.</p> <p>I have no idea what the signed-by header should be used for.</p> http://stackoverflow.com/questions/1741375/window-cryptoapi-can-i-choose-the-public-exponent-when-generating-an-rsa-key-pai/1755293#1755293 Comment by Rasmus Faber on Window CryptoAPI: Can I choose the public exponent when generating an RSA key pair? Rasmus Faber 2009-11-18T13:52:30Z 2009-11-18T13:52:30Z Prime? Generator? If you are talking about KP_G and KP_P, those are for DSA. http://stackoverflow.com/questions/1740534/qmake-how-do-i-copy-dll-sos-to-the-output-directory/1740584#1740584 Comment by Rasmus Faber on qmake: How do I copy .dll/.so's to the output directory? Rasmus Faber 2009-11-16T08:56:47Z 2009-11-16T08:56:47Z <code>QMAKE&#95;BUNDLE&#95;DATA</code> is marked as &quot;This is used on Mac OS X only.&quot; Are you sure that will work on Linux and Windows? http://stackoverflow.com/questions/561402/cassini-webserver-webdev-nunit-and-appdomainunloadedexception Comment by Rasmus Faber on Cassini/WebServer.WebDev, NUnit and AppDomainUnloadedException Rasmus Faber 2009-11-12T15:01:32Z 2009-11-12T15:01:32Z Not a /good/ solution, but I ended up setting failonerror=&quot;false&quot; on the NUnit-task and postprocessing the xml-output with a separate tools, that ignored the unhandled AppDomainUnloadedException. http://stackoverflow.com/questions/1675936/to-make-a-choice-between-manualresetevent-or-thread-sleep/1675991#1675991 Comment by Rasmus Faber on To make a choice between ManualResetEvent or Thread.Sleep() Rasmus Faber 2009-11-04T20:25:17Z 2009-11-04T20:25:17Z A ManualResetEvent behaves quite differently than periodically polling. http://stackoverflow.com/questions/1662451/decryption-type-and-breaking-aes-128 Comment by Rasmus Faber on Decryption type and breaking (AES 128?) Rasmus Faber 2009-11-02T17:48:06Z 2009-11-02T17:48:06Z &quot;&quot;When a byte changes on the original file, the [...} the previous [...] block [changes].&quot; Have you double-checked that? That would make it different from any mode i have ever heard of. http://stackoverflow.com/questions/1623189/rsacryptoserviceprovider-using-x509-certificates-c/1624695#1624695 Comment by Rasmus Faber on rsacryptoserviceprovider using x509 certificates c# Rasmus Faber 2009-10-27T07:44:34Z 2009-10-27T07:44:34Z But I was talking about using an AES symmetric key, which the RSA asymmetric keypair should encrypt rather than encrypting the text directly. I realize that the makecert tool generates the RSA keys. http://stackoverflow.com/questions/1623189/rsacryptoserviceprovider-using-x509-certificates-c/1625285#1625285 Comment by Rasmus Faber on rsacryptoserviceprovider using x509 certificates c# Rasmus Faber 2009-10-26T19:06:45Z 2009-10-26T19:06:45Z Could you try including the value of &quot;encrypted&quot;, too? The base64-encoding would be fine. http://stackoverflow.com/questions/1623189/rsacryptoserviceprovider-using-x509-certificates-c/1624695#1624695 Comment by Rasmus Faber on rsacryptoserviceprovider using x509 certificates c# Rasmus Faber 2009-10-26T19:05:52Z 2009-10-26T19:05:52Z &quot;when cert returns back it already generates the aes symmetric key.&quot; I don't really understand what that means. Where is the AES key generated? I can't see it anywhere in your codesample. http://stackoverflow.com/questions/1596723/visual-basic-cryptography-question/1599322#1599322 Comment by Rasmus Faber on Visual Basic Cryptography Question Rasmus Faber 2009-10-26T13:18:06Z 2009-10-26T13:18:06Z It looks like .NET requires the Seed, J and Counter values, which are not included in the OpenSSL-code. You could try using BouncyCastle.Net instead. You want to create a DsaKeyParameters with a DsaPrivateKeyParameters inside, then feed that to a DsaSigner. http://stackoverflow.com/questions/1596723/visual-basic-cryptography-question/1599322#1599322 Comment by Rasmus Faber on Visual Basic Cryptography Question Rasmus Faber 2009-10-21T18:03:04Z 2009-10-21T18:03:04Z I tried showing how to import the key. http://stackoverflow.com/questions/1005913/non-generic-versions-of-generic-classes-and-interfaces/1006205#1006205 Comment by Rasmus Faber on Non Generic Versions of Generic classes and interfaces. Rasmus Faber 2009-10-19T13:07:06Z 2009-10-19T13:07:06Z Those articles was written before the new syntax was finalized, so Eric uses + and - instead of out and in. Most articles about the new features in C# 4.0 will mention the new support for co/contravariance. Here is one: <a href="http://community.bartdesmet.net/blogs/bart/archive/2009/04/13/c-4-0-feature-focus-part-4-generic-co-and-contra-variance-for-delegate-and-interface-types.aspx" rel="nofollow">community.bartdesmet.net/blogs/bart/&hellip;</a> http://stackoverflow.com/questions/1005913/non-generic-versions-of-generic-classes-and-interfaces/1006205#1006205 Comment by Rasmus Faber on Non Generic Versions of Generic classes and interfaces. Rasmus Faber 2009-10-19T08:07:26Z 2009-10-19T08:07:26Z Eric Lippert's series on covariance and contravariance is one of the best explanations on the net. It starts here: <a href="http://blogs.msdn.com/ericlippert/archive/2007/10/16/covariance-and-contravariance-in-c-part-one.aspx" rel="nofollow">blogs.msdn.com/ericlippert/archive/&hellip;</a> http://stackoverflow.com/questions/1005913/non-generic-versions-of-generic-classes-and-interfaces/1006205#1006205 Comment by Rasmus Faber on Non Generic Versions of Generic classes and interfaces. Rasmus Faber 2009-10-16T15:15:17Z 2009-10-16T15:15:17Z @Svish: It marks T as covariant. http://stackoverflow.com/questions/1566848/using-win32-crypto-api Comment by Rasmus Faber on Using Win32 Crypto API Rasmus Faber 2009-10-15T15:20:53Z 2009-10-15T15:20:53Z Do you actually want to implement a CSP? Or do you just want to use one? http://stackoverflow.com/questions/1553761/qt-writing-plugins-for-other-applications Comment by Rasmus Faber on Qt: Writing plugins for other applications Rasmus Faber 2009-10-12T17:39:45Z 2009-10-12T17:39:45Z Thanks for reminding me. I was putting it off, since there were several good answers and it was hard selecting a &quot;best&quot; one.