| bio | website | vyznev.net |
|---|---|---|
| location | Helsinki, Finland | |
| age | ||
| visits | member for | 2 years, 9 months |
| seen | 19 hours ago | |
| stats | profile views | 593 |
I like programming in Perl and C. I know Java and PHP too (I'm a MediaWiki developer), but I can't really say I like them. I keep meaning to learn Python some day, but never seem to get around to it.
I'm working on a Ph.D. in biomathematics. I also like programming puzzles and cryptography.
Please consider any (original) code I post to Stack Overflow (and other Stack Exchange sites) to be released under CC-Zero unless stated otherwise. You may do whatever you want with it and don't have to credit me in any way, although of course that would be nice.
|
1d |
comment |
python serialize the whole package? Wouldn't it be easier not to hardcode the keys in the source? |
|
1d |
comment |
How do I escape single quotes with perl interpreter? I wouldn't recommend this, since quite a few characters commonly used in Perl code (most notably !) have a special meaning to bash even inside double quotes. |
|
1d |
comment |
RSA encryption theory - modulo theory crypto.stackexchange.com could work too. |
|
2d |
comment |
Hashing Sequences of Integers Yes. C arrays don't store their own length, so you need to pass it to the function somehow. |
|
2d |
comment |
WSO2 Identity Server Specific questions 2 Unfortunately, it seems the WSO2 folks didn't bother to ask us before pointing their users here. Questions like this are off topic for Stack Overflow, and should not be asked here. Please try the other support channels listed on the WSO2 site instead. |
|
May 16 |
comment |
Inverse convolution of image It's complex division, just as ordinary convolution in Fourier space needs complex multiplication. Ps. I haven't used FFTW, but I believe the plan you should be using is fftw_plan_dft_r2c_2d(). |
|
May 15 |
comment |
Inverse convolution of image I believe the output of rfft2 is complex, but it omits the symmetrical half of the output you'd get from applying a generic complex FFT to real input. It's not a DCT. Anyway, any FFT routine should do it. And yes, / on numpy arrays just does element-wise division (i.e. multiplication by inverse). I think I can provide C code with GSL later if you need it (but not now, I'm not sober enough for that at the moment). |
|
May 15 |
comment |
Coding differences (e.g., syntax?), C/C++ Your question seems rather vague and open ended for Stack Overflow. To quote from our FAQ: "You should only ask practical, answerable questions based on actual problems that you face. Chatty, open-ended questions diminish the usefulness of our site and push other questions off the front page." |
|
May 13 |
comment |
Java Cryptography Extension (JCE) Unlimited Strength failing randomly ...and are you consistently getting this exception on some computers and not on others? |
|
May 11 |
comment |
Add salt to pycrypto KDF - useful? @Thomas: That actually exists, but it's sadly limited to a few specific target sites. (Currently, it seems one can vote to migrate questions from SO to meta.SO, SU, tex.SE, dba.SE and, for some reason, sharepoint.SE.) Also, it's kind of flawed in that having the privilege only depends on your rep at SO, not at the target site. (For example, IIRC, ServerFault used to be a valid migration vote target from SO, but apparently they asked to have that turned off because they were getting too many migrated questions that were off topic there too.) |
|
May 10 |
comment |
Add salt to pycrypto KDF - useful? @Thomas: Most users can't migrate, only ♦ mods can do that. The last time I asked them about it, they seemed somewhat disinclined to migrate questions that weren't of particularly high quality. I suppose I can sort of see the point: for questions that haven't been answered yet, just closing them with a comment pointing to the appropriate site achieves essentially the same thing as migration, but without consuming the few and already busy moderators' time. |
|
May 8 |
comment |
Encrypting and decrypting a string using Rijndael You know, looking at your recent rep history, I think you may be getting hit by a serial downvoter or several (or possibly several socks of one person). If the votes don't get reversed automatically, you may want to contact a mod. |
|
May 3 |
comment |
order hash perl using another array What's the point of the no-op map? |
|
May 3 |
comment |
Querying cursor position with ANSI escape codes Related: stackoverflow.com/questions/8343250/… |
|
Apr 30 |
comment |
Get MediaWiki session() username You're welcome. If your problem has been solved, don't forget to mark one of the answers as accepted by clicking the check mark icon to the left of it. Once you have 15 rep on this site, you can also upvote any answers that you like using the arrow icons. |
|
Apr 29 |
comment |
Parallelizing AES GCM in BouncyCastle @Thomas: For GCM, that kind of shoehorning might just be possible, depending on the exact API provided by the library. In particular, it's almost possible to break a message into pieces, encrypt each piece with GCM mode and assemble the results into a valid GCM encryption of the whole message; there are just a few pesky little interface details, like the restrictive IV processing, that can get in the way. Still, even if possible, it's not easy and definitely counts as using the interface in a way it was not meant to be used. |
|
Apr 29 |
comment |
Get MediaWiki session() username A quick and dirty way to get the MediaWiki user name is to just use $_COOKIE["xxxUserName"], where xxx is the cookie prefix for your wiki (which will be based on the database name/prefix, if you haven't set it explicitly). If you're not sure what it is, peek in your browser's cookie jar to check. |
|
Apr 25 |
comment |
Is this a sensible password usage scheme? @Carlos: en.wikipedia.org/wiki/Secure_Remote_Password_protocol |
|
Apr 25 |
comment |
Using + to concat string in Java Doesn't / shouldn't the compiler do that micro-optimization for you anyway? Or, to look at it from another angle, can there be any value of foo for which (foo + "a") + "b" would ever be different from foo + "ab"? |
|
Apr 25 |
comment |
Is this a sensible password usage scheme? @Carlos: The JS code that hashes the password is going over the wire, unencrypted, from the server to the client. An attacker who can intercept requests can change it to do whatever they want. (That's all assuming that you want to do this on a website. If you have a custom protocol with a dedicated client program, your suggestion becomes a lot more feasible. In that case you might want to take a look at SRP, though.) |