Forum: Assembly Dec 14th, 2007 |
| Replies: 9 Views: 1,950 It helps alot~ I tend to understand examples of how things easier. |
Forum: Assembly Dec 14th, 2007 |
| Replies: 9 Views: 1,950 my encoding algorithm is ok~ Im getting the proper encoding that you have up there just the forum screwed up my spacing a little. MY decode algorithm is what is causing me an issue~
"TWFuICAgQQ=="... |
Forum: Assembly Dec 13th, 2007 |
| Replies: 9 Views: 1,950 hmm basically like this
say I type in
lets say I encode "Man A", it encodes properly of course "TWFuICAgQQ==" but when I decode it I get the output "Man # A", there are 2 spaces between Man and... |
Forum: Assembly Dec 13th, 2007 |
| Replies: 9 Views: 1,950 I figured it out and its working for almost every case but it doesnt work with odd spacing. I dont understand that as much but will be fixable~
(Like pressing the space bar 3 times produces this... |
Forum: Assembly Dec 12th, 2007 |
| Replies: 9 Views: 1,950 Well I made a base64 table for my encoding program, would I need to make an Ascii table for my decoding? That is basically my issue and train of thought at the moment since the ascii table is... |
Forum: Assembly Dec 12th, 2007 |
| Replies: 3 Views: 900 First question is to ask yourself, what exactly does a CRC do. Although wikipedia is not exactly the safest source of information it is usually for the msot part reliable with topics like this. ... |
Forum: Assembly Dec 12th, 2007 |
| Replies: 9 Views: 1,950 Hmm,I understand by using repne scasb, pointing DI to the base64 string is supposed to search the string for the character that is in the input but not much of how to use it for decoding purposes. ... |
Forum: Assembly Dec 11th, 2007 |
| Replies: 4 Views: 1,141 Thanks~ Definately helps, I was able to make a working program that perfectly encodes into Base64 100% of the time. As for decoding I decided to start working on it soon, thanks for the tip on how... |
Forum: Assembly Dec 11th, 2007 |
| Replies: 4 Views: 1,141 xlat is definately a nifty feature, just applied it. That said it is defiantely working better but still working hard on it!. I will look into more in depth how to fix it with the suggestions you... |
Forum: Assembly Dec 11th, 2007 |
| Replies: 4 Views: 1,141 Hey, im trying to make an assembly program which encodes a file using base64.
Anyway I have a program that works in converting the word "Man" to TWFu. Problem is it does not convert anything... |