active questions tagged key - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T19:07:40Z http://stackoverflow.com/feeds/tag/key http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1839038/encryption-and-java-method-generating-key-what-size 0 Encryption and Java, method generating key - what size? Kumar 2009-12-03T10:27:37Z 2009-12-03T12:28:59Z <p>I got the following method body to generate a key for encryption:</p> <pre><code>new BigInteger(500, new SecureRandom()).toString(64); </code></pre> <p>Could anyone explain what is the size of generated key?</p> http://stackoverflow.com/questions/1833246/is-it-possible-to-get-the-value-for-a-key-in-a-hashtable-without-iteration 1 Is it possible to get the value for a key in a Hashtable without iteration? sahil garg 2009-12-02T14:29:49Z 2009-12-02T14:43:32Z <p>Using .NET 3.5, is there a way to retrieve a value from Hashtable corresponding to the key without iteration?</p> http://stackoverflow.com/questions/1823008/subsonic-cant-decide-which-property-to-consider-the-key-foreign-key-issue 0 Subsonic : Can’t decide which property to consider the Key? foreign key issue. AJ 2009-11-30T22:57:33Z 2009-11-30T22:57:33Z <p>Hi</p> <p>I am trying to select count of rows from a table which has foreign keys of two tables. The C# code threw the error mentioned below. So, I added a primary key column to the table (schema as follows) and regenerated the code. But still the same error is coming.</p> <p>Error : Can't decide which property to consider the Key - you can create one called 'ID' or mark one with SubSonicPrimaryKey attribute</p> <p>sqLite Table schema</p> <pre><code>CREATE TABLE "AlbumDocuments" ("Id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL , "AlbumId" INTEGER NOT NULL CONSTRAINT fk_AlbumId REFERENCES Albums(Id) , "DocumentId" INTEGER NOT NULL CONSTRAINT fk_DocumentId REFERENCES Documents(Id)) </code></pre> <p>C# code</p> <pre><code>int selectAlbumDocumentsCount = new SubSonic.Query.Select() .From&lt;DocSafeDB.DataLayer.AlbumDocumentsTable&gt;() .Where(DocSafeDB.DataLayer.AlbumDocumentsTable.AlbumIdColumn).In(request.AlbumId) .Execute(); </code></pre> <p>Not sure what I should be doing next as I can't do where against primary key because I don;t have that info. So my questions are:</p> <ol> <li><p>How do I select count of rows against foreign key column? </p></li> <li><p>Is primary key required in this scenario?</p></li> </ol> <p>I have several things but not sure why its not working. To me it looks like a very normal use case. Please advise. </p> <p>Thanks AJ</p> http://stackoverflow.com/questions/1822220/singluar-data-keys-between-application-and-database 0 Singluar data-keys between application and database? unknown (google) 2009-11-30T20:28:58Z 2009-11-30T20:45:34Z <p>Is there a paradigm in which I can change a data-key name in one place and one place only, and have it properly be dealt with by both the application and database?</p> <p>I have resorted most recently to using class constants to map to database field names, but I still have to keep those aligned with the raw database keys.</p> <p>What I mean is, using PHP as an example, right now I might use</p> <p><code>$infoToUpdateUser[ User::FIELD_FIRST_NAME ]</code></p> <p>This means that when I change it at the constant, I don't have to search through the code to change all references to that field.</p> <p>Another area this crops up in is in referencing fields. Due to some early poor design decisions, I have, for example, these sorts of tables:</p> <p>( table name : primary_key ) </p> <ul> <li>cats : cat_id</li> <li>dogs : dog_id</li> <li>parrots : bird_id (remember, poor design, thus the mismatch between parrots / bird_id)</li> <li>lizards: lizard_id</li> <li>etc</li> </ul> <p>Then let's say I have a series of form classes that update records.</p> <ul> <li>AnimalForm </li> <li>DogForm extends AnimalForm</li> <li>CatForm extends AnimalForm</li> <li>ParrotForm extends AnimalForm</li> <li>etc</li> </ul> <p>Now I want to update a record in the SQL database using an update function in the parent class, AnimalForm, so I don't have to replicate code in 20 subclasses. </p> <p>However I do not know of a way to generalize the update query, so currently each subclass has an idFieldName member variable, and the parent class inserts that into the query, like</p> <p><code>"UPDATE " . $this-&gt;table . " SET &lt;data&gt; WHERE " . $this-&gt;idFieldName</code></p> <p>It seems sloppy to do it this way but I can't think of a better solution at this point.</p> <p>Is there a design model or paradigm that links together or abstracts data-key names to be shared as a reference by both a database and an application?</p> http://stackoverflow.com/questions/1807658/nhibernate-hasmany-when-not-using-foreign-key 0 nhibernate hasmany when not using foreign key Mattderi 2009-11-27T09:29:14Z 2009-11-27T09:53:05Z <p>Let say I have a request table, that looks as follows:</p> <pre><code>RequestId INT ReferenceNumber VARCHAR </code></pre> <p>Each request is logged in a requestlog table. There are no foreign keys between the tables:</p> <pre><code>RequestLogId INT ReferenceNumber VARCHAR Content VARCHAR </code></pre> <p>The requestlog contains the content of the request, and this content needs to be stored for a period of time. The request can be deleted, but the log can only be deleted after a period of time.</p> <p>How can I map my request object so that it can contain a list of requestlogs, based on the referencenumber?</p> <p>I tried this:</p> <pre><code>Table("InsuranceRequest"); Id(i =&gt; i.Id).Column("InsuranceRequestId"); Map(i =&gt; i.ReferenceNumber); HasMany(i =&gt; i.InsuranceRequestLog).KeyColumn("RefenceNumber").LazyLoad.Cascade.None(); </code></pre> <p>It doesn't work though. This mapping tries to map the referencenumber to the RequestLogId of requestlog. Is there a way to specify that the joining column should be the insurancerequestlog referencenumber?</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/1789706/values-of-diff-keys-to-concatenate-from-a-resource-file-how 0 values of diff keys to concatenate from a resource file, how? Narry 2009-11-24T12:15:03Z 2009-11-24T12:15:03Z <p>I want to concatenate the values of two or more keys from a resource file, while assigning value to a control, somthing like &lt;%$ Resources:LocalizedText, LeadTitle%>"</p> <p>but, getting an error.Is it possible some way to concatenate the value of different keys from a resource file?</p> http://stackoverflow.com/questions/1773989/sql-2005-how-to-add-same-column-and-fk-across-multiple-tables 0 SQL 2005: How to add same column and FK across multiple tables. mrlane 2009-11-21T00:08:00Z 2009-11-21T00:20:03Z <p>Hello</p> <p>I need to add a Column "CurrentLifeCycleId" [int] into 73 tables and also add a Foreign Key from this new column to another single table "LifeCycle" Id column...is there a simple way I can do this in a few statements rather than go through each table one by one.</p> <p>The column does not need to start off being NULL as I will delete all records from these tables before I start.</p> <p>It's the weekend and I don't want to spend all today doing this :)</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/1769757/foreign-keys-in-sql-server-2005 0 foreign keys in sql server 2005 Bal 2009-11-20T11:02:59Z 2009-11-20T12:42:18Z <p>I having trouble creating a foreign key in sql 2005.</p> <p>my primary key table has a primary key that spans 2 columns.</p> <p>I want to create my foreign key so it references a column in my primary table but I want to specify a static value for the second column - is this possible?</p> http://stackoverflow.com/questions/1758991/how-to-remove-a-lua-table-entry-by-its-key 1 How to remove a lua table entry by its key ? Wookai 2009-11-18T20:51:05Z 2009-11-18T23:02:21Z <p>I have a lua table that I use as a hashmap, ie with string keys :</p> <pre><code>local map = { foo = 1, bar = 2 } </code></pre> <p>I would like to "pop" an element of this table identified by its key. There is a <code>table.remove()</code> method, but it only takes the index of the element to remove (ie a number) and not a generic key. I would like to be able to do <code>table.remove(map, 'foo')</code> and here is how I implemented it :</p> <pre><code>function table.remove(table, key) local element = table[key] table[key] = nil return element end </code></pre> <p>Is there a better way to do that ?</p> http://stackoverflow.com/questions/1752494/detect-if-any-key-is-pressed-in-c-not-a-b-but-any 0 Detect if any key is pressed in C# (not A, B, but any) Christian 2009-11-17T23:04:10Z 2009-11-18T01:50:55Z <p>Hi,</p> <p>[EDIT 3] I kind of "solved it" by at using the "strange" version. At least for the most important keys. It is suffient for my case, where I want to check that ALT and ALT+A are not the same (thereby making sure A is not pressed). Not perfect, but already to much time for such a tiny problem. Thanks for all the answers anyway... [EDIT 3]</p> <p><strong>[EDIT 4] Solved it much cleaner thanks to 280Z28 [/EDIT 4]</strong></p> <p>I know how to check for modifier keys and how to test for a single key. The problem is, I want to check if any key is pressed. The following approach seems "strange" :-)</p> <p><strong>WPF Application written in C#</strong></p> <pre><code>if (Keyboard.IsKeyDown(Key.A)) return true; if (Keyboard.IsKeyDown(Key.B)) return true; if (Keyboard.IsKeyDown(Key.C)) return true; </code></pre> <p>I know it is an enum, so I thought about a loop, but what is the "biggest number" to use. And is this possible? btw, its a very special case, normally I would use an event, but in this case I have to do it this way. Unfortunatily, the there is no "list" Keyboard.CurrentlyDownKeys. At least I didnt see it.</p> <p>Thanks, Chris</p> <p><strong>EDIT:</strong> Ok, because it seems to be a bigger deal, here the reason for this: I have defined a "KeySet" which serves as DictionaryKey for custom functions. If anybody clicks on an element, the wrapper iterates through the dictionary and checks if any of the predefined "Keysets" is active. </p> <p>This allows me to define simple triggers, like e.g. Run this function if ALT+A+B is pressed. Another option is e.g. Run this function if ALT+STRG+A is pressed (during a mouse click on a WPF element).</p> <p>The only "problem" with the current implementation, if I define a Keyset which does NOT contain any REAL keys, like run if ALT is pressed, it is also triggered if ALT+A is pressed. Oh, while writing this, I realize that there is another problem. ALT+A+B would currently also trigger if ALT+A+B+C is pressed.</p> <p>Perhaps my approach is wrong, and I should create a "static key tracker" and compare the keyset to its values (aquired via events).. I will give this a try. </p> <p><strong>EDIT 2</strong> This is not working, at least not in a simple way. I need an FrameworkElement to attach to KeyDown, but I do not have it in a static constructor. And I am not interested in KeyDownEvents of a certain element, but "globally"...I think I juts postpone this problem, its not that important. Still, if anybody knows a better of different approach...</p> <p>So long, for anyone who cares, here some code:</p> <pre><code> public class KeyModifierSet { internal readonly HashSet&lt;Key&gt; Keys = new HashSet&lt;Key&gt;(); internal readonly HashSet&lt;ModifierKeys&gt; MKeys = new HashSet&lt;ModifierKeys&gt;(); public override int GetHashCode() { int hash = Keys.Count + MKeys.Count; foreach (var t in Keys) { hash *= 17; hash = hash + t.GetHashCode(); } foreach (var t in MKeys) { hash *= 19; hash = hash + t.GetHashCode(); } return hash; } public override bool Equals(object obj) { return Equals(obj as KeyModifierSet); } public bool Equals(KeyModifierSet other) { // Check for null if (ReferenceEquals(other, null)) return false; // Check for same reference if (ReferenceEquals(this, other)) return true; // Check for same Id and same Values return Keys.SetEquals(other.Keys) &amp;&amp; MKeys.SetEquals(other.MKeys); } public bool IsActive() { foreach (var k in Keys) if (Keyboard.IsKeyUp(k)) return false; if ((Keys.Count == 0) &amp;&amp; !Keyboard.IsKeyDown(Key.None)) return false; foreach (var k in MKeys) if ((Keyboard.Modifiers &amp; k) == 0) return false; if ((MKeys.Count == 0) &amp;&amp; Keyboard.Modifiers &gt; 0) return false; return true; } public KeyModifierSet(ModifierKeys mKey) { MKeys.Add(mKey); } public KeyModifierSet() { } public KeyModifierSet(Key key) { Keys.Add(key); } public KeyModifierSet(Key key, ModifierKeys mKey) { Keys.Add(key); MKeys.Add(mKey); } public KeyModifierSet Add(Key key) { Keys.Add(key); return this; } public KeyModifierSet Add(ModifierKeys key) { MKeys.Add(key); return this; } } </code></pre> http://stackoverflow.com/questions/1750483/how-to-get-key-value 1 How to get key value NJ 2009-11-17T17:33:59Z 2009-11-18T01:01:07Z <p>Hi,</p> <p>My sample JSON string is as below:</p> <pre><code>{"8776337":{"text":"Test Message","status":"d","created_time":"1244475327","reply_number":"447624800500","completed_time":"1244475373","credits_cost":"0.4"}} </code></pre> <p>"8776337" is dynamic key returned by some APIs. I want to get this key value using LINQ to JSON query.</p> <p>How can I get this key value using LINQ to JSON?</p> http://stackoverflow.com/questions/1731149/different-settings-in-my-cnf-are-causing-max-key-length-is-1000-bytes-error 0 Different settings in my.cnf are causing "max key length is 1000 bytes" error Brian Deacon 2009-11-13T18:56:49Z 2009-11-17T20:05:29Z <p>Edit: This may be a 5.0-specific bug. (I'm on 5.0.83). Removing the innodb_log_file_size setting gets rid of the problem. Which makes complete sense. Not.</p> <p>Googling about finds a handful of similar, but not identical problems in 5.0 that were patched later.</p> <p>With the "wrong" settings in my.cnf, this create statement on MySQL 5.0 will give me the "Specified key was too long; max key length is 1000 bytes".</p> <pre><code>CREATE TABLE ReproduceTheProblem ( COLUMN_ONE varchar(200) character set utf8 default NULL, COLUMN_TWO varchar(200) character set utf8 default NULL, KEY ThisKeyBreaks(COLUMN_ONE, COLUMN_TWO) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; </code></pre> <p>In trying to improve performance, I arrived at my.cnf settings that perform well but get the "key was too long" error. I do have my.cnf settings that can create this key, but that perform terribly on importing data into a different, very large table.</p> <p>The settings that work but perform badly (and which have some whacky values from my attempting to dial different settings in):</p> <pre><code>[client] port = 3306 socket = /tmp/mysql.sock [mysqld] port = 3306 socket = /tmp/mysql.sock skip-locking key_buffer_size = 384M max_allowed_packet = 1024M table_cache = 256 max_sp_recursion_depth=255 sort_buffer_size = 2M read_buffer_size = 2M read_rnd_buffer_size = 8M myisam_sort_buffer_size = 64M myisam_max_sort_file_size = 30G thread_cache_size = 8 query_cache_size= 16M thread_concurrency = 8 max_heap_table_size = 9900000 skip-federated log-bin=mysql-bin server-id = 1 [mysqldump] quick max_allowed_packet = 256M [mysql] no-auto-rehash [isamchk] key_buffer = 256M sort_buffer_size = 256M read_buffer = 2M write_buffer = 2M [myisamchk] key_buffer = 256M sort_buffer_size = 256M read_buffer = 2M write_buffer = 2M [mysqlhotcopy] interactive-timeout </code></pre> <p>The settings that perform well, but give me the key length error:</p> <pre><code>[client] port = 3306 socket = /tmp/mysql.sock [mysqld] port = 3306 socket = /tmp/mysql.sock max_allowed_packet = 200M table_cache = 256 query_cache_type = 1 query_cache_limit = 20M query_cache_size = 500M long_query_time = 2 thread_cache_size = 1000 thread_concurrency = 4 innodb_thread_concurrency = 4 old_passwords = 1 max_connections = 1000 max_sp_recursion_depth = 255 server-id = 0 innodb_buffer_pool_size = 800M innodb_additional_mem_pool_size = 50M innodb_log_file_size=50M innodb_log_buffer_size = 200M innodb_flush_log_at_trx_commit = 1 innodb_lock_wait_timeout =50 [mysqldump] quick max_allowed_packet = 200M [mysql] no-auto-rehash </code></pre> http://stackoverflow.com/questions/1744190/handling-foreign-key-exceptions-in-php 3 Handling foreign key exceptions in PHP Das123 2009-11-16T19:09:27Z 2009-11-16T20:02:36Z <p>What is the best way in PHP to handle foreign key exceptions on a mysql database? Is there a mysql class that can be used to simplify any code?</p> <p>Ideally, what I want to do, as an example, is to try to delete a record where it is the foreign key parent to any number of child tables. The foreign key throws the exception, so then I would like to be able to look at each foreign key table and test it, giving meaningful feedback on the tables and number of records causing the exception. This would then be returned as the error so the end user can reference and delete the offending records.</p> http://stackoverflow.com/questions/1732790/changing-the-value-in-a-map-in-groovy 1 Changing the value in a map in Groovy Simba 2009-11-14T00:40:13Z 2009-11-14T14:06:11Z <p>This is about a very basic program I'm writing in Groovy.</p> <p>I have defined a map inside a method:</p> <pre><code> def addItem() { print("Enter the item name: ") def itemName = reader.readLine() print("Enter price : ") def price = reader.readLine() print("Enter barcode : ") def barcode = reader.readLine() data[itemName] = ['price' : price, 'barcode' : barcode] } </code></pre> <p>The problem is I don't know how to update just one value inside a different method. Here's what I tried:</p> <pre><code> def updatePrice() { print("Enter the item name: ") def itemName = reader.readLine() print("Enter new price : ") def price = reader.readLine() data[itemName] = ['price' : price] } </code></pre> <p>This sort of works. It changes the value of price but it also changes the barcode value to 'null' presumably because it's being overwritten with...nothing.</p> <p>Basically I need the code to change the price but leave the barcode as it is. Any ideas on how I can do this?</p> <p>Sorry if this is a ridiculously elementary question but I'm still very much a newbie at programming.</p> http://stackoverflow.com/questions/1716035/wxpython-wx-keyevent-getkeycode 0 wxPython wx.KeyEvent GetKeyCode() Billy Pilgrim 2009-11-11T15:43:10Z 2009-11-12T08:43:05Z <p>All,</p> <p>I am writing a wxPython app in which I want (at the moment) to print the name of the key that was pressed. I have a dictionary that maps, for example, the WXK_BACK to "back" which seems a sane. However, which file must I import (include?) to get the definition of WXK_BACK ?</p> <p>I have the import wx statement, but am unsure which specific file holds the secrets -- help?</p> <p>All help appreciated.</p> <p>Thanks!</p> <p>bp</p> http://stackoverflow.com/questions/1716114/fluentnhibernate-cant-change-key-column-name-for-a-one-to-many-relationship 0 FluentNHibernate: can't change key column name for a one-to-many relationship Lullaby 2009-11-11T15:55:04Z 2009-11-11T20:58:44Z <p>Hi I have an entity: public class Message:Entity { public virtual IList<code>&lt;</code>Message> ReplayMessages { set; get; } public virtual Message ParentMessage { set; get; } }</p> <p>I try to override the mapping: mapping.HasMany(x => x.ReplayMessages) .AsSet() .KeyColumnNames.Add("ParentId");</p> <p>but in the hbm.xml file I get:</p> <p><code>&lt;</code>set name="ReplayMessages"> <code>&lt;</code>key column="MessageFk" /> <code>&lt;</code>one-to-many class="Edi.Core.Model.Message, Edi.Core, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null" /> <code>&lt;</code>/set></p> <p>Why the column key name didn't change?</p> http://stackoverflow.com/questions/1696149/handling-mysql-constraint-errors 0 handling mysql constraint errors jan 2009-11-08T11:51:57Z 2009-11-09T05:37:35Z <p>Hi!</p> <p>I tried searching for a solution in this website but I can't seem to find any.</p> <p>I needed to find a way to know which field in my table is causing the constraint error.. In my table, say <code>members</code> table two fields (username,email) are unique keys and defined as unique keys apart from my primary key (memberid). When i add data to this table for a similar user and/or email address this error occurs:</p> <p>"duplicate entry 'myemail@mail.com' for key2"</p> <p>i want to tell the user which field is causing duplicate entry so as to say "that email is already registered" </p> <p>I cannot seem to find a mysql function to loop through error keys upon insert...</p> <p>Thanks in advance!</p> http://stackoverflow.com/questions/1680928/how-to-create-multiple-components-of-a-service-with-ctor-dependencies 1 How to create multiple components of a service with c'tor dependencies apollo 2009-11-05T14:32:09Z 2009-11-07T17:32:33Z <p>I'd like to create several similar services which can be destinguished and accessed by their names (=keys).</p> <p>For the service implementation I want to use classes with c'tor dependencies like this:</p> <pre><code>public interface IXYService { string Tag { get; set; } } public class _1stXYService : IXYService { public _1stXYService(string Tag) { this.Tag = Tag; } public string Tag { get; set; } } </code></pre> <p>What I tried was to use 'AddComponentWithProperties' to have a concrete instance created which is accessible via a given key:</p> <pre><code>... IDictionary l_xyServiceInitParameters = new Hashtable { { "Tag", "1" } }; l_container.AddComponentWithProperties ( "1st XY service", typeof(IXYService), typeof(_1stXYService), l_xyServiceInitParameters ); l_xyServiceInitParameters["Tag"] = "2"; l_container.AddComponentWithProperties ( "2nd XY service", typeof(IXYService), typeof(_1stXYService), l_xyServiceInitParameters ); ... var service = l_container[serviceName] as IXYService; </code></pre> <p>However, the dependencies were not resolved and hence the services are not available. </p> <p>Using IWindsorContainer.Resolve(...) to populate the parameters is not desired.</p> <p>Construction by XML works, but is not in all cases sufficient.</p> <p>How could I achieve my goals?</p> http://stackoverflow.com/questions/1690929/what-net-dictionary-supports-a-find-nearest-key-operation 1 What .NET dictionary supports a "find nearest key" operation? Qwertie 2009-11-06T22:29:17Z 2009-11-07T17:17:43Z <p>I'm converting some C++ code to C# and it calls std::map::lower_bound(k) to find an entry in the map whose key is equal to or greater than k. However, I don't see any way to do the same thing with .NET's SortedDictionary. I suspect I could implement a workaround using SortedList, but unfortunately SortedList is too slow (O(n) for inserting and deleting keys). What can I do?</p> <p>Note: I found a workaround using that takes advantage of my particular scenario... Specifically, my keys are a dense population of integers starting at just over 0, so I used a List&lt;TValue&gt; as my dictionary with the list index serving as the key, and searching for a key equal or greater than k can be done in only a few loop iterations. But it would still be nice to see the original question answered. </p> http://stackoverflow.com/questions/1425961/what-is-the-difference-between-signing-certificate-and-encryption-certificate 0 What is the difference between signing Certificate and Encryption Certificate? M Raji 2009-09-15T08:46:29Z 2009-11-07T14:26:15Z <p>What is the difference between between signing certificate and encryption certificate?</p> <p>I see that signing certificate cannot be used for encrypting the data only encryption certificate. What is the technical difference? Does both have public key and private or only encryption cert will have PP key?</p> http://stackoverflow.com/questions/1688266/swt-cross-platform-enter-detection 0 SWT Cross-Platform Enter Detection Mohsen 2009-11-06T15:19:26Z 2009-11-07T08:50:42Z <p>Hi, I have a global filter (Display.addFilter) in SWT in which I want to detect Enter key. In Windows, pressing Enter generates SWT.CR in 'keyCode' part of KeyListener event. Is this assumption safe for all platforms, or should I check if keyCode == SWT.CR || keyCode == SWT.LF?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1685372/does-the-array-key-determine-array-size-in-c 0 Does the array key determine array size in C++? Prodigga 2009-11-06T04:18:13Z 2009-11-06T05:18:25Z <p>im storing some settings for objects in an array. the id's of objects are used as the key. the id's start from 100000 and go up. if i was to input data for an object with id 100 000, would cpp automatical create 99999 blank key entries starting from 0?</p> http://stackoverflow.com/questions/1678851/php-array-problem 0 PHP array problem Jasim 2009-11-05T07:15:19Z 2009-11-05T12:21:02Z <p>I have an array like this. What i want is to get the value of the index for specific values. ie, i want to know the index of the value "UD" etc.</p> <pre><code>Array ( [0] =&gt; LN [1] =&gt; TYP [2] =&gt; UD [3] =&gt; LAG [4] =&gt; LO ) </code></pre> <p>how can i do that??</p> http://stackoverflow.com/questions/1676692/grant-access-to-system-account-for-rsa-container-on-windows-server-2003 0 Grant access to SYSTEM account for RSA container on Windows Server 2003 Odrade 2009-11-04T21:17:19Z 2009-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> http://stackoverflow.com/questions/1668870/suggest-a-good-method-for-having-a-number-with-high-precision-in-c 0 Suggest a good method for having a number with high precision in C# Hossein Margani 2009-11-03T17:24:14Z 2009-11-03T17:54:40Z <p>Hi every one!</p> <p>I am programming on a project which I should store the key of the user to the initial configuration of a machine, I want to write it in C#. </p> <p>I have an initial configuration which consists of two number R and X0, R = 3.9988 and X0 = 0.5. I want to add the user key to these numbers. for example:</p> <p>Key: hos110 =></p> <ul> <li>R = 3.9988104111115049049048</li> <li>X0 = 0.5104111115049049048</li> </ul> <p>104111115049049048 are ASCII codes of the key which are concatenated.</p> <p>How can I store these numbers?</p> <p>Is there a better method for doing this?</p> <p>Update: How about MATLAB?</p> http://stackoverflow.com/questions/1567706/how-to-check-for-command-key-held-down-java-swt-at-startup-on-mac-os-x 0 How to check for COMMAND key held down Java/SWT at startup on Mac OS X KKlucznik 2009-10-14T17:11:17Z 2009-11-03T15:13:53Z <p>My app is cross-platform, hence why SWT is being used. I can easily monitor for the Mac Command/Flower key press when the app is running using SWT (they have SWT.COMMAND as a key press). </p> <p>I want to know how to see if the command key is being pressed and held down as the app opens. I found a few examples on here, but those were for caps lock, I need the command key. Any suggestions in Java or SWT code? Thanks.</p> http://stackoverflow.com/questions/1667366/simple-way-to-change-the-key-value-of-an-array-element 0 simple way to change the key value of an array element Evernoob 2009-11-03T13:34:21Z 2009-11-03T14:34:08Z <p>I am reading in a bunch of multi-dimensional arrays, and while digging through them I have noticed that some of the keys are incorrect.</p> <p>For each incorrect key, I simply want to change it to zero:</p> <p>from:</p> <pre><code>$array['bad_value'] </code></pre> <p>to:</p> <pre><code>$array[0] </code></pre> <p>I want to retain the value of the array element, I just want to change what that individual key is. Suggestions appreciated.</p> <p>Cheers</p> http://stackoverflow.com/questions/1656665/using-javascript-to-scroll-iframe-up-and-down 3 Using javascript to scroll iFrame up and down Mickey Cheong 2009-11-01T08:30:33Z 2009-11-01T11:38:00Z <p>Hi,</p> <p>Is it possible to scroll the iframe window from the parent window using keys or javascript? The iframe content is from another domain different from the parent window.</p> <p>KM</p> http://stackoverflow.com/questions/1263350/cryptography-best-practices-for-keys-in-memory 3 Cryptography: best practices for keys in memory? Johan 2009-08-11T22:32:14Z 2009-10-30T02:09:34Z <p>Background: I got some data encrypted with AES (ie symmetric crypto) in a database. A server side application, running on a (assumed) secure and isolated Linux box, uses this data. It reads the encrypted data from the DB, and writes back encrypted data, only dealing with the unencrypted data in memory. So, in order to do this, the app is required to have the key stored in memory.</p> <p>The question is, is there any good best practices for this? Securing the key in memory.</p> <p>A few ideas:</p> <ol> <li>Keeping it in unswappable memory (for linux: setting SHM_LOCK with shmctl(2)?)</li> <li>Splitting the key over multiple memory locations.</li> <li>Encrypting the key. With what, and how to keep the...key key.. secure?</li> <li>Loading the key from file each time its required (slow and if the evildoer can read our memory, he can probably read our files too)</li> </ol> <p>Some scenarios on why the key might leak: evildoer getting hold of mem dump/core dump; bad bounds checking in code leading to information leakage; </p> <p>The first one seems like a good and pretty simple thing to do, but how about the rest? Other ideas? Any standard specifications/best practices?</p> <p>Thanks for any input!</p>