erickson
|
Registered User
|
I like Mario Kart Wii.
|
|
1d |
accepted | Unencrypted SSL protocol? |
|
1d |
revised |
Unencrypted SSL protocol? added 608 characters in body |
|
1d |
answered | Unencrypted SSL protocol? |
|
1d |
comment |
Easy way to store/restore encryption key for decrypting string in java Please see my updated answer. |
|
1d |
revised |
Easy way to store/restore encryption key for decrypting string in java Provide example code.; added 37 characters in body; deleted 76 characters in body |
|
2d |
answered | Easy way to store/restore encryption key for decrypting string in java |
|
2d |
answered | Java sync games: synchronized && wait && notify |
|
2d |
comment |
Java sync games: synchronized && wait && notify First question: what's your question? |
|
Dec 17 |
revised |
Quartz .Net Job calling WCF service edited tags |
|
Dec 17 |
awarded | ● Nice Answer |
|
Dec 16 |
answered | how to get seconds from java long, I’m storing it in mssql DB as bigint |
|
Dec 16 |
answered | c# AES CBC using 2 methods to add 2 pieces of encypted data into one file |
|
Dec 16 |
comment |
Efficient algorithm for determining if a date is in DST Yeah, it always makes me laugh how congress overreacted to Y2K, then blithely changes DST rules with no lead time and with absolutely no consideration of the impact (or desire from their constituents for the change). |
|
Dec 16 |
answered | Check String whether it contains only Latin characters? |
|
Dec 15 |
comment |
Passphrase, Salt and IV, do I need all of these? IV and salt serve similar purposes: they ensure that otherwise identical inputs produce unpredictable outputs. However, a key derivation salt does not obviate the need for an IV. By choosing a new IV for each message, the same password can be used to encrypt many messages. Even if some of the messages are identical, an attacker won't be able to tell. |
|
Dec 15 |
accepted | Passphrase, Salt and IV, do I need all of these? |
|
Dec 15 |
answered | Java Exception Handling - Style |
|
Dec 15 |
comment |
iPhone App Review and SHA1 Many regimes restrict the import of cryptographic software. Authoritarian repression is alive and well. |
|
Dec 15 |
answered | Passphrase, Salt and IV, do I need all of these? |
|
Dec 15 |
comment |
Passphrase, Salt and IV, do I need all of these? A salt is used in the key derivation process. The PKCS #5 standard for key derivation, PBKDF2, uses a salt and an iteration count to derive a key from a password. |
|
Dec 15 |
answered | iPhone App Review and SHA1 |
|
Dec 14 |
answered | Java: Difference in usage between Thread.interrupted() and Thread.isInterrupted()? |
|
Dec 14 |
revised |
Concurrency, object visibility Retract answer. |
|
Dec 14 |
comment |
Concurrency, object visibility It's important to realize that when the thread completes Test.run(), the thread doesn't terminate, and any guarantees about the values written by a thread being flushed to main memory before it terminates do not apply. The run() method thread that invokes your Test.run() is simply a loop, that blocks until it receives a new task to execute. When that task returns from its run() method, the thread blocks until the next task; it doesn't terminate (and thereby, flush its state). |
|
Dec 14 |
comment |
Concurrency, object visibility Yes, whether or not the same thread is used to run Test makes all the difference. If a single thread is guaranteed to run all executions of run(), then it's just normal, single-threaded programming, and the updates will certainly be seen in subsequent invocations by that thread. However, because the task uses no memory barriers, those updates might not be visible to a different thread, including a replacement thread created by the executor. |
|
Dec 14 |
answered | Concurrency, object visibility |
|
Dec 13 |
comment |
Securing private keys against brute force attacks on mobile devices I'd sum up the clarifying comments as, "The symmetric key is too small to protect against a brute force attack." Given the constraints on password size and complexity, getting 64 bits worth of entropy sounds like a stretch. Unfortunately, I can't recommend an alternative the involves a server. I don't know of an existing method, and everything I've devised myself seems to expose too much information as it travels over the network. I'll keep thinking about it. |
|
Dec 13 |
accepted | Can a single Java variable accept an array of either primitives or objects? |
|
Dec 12 |
answered | Can a single Java variable accept an array of either primitives or objects? |
|
Dec 12 |
comment |
Read text from InputStream It is, unfortunately, a common idiom. But I prefer to avoid tests with side-effects. |
|
Dec 12 |
answered | Read text from InputStream |
|
Dec 11 |
answered | Decrement at Regular Intervals in Java |
|
Dec 11 |
answered | Securing private keys against brute force attacks on mobile devices |
|
Dec 11 |
comment |
Securing private keys against brute force attacks on mobile devices @Wim: He didn't say that the same private key was used in every device. I have seen that proposed in some schemes, but it's always a stupid idea. It sounds like paracycle isn't one of those completely clueless folks that suggest such a thing; my assumption is that a unique private key is generated for each user, then protected by symmetric encryption. |
|
Dec 11 |
awarded | ● Popular Question |
|
Dec 11 |
comment |
Algorithm for assigning a unique series of bits for each user? He means that bits can be set by a malicious user, but never cleared. For example, maybe microscopic gold wires are used to represent "clear" bits; a user can overload the device to melt the wire, setting the bit, but there's no way to jumper the connection to clear the bit again. |
|
Dec 10 |
accepted | Java doesn’t follow redirect in URLConnection |
|
Dec 10 |
answered | Java doesn’t follow redirect in URLConnection |
|
Dec 10 |
comment |
Sometimes the packets are only transmitted after the process is ended? [Java] Do you mean that the packets will not be sent until you kill the process, even if you wait forever? Or, do you mean that there is sometimes a little delay after the process terminates normally before the packets are received. |
|
Dec 10 |
comment |
Java double checked locking by forcing synchronization twice, Workable? Check out the "Initialization on Demand Holder" idiom: en.wikipedia.org/wiki/… |
|
Dec 10 |
comment |
Jump over parent constructor to call grandparent’s Animal<-Mammal<-Aquaman: Inherits everything but the lung construction in Mammal, and implements its own gills. ;) |
|
Dec 10 |
answered | Java double checked locking by forcing synchronization twice, Workable? |
|
Dec 10 |
revised |
Why Lua is better for game developement than the iPhone Quartz framework? edited tags |
|
Dec 9 |
awarded | ● Nice Answer |
|
Dec 9 |
answered | Is it ok to put comments about bug fixes in the source code? |
|
Dec 9 |
comment |
Move / Copy File Operations in Java A copy method is non-trivial, and Apache Commons can't handle a common use case: information too large for main memory. A library intended for managing mass storage should have bounds on its memory-consumption, which Apache Commons move method lacks. |
|
Dec 8 |
comment |
What encryption scheme meets requirement of decimal plaintext & ciphertext and preserves length? With that qualification, I agree: as long as you can keep the messages in order, that would work and be secure. It's equivalent to using CTR mode as I suggested in my answer. |
|
Dec 8 |
revised |
What encryption scheme meets requirement of decimal plaintext & ciphertext and preserves length? added 363 characters in body; added 69 characters in body; deleted 29 characters in body |
|
Dec 8 |
comment |
What encryption scheme meets requirement of decimal plaintext & ciphertext and preserves length? You do need a new IV for every message, or this isn't secure. You're re-using the same key stream for every message. As Bruce Schneier says, "The first rule of an output-feedback mode stream cipher, any of them, is that you should never use the same key to encrypt two different messages. Repeat after me: NEVER USE THE SAME KEY TO ENCRYPT TWO DIFFERENT MESSAGES." |
|
Dec 8 |
answered | What encryption scheme meets requirement of decimal plaintext & ciphertext and preserves length? |
