| bio | website | |
|---|---|---|
| location | Netherlands | |
| age | 39 | |
| visits | member for | 2 years, 3 months |
| seen | 3 hours ago | |
| stats | profile views | 1,649 |
Java and security expert with over 10 years of experience with the language and with the practical application of cryptographic protocols - including the design of protocols within international standardization bodies. Creator of a heavily used common criteria certified product. Over 30 years of experience with computers. Likes kids, cats, reading, movies and several sports.
|
Feb 5 |
answered | Is a secret key for encrypted authentication required? |
|
Feb 4 |
comment |
Java: TCP Encryption, SSL and Netty Note that what you need client authentication to authenticate the client, in other words, although this will protect messages in transit, server authentication alone means anybody can be the client, at least at transport protocol level (web clients normally use a username/password or cookies to add application level authentication for the client, of course). |
|
Feb 4 |
answered | Java: TCP Encryption, SSL and Netty |
|
Feb 4 |
comment |
How to maintain encrypted file content-type? @beny23: you might want to post this as an answer...It's pretty common practice |
|
Feb 4 |
comment |
How to maintain encrypted file content-type? If the file is deleted or changed it will create an issue too. |
|
Feb 4 |
answered | AES encryption/decryption |
|
Feb 4 |
comment |
PHP openssl_get_publickey() not a public key Or at least the format of the keys is not the same, I think they can both use RSA keys. |
|
Feb 4 |
comment |
what is meant by security strength of random number? Somehow I got the feeling that's not the right answer... |
|
Feb 3 |
comment |
Using SHA1 and RSA with java.security.Signature vs. MessageDigest and Cipher Note that if the result is still not correct after this, then it might be that the underlying crypto library uses random padding for any encryption operation. This seems to be a common mistake. |
|
Feb 2 |
comment |
Issues in RSA encryption in Java class Absolutely. 11 bytes padding, 8 of which are random because otherwise "yes" would always encrypt to the same value, thus leaking information. The first and last bits are used to twart some attacks. |
|
Feb 2 |
comment |
what is meant by security strength of random number? Note that the actual security strength of SHA-1 is actually lower than the 80 (160 / 2, where 160 is the output size) because of weaknesses found (at the time of writing it should hoover around 63 to 67 bits of security). Depending on the context, you might be in trouble proposing SHA-1 for a minimum security strength of 80 bits. |
|
Feb 1 |
comment |
How do I safely stop multiple threads? Small hint: I would give the "worker threads" a slightly lower priority than the management thread (in this case the threads performing the GUI event handling, probably set to default or higher prio). Otherwise, if you create (too) many threads, you may have a hard time killing them. That said, if you are performing file actions, your threads will probably spend most of the time waiting for the kernel to return, making the above point moot. |
|
Feb 1 |
comment |
CryptEncrypt AES 256 fails at encrypting last block ECB mode encryption is unsafe in almost all circumstances. It can use the same padding mechanisms as CBC (PKCS#7 padding is used most of the time), so the answer is valid for both. Use CBC instead of ECB and prepend your cipher text with a random IV to be safe(r). |
|
Feb 1 |
revised |
Current best way to populate mixed type byte array example code using long and the given number of octets |
|
Feb 1 |
comment |
Current best way to populate mixed type byte array I've given an answer for the normal size of the integers and doubles. You may store the integer in a ByteBuffer and retrieve the last #size of bytes (of the 4) if you want to downsize, checking that the first bytes are indeed zero, or you will loose data. This will be harder for doubles, you might have to create your own format if you want to downsize, loosing precission in the process. |
|
Feb 1 |
revised |
Current best way to populate mixed type byte array string encoding |
|
Feb 1 |
answered | Current best way to populate mixed type byte array |
|
Feb 1 |
revised |
CryptEncrypt AES 256 fails at encrypting last block added 171 characters in body |
|
Feb 1 |
answered | CryptEncrypt AES 256 fails at encrypting last block |
|
Feb 1 |
comment |
CryptEncrypt AES 256 fails at encrypting last block What the heck does ENCRYPT_BLOCK_SIZE do? Do you have a pointer to the example used? |