1
vote
2answers
22 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
164 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
3answers
53 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
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
1answer
96 views
RSA pubkey file type detection
Hi all!
I got a RSA pubkey.dat (almost obvious what it is) that has the following structure on contents:
ASN1 Integer of around 1024 bits (Modulus)
ASN1 Integer (Exponent)
Blob of 256 bytes …
1
vote
2answers
22 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
98 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 …
1
vote
3answers
80 views
array component with string keys
About two years ago I have found a component that can be used to create array with string keys on delphi... anyone know a component like this??
0
votes
0answers
11 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
47 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
5answers
504 views
How do you disable the key click sound in windows ce?
Out-of-the-box WinCE (5.0 and 6.0) images with the shell seem to have a key click sound that plays on each keystroke.
How can I turn this sound off, while leaving the audio system otherwise alone? (I …
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?
