active questions tagged rsa - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T06:00:28Zhttp://stackoverflow.com/feeds/tag/rsahttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1908124/rsa-key-generator-using-vhdl-6rsa key generator using vhdl [closed]yaredb2009-12-15T15:14:57Z2009-12-15T15:14:57Z
<p>I need RSA key generator source code using VHDL with explantion </p>
http://stackoverflow.com/questions/1102726/rsa-pubkey-file-type-detection1RSA pubkey file type detectionRagnagard2009-07-09T09:12:45Z2009-12-15T14:00:03Z
<p>Hi all!</p>
<p>I got a RSA pubkey.dat (almost obvious what it is) that has the following structure on contents:</p>
<ul>
<li>ASN1 Integer of around 1024 bits (Modulus)</li>
<li>ASN1 Integer (Exponent)</li>
<li>Blob of 256 bytes (Signature)</li>
</ul>
<p>No tags like "----begin---" or so. pure hex values in it.</p>
<p>There's any way to identify its format like if it's DER/PEM/etc , so i can open it with python crypto libraries or crypto++ on c++?</p>
<p>(Or if it matches a public standard structure name for me to check)</p>
<p>Seems like its not PEM as M2crypt can't load it.</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1900083/gen-public-key-from-xml-data-file-using-m2crypto-for-signature-verification1Gen public key from xml data file using M2Crypto for signature verification.baz2009-12-14T10:21:32Z2009-12-15T08:26:41Z
<p>I have pub key in xml format:</p>
<pre><code><RSAKeyValue><Modulus>xF9y25EXh8n99sXtU/JAsYTwML6PB7gSCE8tWw8Www2KBfDqohQBL8FMs8jzsDQa7WwoEmiVJ1resEC9YXJGbwQyWgb9qgooC9oSnCB/TkRdBybwby0DKuZOzq+609OBGkwWpgnS4QVCBc6eW+10l3qE3/2hKdcSV+08iRYp7zs=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue>
</code></pre>
<p>So i try thms like this:</p>
<pre><code>from M2Crypto import RSA
from xml.dom.minidom import parseString
import base64
dom = parseString(pubKey)
e = base64.b64decode(dom.getElementsByTagName('Exponent')[0].childNodes[0].data)
n = base64.b64decode(dom.getElementsByTagName('Modulus')[0].childNodes[0].data)
rsa = RSA.new_pub_key((e, n))
</code></pre>
<p>Got error:</p>
<pre><code> ...
rsa = RSA.new_pub_key((e, n))
File "/usr/lib/pymodules/python2.6/M2Crypto/RSA.py", line 390, in new_pub_key
m2.rsa_set_e(rsa, e)
M2Crypto.RSA.RSAError: invalid length
</code></pre>
<p>Any ideas?</p>
http://stackoverflow.com/questions/1904516/is-1024-bit-rsa-secure1is 1024 bit rsa secureAndrew Hownik2009-12-15T00:32:33Z2009-12-15T01:29:05Z
<p>Is 1024 bit rsa secure, or is it crackable now? Is it safe for my program to use 1024 bit rsa? I read at <a href="http://pcworld.about.com/od/privacysecurity1/Researcher-RSA-1024-bit-encry.htm" rel="nofollow">http://pcworld.about.com/od/privacysecurity1/Researcher-RSA-1024-bit-encry.htm</a> that 1024 bit encryption is unsecure, but I find 2048 bit slower, and also I see that various https sites (even paypal) use 1024 bit encryption. Is 1024 bit encryption secure enough?</p>
http://stackoverflow.com/questions/1900462/licenseprovider-in-net-using-rsa-encryption-to-protect-product-license0LicenseProvider in .NET using RSA encryption to protect product licenseJohn2009-12-14T11:49:53Z2009-12-14T11:49:53Z
<p>Hi there</p>
<p>I'm trying to find a solid licensing scheme using Microsoft's LicenseProvider. My thought is to use asynchronous encryption by ways of RSA (RSACryptoServiceProvider with 2048bit keys).
I found this to be pretty easy, but I am unsure how secure the mechanism really is. This isn't for fun and needs to copy-protect a number of products (we're talking ~100 installations) in the US. Expiration date is not needed.</p>
<p>Now, I use a private key to encrypt the license file (.lic). On the customer's computer, the license manager will check the computer's unique ID against the unique ID stored in the .lic file at runtime.
Since the product will have the corresponding public key it can decrypt the file.
If the IDs match, the license is valid and the program starts.</p>
<p>(BTW the computer ID is a combination of: MAC Address + CPU serial + hard drive serial. So if one of those changes, the license wil need to be renewed)</p>
<p>It's that simple? As I see it, even if you could decrypt the .lic file, you could never encrypt it again because you don't have the private key needed.</p>
<p>Now, other than buying a costly 3rd party solution, cracking and circumventing the licensing DLL, how secure do you find this idea of using RSA+computerID? </p>
<p>(Yes, we're looking into obfuscating the code to make this better)</p>
<p>Thanks for the feedback!</p>
http://stackoverflow.com/questions/1489269/as3crypto-rsa-signing0AS3Crypto RSA SigningJon2009-09-28T20:45:46Z2009-12-14T11:00:03Z
<p>Hi All,</p>
<p>I'm having some troubles matching the value returned from RSA signing
a Base64 SHA1 hash in the actionscript as3crypto library with the result returned in c#.</p>
<p>I'm passing in a Base64 hash decoded as a byte array to the sign()
function provided in as3crypto and base64 encoding the result.
However, this result never matches the returned result from a c#
function which performs the same task. Does it matter that the
function takes in and returns hex even though it works at the byte
array level?</p>
<p>Please see my below signing function to check i haven't missed
anything!</p>
<pre><code>private function signHash(hashInBase64:String):String
{
var src:ByteArray = Base64.decodeToByteArray(hashInBase64);
var key:RSAKey = getRSAKey();
var dst:ByteArray = new ByteArray();
key.sign(src, dst, src.length);
return Base64.encodeByteArray(dst);
}
</code></pre>
<p>Anyone had much experience with the AS3Crypto library?</p>
<p>Any help would be great!!!</p>
<p>Thanks,</p>
<p>Jon</p>
http://stackoverflow.com/questions/1847357/can-i-use-the-assemblies-publickey-to-decrypt-a-string-encrypted-with-the-corresp2Can I use the assemblies PublicKey to decrypt a string encrypted with the corresponding PrivateKey?Daren Thomas2009-12-04T14:40:55Z2009-12-11T10:26:40Z
<p>Signing an assembly in .NET involves a public/private key pair. As far as I can tell from what I've read .NET uses the RSA algorithm and the private key to sign the assembly, checking it with the embedded public key.</p>
<p>I know how to retrieve the public key (<code>Assembly.PublicKey</code>). I was wondering, if that key could be used to decrypt a short string that contains some data encrypted with the private key.</p>
<p>The docs I've read so far (<a href="http://msdn.microsoft.com/en-us/library/92f9ye3s.aspx#public%5Fkey" rel="nofollow">e.g.</a>) seem to imply that only the other way round is possible: That I would have to use the public key to encrypt and the private key to decrypt - but I don't really want to include that in the assembly, do I.</p>
<p>I guess it would be ok, if I just signed the string. But how?</p>
<p>I'm a bit at a loss how to start this. Does anybody have a code snippet?</p>
<p>Also, encrypting / signing of the small string would ideally happen in PHP, since I want to offload that to a web server and all we have so far is your generic PHP/MySQL hosted website.</p>
<p><strong>Use Case</strong>: I'm trying to come up with a lightweight licensing scheme for a software we are about to release to beta testers. Since the software will probably be freeware, all we really want to achieve is</p>
<ol>
<li>know who has the software installed (email address)</li>
<li>let the software expire after a given period, after which the user will have to get a new license
<ul>
<li>this is as easy as filling out a form and waiting for an automated email with the key to arrive</li>
<li>we are trying to reduce the likelyhood of old versions coming back to bite our reputation / haunt us</li>
</ul></li>
</ol>
<p>Being able to encrypt a tuple (expiry date, fingerprint) and decrypt that at startup would make an easy licensing module: The first time the application is started, the user is asked for email address, name, organisation. This information is posted to the webserver along with an md5 fingerprint of some system info (nic, computer name, assembly major and minor version). The webserver answers by email (checks validity of email address) with an encrypted version of the tuple (expiry date, fingerprint) that is then saved to disk. On startup, this can be decrypted and compared with current date and regenerated fingerprint.</p>
<p><em>EDIT</em>: OK, so I don't have all the answers to my question yet. But it looks like .NET won't make it easy to use the private key for encryption (if that is at all possible, the answers don't really agree on that).</p>
<p>The route I will take is this (based on my use case):</p>
<ul>
<li>I will use the private key to sign the license.</li>
<li>I will use the public key to verify the license was signed by the private key</li>
<li>I will post another question aimed at PHP devs on how to use the .NET keys (produced by <code>sn.exe</code>) to sign some text</li>
<li>I am not really worried about the user seeing the license, as it is a hash anyway and computed from stuff he allready knows. All I want is to make it too hard to be worth any bother for your typical building architect to copy my software without me knowing (remember, the software will be freeware - all I want is a paper trail of who has it installed...)</li>
</ul>
<p>Thank you very much for your answers. </p>
http://stackoverflow.com/questions/1825000/how-to-sign-an-xml-file-with-a-rsa-key-in-net0How to sign an XML file with a RSA key in .NET?Nicolas Riou2009-12-01T09:24:39Z2009-12-08T16:04:10Z
<p>I am trying to sign an XML file in C# .NET 3.5 with a private <a href="http://en.wikipedia.org/wiki/RSA" rel="nofollow">RSA</a> Key generated by <a href="http://en.wikipedia.org/wiki/OpenSSL" rel="nofollow">OpenSSL</a>.</p>
<p>Here is how I proceeded: I converted the RSA key from <a href="http://en.wikipedia.org/wiki/X.509#Certificate%5Ffilename%5Fextensions" rel="nofollow">PEM</a> 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 <a href="http://en.wikipedia.org/wiki/Microsoft%5FDeveloper%5FNetwork" rel="nofollow">MSDN</a>.</p>
<p>So, in 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><Signature xmlns="http://www.w3.org/2000/09/xmldsig#">
<SignedInfo>
<CanonicalizationMethod Algorithm="http://www.w3.org/TR/2001/REC-xml-c14n-20010315" />
<SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha1" />
<Reference URI="">
<Transforms>
<Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" />
</Transforms>
<DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<DigestValue>qoGPSbe4oR9e2XKN6MzP+7XlXYI=</DigestValue>
</Reference>
</SignedInfo>
<SignatureValue>iPQ6IET400CXfchWJcP22p2gK6RpEc9mkSgfoA94fL5UM6+AB5+IO6BbjsNt31q6MB8hR6lAIcnjzHzc5SeXvFP8Py2bqHTYJvcSA6KcKCQl1LiDNt12UwWiKpSkus2p0LdAeeZJNy9aDxjC/blUaZEr4uPFt0kGCD7h1NQM2SY=</SignatureValue>
</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 conversion 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/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/1846035/sign-with-rsa-1024-an-sha-256-digest-what-is-the-size0Sign with RSA-1024 an SHA-256 digest: what is the size?puccio2009-12-04T10:12:03Z2009-12-04T10:12:03Z
<p>Hi,</p>
<p>I was wondering:
1) if I compute the digest of some datas with <strong>SHA-512</strong> => resulting in a hash of 64 bytes
2) and then I sign this hash with <strong>RSA-1024</strong> => so a block of 128 bytes, which is bigger than the 64 bytes of the digest</p>
<p>=> does it mean in the end my signed hash will be <em>exactly</em> 128 bytes?</p>
<p>Thanks a lot for any info.</p>
http://stackoverflow.com/questions/1834164/access-violation-writing-location0Access violation writing locationlrudor2009-12-02T16:37:29Z2009-12-02T23:32:03Z
<p>I have the following code:</p>
<pre><code>#include <openssl/bn.h>
#include <openssl/rsa.h>
unsigned char* key;
RSA* rsa = RSA_new();
rsa = RSA_generate_key(1024,65537,NULL,NULL);
//init pubkey
key[BN_num_bytes(rsa->n)] = '\0';
BN_bn2bin(rsa->n, key);
printf("RSA Pub: %s\n", key);
RSA_free( rsa );
rsa = NULL;
</code></pre>
<p>The debugger is telling me that I have an issue "Access violation writing location" on the line</p>
<pre><code>key[BN_num_bytes(rsa->n)] = '\0';
</code></pre>
<p>If I comment out that line the issue just moves down to</p>
<pre><code>BN_bn2bin(rsa->n, key);
</code></pre>
<p>any suggestions on how to fix this issue would be great.</p>
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/1141542/encryption-with-python0encryption with python ajay2009-07-17T05:39:01Z2009-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/1788421/java-to-python-rsa2Java to Python RSACrowe T. Robot2009-11-24T07:23:18Z2009-11-24T10:07:55Z
<p>I'm trying to encrypt a string from Java to Python, using the library Bouncy Castle J2ME on the client side and Python M2Crypto on the other.</p>
<p>Everything is pretty good, I can decrypt it properly, but the padding is the issue.</p>
<p>The M2Crypto lib gives me (as far as I can tell) only these Padding schemes:
no_padding = 3
pkcs1_padding = 1
sslv23_padding = 2
pkcs1_oaep_padding = 4</p>
<p>While the bouncy castle J2ME only provides:
NoPadding
OAEPWithAndPadding
PKCS5Padding
SSL3Padding</p>
<p>So, I can use NoPadding between both, but then the strings that get generated after decryption are filled with jumbled characters.</p>
<p>I'd really like to get the padding sorted out, but I don't know how to convert between padding schemes / if that's even possible.</p>
<p>Please help me figure this out, it's killing me!</p>
http://stackoverflow.com/questions/1765278/protecting-rsacryptoserviceprovider-private-key-with-password-or-otherwise0Protecting RSACryptoServiceProvider private key with password or otherwisestovroz2009-11-19T17:59:51Z2009-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/1774469/how-does-the-rsa-private-key-passphrase-work-under-the-hood1How does the RSA private key passphrase work under the hood?qfinder2009-11-21T04:02:00Z2009-11-21T16:33:07Z
<p>RSA private keys may be assigned a "passphrase" which - as I understand it - is intended to provide some secondary security in case someone makes off with the private key file.</p>
<p>How is the passphrase layer of security implemented?</p>
http://stackoverflow.com/questions/1741375/window-cryptoapi-can-i-choose-the-public-exponent-when-generating-an-rsa-key-pai0Window CryptoAPI: Can I choose the public exponent when generating an RSA key pair?Rasmus Faber2009-11-16T10:42:12Z2009-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/1763134/storing-credit-card-info1storing credit card infoJM2009-11-19T13:01:49Z2009-11-19T13:33:16Z
<p>So I would like to modify a PHP / MySQL application in order to store credit card but not cvv and bank account info securely. PCI DSS require 1024 RSA/DSA. A small number of users will be given private key in order to decrypt the batch file of account info for submission to payment processors monthly. I'm unclear if it is possible to have a system that would allow the users who have signed in with normal 8 digit passwords to modify their own account info securely. It seems that this is not possible, and the encryption should be one-way (ie each user -> admins; never allowing user to decrypt their own info again), with account info never exposed back to users even over SSL connections. Or is there a proper and easy way to do this that I'm unaware of that is PCI DSS compliant?</p>
http://stackoverflow.com/questions/1753726/load-rsa-keys-from-files0Load RSA keys from filesunknown (google)2009-11-18T04:56:32Z2009-11-18T05:25:53Z
<p>Hello,</p>
<p>I used openSSL command to create 2 files: 1 for RSA public key & 1 for RSA private key. How do I recover RSA keys using C?</p>
<p>Specifically, I have these functions:</p>
<pre><code>RSA_public_encrypt(read_num, in_buf, out_buf, public_key, RSA_PKCS1_PADDING);
RSA_private_decrypt(read_num, in_buf, out_buf, private_key, RSA_PKCS1_PADDING);
</code></pre>
<p>The 4th arguments, public_key and private_key, need to be in RSA type. But what I have are only 2 text files generated by openSSL command:</p>
<pre><code>File 1:
-----BEGIN RSA PRIVATE KEY-----
MIICXAIBAAKBgQDP78B9GZ9ZFG6OnZ1PU+9BPoyLRuYJr3rSX470XjbJhmlq9DTn
NvG1pxWxrd5tjlmMWD4AkHqD7E87AafvQEiABdUXwf30LatT1w6tlyQWkM/HCN5k
....
npF+nDtKmGteLJVp5x7HHMnZaRbvcV2oUtgdmIMbqVYgbPkwO2tUfUPA6zg1fzhy
nNzQ35e/Hi0fgSHZib0CQEe4e4txXzkezomkWqwuGL8Qqp8iCbBn44mzxXTBvAQl
muFu93C/ULMzRoq4cpPgl3sS0F9s7+zR18SERerFvfc=
-----END RSA PRIVATE KEY-----
File 2:
-----BEGIN PUBLIC KEY-----
MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDP78B9GZ9ZFG6OnZ1PU+9BPoyL
RuYJr3rSX470XjbJhmlq9DTnNvG1pxWxrd5tjlmMWD4AkHqD7E87AafvQEiABdUX
wf30LatT1w6tlyQWkM/HCN5kmK5WzPUYbI1q5xGy7Eox9sJ6cNwMUOT+MSDhErgB
gkgF6uG1yGrxuEVk/QIDAQAB
-----END PUBLIC KEY-----
</code></pre>
<p>Now, I read these 2 files to a char[] array. What I have to do next is convert these 2 arrays to 2 RSA keys (public key at client & private_key at server) so that I can use RSA_public_encrypt and RSA_private_decrypt functions.</p>
<p>Thanks. </p>
http://stackoverflow.com/questions/727537/how-do-i-automate-a-last-modified-text-field-in-an-rsm-diagram0How do I automate a "last modified" text field in an RSM diagram?James A. Rosen2009-04-07T20:51:19Z2009-11-18T04:42:43Z
<p>My team is using Rational Software Modeler to build some UML diagrams. Each diagram has a little text box stating a human-readable title, the last-modified date, and some other information about the diagram.</p>
<p>Is there a way to automatically keep the last-modified date up to date? A macro, perhaps? Or some sort of plugin to Eclipse?</p>
http://stackoverflow.com/questions/1742030/how-do-i-do-distributed-uml-development-ala-foss0How do I do distributed UML development (à la FOSS)?James A. Rosen2009-11-16T12:54:01Z2009-11-18T04:15:51Z
<p>I have a UML project (built in IBM's Rational System Architect/Modeler, so stored in their XML format) that has grown quite large. Additionally, it now contains several pieces that other groups would like to re-use. I come from a software development (especially FOSS) background, and am trying to understand how to use that as an analogy here. The problem I am grappling with is similar to the <a href="http://en.wikipedia.org/wiki/Fragile%5Fbase%5Fclass" rel="nofollow">Fragile Base Class</a> problem.</p>
<p>Let me start with how it works in an object-oriented (say, Java or Ruby) FOSS ecosystem:</p>
<ol>
<li>Group 1 publishes some "core" package, say "<code>net/smtp</code> version 1.0"</li>
<li>Group 2 includes Group 1's <code>net/smtp</code> 1.0 package in the vendor library of their software project</li>
<li>At some point, Group 1 creates a new 2.0 branch of <code>net/smtp</code> that breaks backwards compatibility (say, it removes an old class or method, or moves a class from one package to another). They tell users of the 1.0 version that it will be deprecated in one year.</li>
<li>Group 2, when they have the time, updates to <code>net/smtp</code> 2.0. When they drop in the new package, their compiler (or test suite, for Ruby) tells them about the incompatibility. They do have to make some manual changes, but all of the changes are in the code, in plain text, a medium with which they are quite familiar. Plus, they can often use their IDE's (or text editor's) "global-search-and-replace" function once they figure out what the fixes are.</li>
</ol>
<p>When we try to apply this model to UML in RSA, we run into some problems. RSA supports some fairly powerful refactorings, but they seem to only work if you have write access to <em>all</em> of the pieces. If I rename a class in one package, RSA can rename the references, but only at the same time. It's very difficult to look at the underlying source (the XML) and figure out what's broken. To fix such a problem in the RSA editor itself means tons of clicking on things -- there is no good equivalent of "global-search-and-replace," at least not after an incomplete refactor.</p>
<p>They real sticking point seems to be that RSA assumes that you want to do all your editing using their GUI, but that makes certain operations prohibitively difficult.</p>
<p>Does anyone have examples of open-source UML projects that have overcome this problem? What strategies do they use for communicating changes?</p>
http://stackoverflow.com/questions/295345/how-to-encrypt-small-data-block-with-only-rsa-public-key-using-microsoft-ecsp0How to encrypt small data block with only RSA public key using Microsoft ECSP?Alexey Naidyonov2008-11-17T11:18:15Z2009-11-17T02:02:12Z
<p>I need to encrypt a small block of data (16 bytes) using 512 bit RSA public key -- quite an easy task for most cryptography libraries known to me, except for MS CSP API, as it seems.
Documentation for <a href="http://msdn.microsoft.com/en-us/library/aa379924(VS.85).aspx" rel="nofollow">CryptEncrypt</a> function states that</p>
<blockquote>
<p>The Microsoft Enhanced Cryptographic Provider supports direct encryption with RSA public keys and decryption with RSA private keys. The encryption uses PKCS #1 padding.</p>
</blockquote>
<p>It didn't work to me though. Well, my code works and produces encrypted block of data with correct size, but openssl fails to decypher it. It looks much like CryptEncrypt still uses symmetric cypher.</p>
<p>Unfortunately all the examples I've found refer to combined cryptography with symmetric cypher, so I don't have a working example on hands which definitely would make things easier.</p>
<p>Could please anyone point me to such an example or let me know if there are some not that obvious pitfalls I've missed?</p>
<p>Thank you.</p>
http://stackoverflow.com/questions/1738715/openssl-seal-in-c-or-via-shell0OpenSSL "Seal" in C (or via shell)icefire2009-11-15T20:29:14Z2009-11-15T21:29:35Z
<p>I'm working on porting some PHP code to C, that contacts a web API.</p>
<p>The issue I've come across is that the PHP code uses the function <code>openssl_seal()</code>, but I can't seem to find any way to do the same thing in C or even via <code>openssl</code> in a call to <code>system()</code>.</p>
<p>From the PHP manual on <code>openssl_seal()</code>:</p>
<blockquote>
<p>int openssl_seal ( string $data ,
string &$sealed_data , array
&$env_keys , array $pub_key_ids )</p>
<p>openssl_seal() seals (encrypts) data
by using RC4 with a randomly generated
secret key. The key is encrypted with
each of the public keys associated
with the identifiers in pub_key_ids
and each encrypted key is returned in
env_keys . This means that one can
send sealed data to multiple
recipients (provided one has obtained
their public keys). Each recipient
must receive both the sealed data and
the envelope key that was encrypted
with the recipient's public key.</p>
</blockquote>
<p>What would be the best way to implement this? I'd really prefer <em>not</em> to call out to a PHP script every time, for obvious reasons.</p>
http://stackoverflow.com/questions/295436/java-jce-decrypting-long-message-encrypted-with-rsa0Java/JCE: Decrypting "long" message encrypted with RSAØyvind Holmstad2008-11-17T12:06:45Z2009-11-15T19:07:51Z
<p>I've got a message contained in an byte[], encrypted with "RSA/ECB/PKCS1Padding". To decrypt it I create a Cipher c and initiate it with</p>
<pre><code>c = Cipher.getInstance("RSA/ECB/PKCS1Padding");
</code></pre>
<p>Untill now I have only decrypted small messages, using the <em>doFinal()</em> method, returning an byte[] with the decrypted bytes. </p>
<pre><code>c.init(Cipher.DECRYPT_MODE, privateKey);
byte[] decryptetBytes = c.doFinal(encryptedBytes);
</code></pre>
<p>But in this case the data is bigger (approx 500 Bytes), and the <em>doFinal()</em>-method throws an exception (javax.crypto.IllegalBlockSizeException: Data must not be longer than 128 bytes). I guess I need to use the <em>update()</em>- method, but I can't figure out how to get it to work properly. How is this done?</p>
http://stackoverflow.com/questions/1735374/small-rsa-or-dsa-lib-without-dependencies1Small RSA or DSA lib without dependenciesicefex2009-11-14T19:45:17Z2009-11-14T21:10:13Z
<p>Is there a small library for RSA or DSA without any dependencies like GMP or OpenSSL? (Written in C or Asm)</p>
http://stackoverflow.com/questions/1722305/how-to-import-pkcs8-rsa-privatekey-created-by-openssl-in-c0How to import PKCS#8 RSA privateKey (created by OpenSSL) in C# Makah2009-11-12T13:49:28Z2009-11-13T15:41:28Z
<p>I'm trying to find a way to read a privateKey created using OpenSSL PKCS#8 RSA in C# without use external library.</p>
<p>Someone know how can i do this?</p>
http://stackoverflow.com/questions/991366/how-to-create-private-rsa-key-using-modulus-d-exponent-in-c0How to create private RSA key using modulus, D, exponent in C#?Priyank Bolia2009-06-13T19:47:30Z2009-11-13T08:23:17Z
<p>I have 3 byte arrays of 128, 128, 3 bytes respectively. I don't know what it is, but I expect them to be Modulus, D, Exponent.
Now how to use these arrays in C# to decrypt a byte array using RSA?
When I create RSA param and assign the 3 byte arrays to Modulus, D, Exponent and try to use that RSAParameters in RSACryptoServiceProvider.ImportParameters, Decryption fails stating corrupt keys. I guess the other entries also need to be filled DQ,DP,...etc...</p>
<p>How do I do that in C#? I don't have that values, is there an easy way to decrypt a byte array using only Modulus, D, Exponent in C#, as in other languages?</p>
http://stackoverflow.com/questions/1709441/generate-rsa-key-pair-and-encode-private-as-string0Generate RSA key pair and encode private as stringAngela2009-11-10T16:51:44Z2009-11-10T19:07:05Z
<p>Ello guys,</p>
<p>i am supposed to generate 512 RSA keypair and then encode my public key as a string. I cant find any good tutorial for someone who just begins with encryption....please advices, sample codes,help urgent!!</p>
http://stackoverflow.com/questions/1452527/how-secure-is-this-architecture3How secure is this architecture?parxier2009-09-21T01:33:22Z2009-11-08T13:11:30Z
<p>Hi,</p>
<p>I'm building a system that need to collect some user sensitive data via secured web connection, store it securely on the server for later automated decryption and reuse. System should also allow user to view some part of the secured data (e.g., <code>*****ze</code>) and/or change it completely via web. System should provide reasonable level of security.</p>
<p>I was thinking of the following infrastructure:</p>
<p><strong>App (Web) Server 1</strong></p>
<ol>
<li><p>Web server with proper TLS support
for secured web connections.</p></li>
<li><p>Use public-key algorithm (e.g. RSA) to
encrypt entered user sensitive data
and send it to <em>App Server 2</em> via
one-way outbound secured channel
(e.g. ssh-2) without storing it
anywhere on either <em>App Server 1</em> or <em>DB
Server 1</em>.</p></li>
<li><p>Use user-password-dependent
symmetric-key algorithm to encrypt
some part of the entered data (e.g.
last few letters/digits) and store
it on the <em>DB Server 1</em> for later
retrieval by <em>App Server 1</em> during
user web session.</p></li>
<li><p>Re-use step 2 for data modification by user via web.</p></li>
</ol>
<p><strong>DB Server 1</strong></p>
<ol>
<li>Store unsecured non-sensitive user
data.</li>
<li>Store some part of the sensitive
user data encrypted on <em>App Server 1</em>
(see step 3 above)</li>
</ol>
<p><strong>App Server 2</strong></p>
<ol>
<li>Do <strong>NOT</strong> <strong>EVER</strong> send anything
<strong>TO</strong> <em>App Server 1</em> or <em>DB Server 1</em>.</li>
<li>Receive encrypted user sensitive
data from <em>App Server 1</em> and store it
in <em>DB Server 2</em>.</li>
<li>Retrieve encrypted
user sensitive data from <em>DB Server 2</em>
according to the local schedules,
decrypt it using private key
(see <em>App Server 1</em>, step 2) stored
locally on <em>App Server 2</em> with proper key management.</li>
</ol>
<p><strong>DB Server 2</strong></p>
<ol>
<li>Store encrypted user sensitive data (see <em>App Server 2</em>, step 2)</li>
</ol>
<p>If either <em>App (Web) Server 1</em> or <em>DB Server 1</em> or both are compromised then attacker will not be able to get any user sensitive data (either encrypted or not). All attacker will have is access to public-key and encryption algorithms which are well known anyway. Attacker will however be able to modify web-server to get currently logged users passwords in plaintext and decrypt part of user sensitive data stored in DB Server 1 (see <em>App Server 1</em>, step 3) which I don't consider as a big deal. Attacker will be able to (via code modification) also intercept user sensitive data entered by users via web during potential attack. Later I consider as a higher risk, but provided that it is hard (is it?) for attacker to modify code without someone noticing I guess I shouldn't worry much about it.</p>
<p>If <em>App Server 2</em> and private key are compromised then attacker will have access to everything, but <em>App Server 2</em> or <em>DB Server 2</em> are not web facing so it shouldn't be a problem.</p>
<p>How secure is this architecture? Is my understanding of how encryption algorithms and secured protocols work correct?</p>
<p>Thank you!</p>
http://stackoverflow.com/questions/1676692/grant-access-to-system-account-for-rsa-container-on-windows-server-20030Grant access to SYSTEM account for RSA container on Windows Server 2003Odrade2009-11-04T21:17:19Z2009-11-04T21:29:25Z
<p>I have a need to access an RSA private key from a Windows service running under the NT AUTHORITY\SYSTEM account. I'm able to install the private key on the server, and then make use of that key when running as the user that installed the key. However, the key does not seem to be available from the Windows service. Do I need a machine-level key here (which I understand increases the risk of compromise), or is there a way I can install a key specifically intended for use by the SYSTEM account?</p>