Theran

1,148
reputation
398 views

Registered User

name Theran
member for 1 year
seen 1 hour ago
website
location Tucson, AZ
age 27
2d
comment Encrypting 3rd party credentials
-1 Storing the hash is just as bad as storing the password in this case. If an attacker gains access to the hash he can simply derive the key and use that to decrypt the account data.
2d
answered What is the safest algorithm in Kohana’s auth module?
2d
comment Interpolation in SciPy: Finding X that produces Y
@JcMaco, the first use of UnivariateSpline is just to make a pretty plot. The second usage is what actually gives the values.
Dec
8
comment Philosophical Design Questions for OOP-Tetris
+1 Inheritance is unnecessary, even harmful, because we want all pieces to have the same behavior. The pieces only differ in their shape and color. The only instance I can think of where you'd want special behavior is something like the "t-spin" bonus scoring in Tetris DS, but that could be better handled as a special case in the scoring code. Don't use the class hierarchy as a substitute for the if() {} statement.
Nov
25
awarded  Yearling
Nov
17
answered How to detect whether two files are identical in Python
Nov
14
awarded  Nice Answer
Nov
11
revised Converting vector-contoured regions (borders) to a raster map (pixel grid)
fixed line wrapping of image
Nov
9
revised Converting vector-contoured regions (borders) to a raster map (pixel grid)
added picture and further refinements
Nov
9
answered Converting vector-contoured regions (borders) to a raster map (pixel grid)
Oct
29
comment Python - Working around memory leaks
It is possible to leak memory in Python if you have stray references sitting around into a data structure (e.g. a class that remembers its instances, or a results array that contains references to tree nodes that themselves contain references into the rest of the tree). The GC will also be unable to collect objects if your classes have both __del__ methods and circular references.
Oct
27
revised Code Golf: Lasers
added detailed description of how the program works
Oct
5
answered Find the number of congruent triangles?
Oct
4
answered Where do you draw the line between what is “embedded” and what is not?
Sep
26
revised Code Golf: Lasers
used semicolons to save a few chars of indentation whitespace
Sep
26
revised Code Golf: Lasers
shaved off 2 more chars, and made more readable to boot
Sep
26
revised Code Golf: Lasers
255 chars! woo hoo!
Sep
26
revised Code Golf: Lasers
even shorter, now 277 chars
Sep
26
revised Code Golf: Lasers
shaved of a char
Sep
26
answered Code Golf: Lasers
Sep
20
revised Creative uses for cryptography beyond the usual encryption/authentication
made community wiki
Sep
15
answered random and unique subsets generation
Sep
15
answered Symmetrically adressable matrix
Aug
24
accepted Other ways of protecting cookies
Aug
24
comment Smart Indent algorithm documentation?
@280Z28, I don't think you'll ever make this truly language agnostic, but assuming that you can at least approximately tokenize the language in question, what's wrong with incrementing the indent level for each opening brace/paren/bracket token, and decrementing it for each closing one? Note that this doesn't require the code to be grammatically correct, just tokenizable.
Aug
24
comment Good graph traversal algorithm
BFS might be better because it will look at the nearest nodes to the initial one first, which is likely to give a useful subset early on. BFS also avoids the risk of recursion 250,000 levels deep and could keep its queue in the same DB as the final graph (assuming a RDBMS).
Aug
24
comment What’s your most controversial programming opinion?
I completely disagree with this opinion, so I'm upvoting it.
Aug
24
answered Clearing out a c# byte array with sensitive data
Aug
24
comment Other ways of protecting cookies
The article's original location is 404ed, but securityfocus.com/blogs/2009 has a copy of an article by Thomas Ptacek that explains exactly this sort of situation. I think its true home was at matasano.com/log/1749/… in case it comes back.
Aug
24
comment Other ways of protecting cookies
@silky, You can indeed manipulate the plaintext through the ciphertext without knowing the key. The reason is that for most block cipher modes of operation, changing one bit in the ciphertext changes a corresponding bit in the plaintext, and garbles one other block. By doing this cleverly, you can make the garbled block irrelevant and trick the server into doing what you want with the ungarbled blocks.
Aug
24
answered Other ways of protecting cookies
Aug
15
comment What color scheme do you use for programming?
Looks like colored chalk on a blackboard. Nice.
Aug
15
answered What general purpose language should I learn next?
Aug
15
answered How to make sure elements of HTML form have not been changed in purpose of hacking on client side before submit?
Aug
10
answered Learning Digital Signal Processing
Aug
10
comment Which path module or class do Python folks use instead of os.path?
Hear hear! There's nothing so horribly wrong with the standard os.path module to warrant adding more dependencies to your project. If you have a particularly hairy path construction problem, like constructing a path out of an object hierarchy, then why not wrap that in a function? The next programmer will thank you for encapsulating it, and for not making him learn and debug a whole other module.
Aug
4
accepted Changing palette’s of 8-bit .png images using python PIL
Aug
4
awarded  Commentator
Aug
4
comment How to choose an AES encryption mode (CBC ECB CTR OCB CFB)?
Yes, I misspoke. It's the IV/nonce that should change for CTR mode, but that gets combined with the counter before encrypting, so I tend to just think of it as a random starting point for the counter. As far as only having to use the cipher in the encrypting direction saving space, for many ciphers you only have to reverse the subkeys to decrypt. AES is a bit bulky for decrypting, but it's not like you can implement it on a uC with 128 bytes of RAM anyways. The subkeys take more RAM than that!
Aug
4
revised How to choose an AES encryption mode (CBC ECB CTR OCB CFB)?
added details and clarification about IVs being especially important for CTR mode
Aug
3
answered How to choose an AES encryption mode (CBC ECB CTR OCB CFB)?
Jul
31
revised Changing palette’s of 8-bit .png images using python PIL
fixed bad grammar :)
Jul
31
answered Changing palette’s of 8-bit .png images using python PIL
Jul
13
asked Creative uses for cryptography beyond the usual encryption/authentication
Jul
8
accepted Angular Momentum Transfer equations
Jun
30
awarded  
Jun
24
comment Decomposing a 3d mesh into a 2d net
Ok, I finally pulled it out and put it up at code.google.com/p/unfolder
Jun
19
answered Calculate maximum size for encypted data
Jun
19
comment How do I encrypt a string and get a equal length encrypted string?
@Christian80 Turns out you're right. Why Microsoft would add it to the enumeration and not bother ever implementing it is a mystery to me.
Jun
19
revised How do I encrypt a string and get a equal length encrypted string?
updated to reflect the lack of CTS support in .net