... Moderating the list appears to be catching the spam. It is a little time consuming, but worth the effort. I've been thinking about a simple and fast...
... I used to think the same thing. But xor is easy to to use once you hear of it. Not to mention, english is real good with identifying cyphers. I had some...
... You are right. I doubt a password would have a lot of spaces, but we should handle this case. I inserted a "rol" instruction and that seems to fix the...
RE - "using the previous byte as part of the cypher" I believe this is called "run-length encoding" and is a standard step in most encryption algos. ... From:...
... Unfortunately, the rol will only help if the password is in english. The largest danger of encryption keys is when there is a visible pattern in the file...
... Yes, programming seems to be an exercise in reinventing the wheel. We can add a few spokes to the wheel and claim it is ours, but really most code is just...
... step in ... hand, you ... doesn't ... still ... "sub xx" ... worth ... With every spoke it's harder, with every spoke it's slower. This is the price of...
Announce: Work on the "copy" program has stopped for now. The latest version has a few new featrues and can be found on the web page. I think it is version...
This is about migrating linuxasmtoolss. I keep trying new distributions of linux and having to migrate a lot of tools. The process keeps getting improved, and...
Hi all, The latest version of nasm (2.04) will not compile asmtools. I can fix the problems, but it will take awhile. The problems with nasm that I"ve found...
... Sh*t! I was supposed to help by testing that, too. My apologies all around! Quick fix: export NASMENV=-Ox ... Yes. This appears to be broken. I haven't...
... The problem with 2 is interesting... FFDF is only 2 bytes, however the extra 0 might be the cause of that problem. As for problem 1, that's always a pain...
... I've run into problems with byte values also. I haven't checked, but "and al,0dfh" might be a problem? We might be able to fix this and also save two...
... Well.. You won't find any bugs in my programs! <grin> Just kidding, I don't think any large program is free of bugs. It takes years to get the bugs out...
... Yep. The two "improvements" to Nasm that are causing you problems really *are* improvements... or will be, once the unintended consequences get ironed...
... Yea, "0dfh" might be a problem. Instead try "dfh." If the problem is the value, it's probably the O. Even though the 0 shouldn't have an effect, some "bug...
... Removing the "0" creates a label "dfh". I think nasm needs the "0" to tell it a value follows. I have modified the source and fixed the problem, so it...
... I don't think it should be happening, though. Nasm is "trying harder"... "and ax, 0FFDFh" *can* be coded as a signed byte, so Nasm is "trying" to. I don't...
... This is true. However, i was thinking of writing a fasm tutorial on object orientation in assembly using structures to prove a point that object...
announce - assembler program release The program FileSet has been released. FileSet is a interactive program to set file attributes, owners, and create hard...
Here are two options that might be more persuasive: 1) Building classes using HLA: http://webster.cs.ucr.edu/AoA/Windows/HTML/ClassesAndObjects.html#998258 2)...
Hi all, I've dumped a snapshot to the web site. The following programs were updated with bug fixes: domac asmview asmtrace asmbug asmlib copy all the best,...
Hi all, This is a discussion of file managers. The file manager might be the most used program on my computer. An editor would be its only competition. Next,...
Nasm 2.05rc1 is available at SourceForge. <http://sourceforge.net/project/showfiles.php?group_id=6208> Alternate (new!!!) address: http://www.nasm.us/ I failed...
Hi All, This is a promotion of AsmFile. To view a file using the AsmFile program, it is necessary to highlight the file and press F3. Alternatively, it can be...
Not quite it. That is using "class." i'm restricted to "struc" when using fasm. There are some things that i think i can hack together to make this work, but...