10,635 reputation
31140
bio website
location Netherlands
age 39
visits member for 2 years, 3 months
seen 28 mins ago
stats profile views 1,674

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.


46m
comment Dependencies for jdt.compiler cannot be found
The binary plugin does work and ASTView does not seem to be changed lately, so I don't think mentioning that I used the latest Eclipse Juno (4.2) release matters much.
18h
comment RSA sign error with SHA384
Could you post that as an answer, Francesco? Then we can upvote and you can accept the answer after a while, so it is considered answered.
18h
comment ACR122L revert from card read mode
I would first check if a card is available. If the reader gets stuck, then by all means reset the device. Normally card readers don't hold much state, so resetting the device programmatically should not be such an issue (if you can do this programmatically, of course). It's strange behavior none the less.
18h
comment Store primitive values in an EnumMap
let us continue this discussion in chat
18h
comment Store primitive values in an EnumMap
Yes you can. But I would spread it over multiple lines of course. Just add all trolls at the start, with a count of zero, and you can be 100% sure there is an entry :)
18h
comment From Java Code to Class Diagram
I could think of a few valid reasons for an empty class, but I think in general @LuiggiMendoza is on the right track. Uh, see Dave's comment 10 seconds earlier :)
18h
comment Store primitive values in an EnumMap
Depends, if your code should really run super-fast, then you might get into trouble. Otherwise you just loop over the keys, get the value, increment it and put it back in.
18h
comment Store primitive values in an EnumMap
Integer is the object variant of int. Auto-boxing is "converting" the int to an Integer object instance by the compiler (so you seem to store an int, but it is converted to Integer). Note that null can probably be stored in the Map, but an int can obviously not be null (as isn't an object reference at all, just a value). I'll let you guess auto-unboxing :)
1d
comment Does Asp support Hash (bcrypt) Passwords like in PHP
It would be better if you would at least salt the password, just suggesting SHA-256 is relatively dangerous, it would be susceptible to rainbow table attacks and identical passwords will hash to the same value. Normally I would just create an implementation of bcrypt but I'm extremely limited in my time.
1d
comment Regex - matching all between second set of brackets ([])
@HamZaDzCyberDeV well, it is answering the question and does not require a bit of a code change as my answer does, seems your fu is working :)
1d
comment CryptoJS AES and Java AES encrypted value mismatch
Glad you found another option. Be aware that using JavaScript for encryption purposes may slow down your server application considerably (when used on a large amounts of bytes). Without going into a performance battle, JavaScript is considerably slower than Java, which in turn is considerably slower than a native solution for cryptography related functionality. Please do not abandon the question because you found another option, the question is still valid.
1d
comment Regex - matching all between second set of brackets ([])
@HamZaDzCyberDeV I think using a group is a lot less complex, and makes for a more readable regular expression.
1d
comment Regex - matching all between second set of brackets ([])
Note that this matches more than just the numbers, but it makes it easy to retrieve the number without making the regular expression unnecessarily complex (e.g. using positive look-ahead or look-behind). Groups are much more used than those.
1d
comment Hash set function for hashing
It's a bit strange to use a telephone number as an index. A phone number does not normally identify a person. It is possible to write a telephone number multiple ways, so the telephone number needs to be canonicalized before it can be used as an index. Finally, if you want to have a lookup based on a telephone number, you are better off using a (hash) map instead of a set.
1d
comment Hash set function for hashing
@MonsterMonster I don't understand, what is keeping you from doing just that?
1d
comment Does Asp support Hash (bcrypt) Passwords like in PHP
No, using a function like bcrypt is definitely better in a cryptographic sense than using SHA-256.
1d
comment What is secured way to store symmetric key AES?
Encrypted with the public key. You cannot establish a secure channel without first establishing some kind of trust relationship. In this case the trust of a public key from the other party establishes the trust. Basically you cannot have confidentiality if you don't know who will receive the data. If the data travels with you you can use PBKDF2, a password based key derivation mechanism and remember the password.
2d
comment How to encrypt the a string with a public key?
There is no such thing as a "string byte". You probably just mean a (text) string or string of characters.
2d
comment bad practices in Apple’s sample code for the doCipher:key:context:padding method
On the other hand, simply pointing to SecRandomCopyBytes may be more useful, and prefixing the IV to the ciphertext may be another. Random numbers are not just nuances for correct execution of crypto.
2d
comment I can't answer any quuestion on stackoverflow
Have you tried reading the FAQ? I don't think so, because I just had to mark this question off topic... You may also want to place a flag instead of asking on Meta...