1
vote
2answers
32 views
What characters are allowed in a Google App Engine Key?
While testing my Google App Engine application, I search for links which include app engine keys. For example:
/story/ag5yZXBsaWUtdGVzdGluZ3IMCxIFU3RvcnkY-w0M/
What characters are allowed in these …
0
votes
2answers
169 views
How to modify key in a dictionary in C#
How can I change the value of a number of keys in a dictionary.
I have the following dictionary :
SortedDictionary<int,SortedDictionary<string,List<string>>>
I want to loop …
1
vote
1answer
20 views
How to use generated and encoded key in jce
If I generate a key like this:
SecretKey aesKey = KeyGenerator.getInstance("AES").generateKey();
Then decode it:
System.out.println("used key: " + aesKlic.getEncoded());
And now I want to use …
1
vote
3answers
54 views
Easy way to store/restore encryption key for decrypting string in java
For encryption I use something like this:
SecretKey aesKey = KeyGenerator.getInstance("AES").generateKey();
StringEncrypter aesEncrypt = new StringEncrypter(aesKey, aesKey.getAlgorithm());
String …
1
vote
2answers
24 views
NSIS: What is a registry?
What is a registry in NSIS? How to write to and read from a registry? And what are the imp things to keep in mind while dealing with registry (lk registry key)?
1
vote
2answers
19 views
Gen public key from xml data file using M2Crypto for signature verification.
I have pub key in xml format:
…
2
votes
4answers
99 views
Securing C# Application suggestions
Hi,
I've been looking for a simple key/license system for our users. Its partly to stop piracy (avoid users from sharing the application around) and the other half to track the number of 'licensed …
0
votes
0answers
12 views
Jump to listviewitem by keypress
Hi,
I'm looking for any way - and I'm pretty sure there is a default way but don't now how - to select an item in a listview by pressing a key. And the possiblity to specifity the selection by …
0
votes
1answer
48 views
dictionary data insert or select (oracle, java)
Hello,
I have an table (in ORADB) containing two columns: VARCHAR unique key and NUMBER unique key generated from an sequence.
I need my Java code to constantly (and in parallel) add records to this …
0
votes
1answer
26 views
Fire keydown in Javascript
Using Mootools, but a generic answer is fine.
I would like to remap the 'Enter' key in a web application.
When they hit 'Enter' it should react as though the 'Shift-Enter' has been pressed.
I would …
2
votes
1answer
52 views
Use default KeyMap of native OS
In Java, by using non-default system look and feel we will have different keymap.
For example
I'm using Mac OS X and use Substance look and feel (non-default system look and feel).
The effect is I'm …
0
votes
4answers
60 views
Encryption and Java, method generating key - what size?
I got the following method body to generate a key for encryption:
new BigInteger(500, new SecureRandom()).toString(64);
Could anyone explain what is the size of generated key?
1
vote
1answer
45 views
Is it possible to get the value for a key in a Hashtable without iteration?
Using .NET 3.5, is there a way to retrieve a value from Hashtable corresponding to the key without iteration?
0
votes
0answers
26 views
Subsonic : Can’t decide which property to consider the Key? foreign key issue.
Hi
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 …
0
votes
1answer
29 views
Singluar data-keys between application and database?
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?
I have resorted most recently to …
