-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
[uuencode, uudecode]: fix uuencode, uudecode and write their tests #106
[uuencode, uudecode]: fix uuencode, uudecode and write their tests #106
Conversation
…he encoding and fixing the permission symbolss, base64 output
the algorithm for historical encoding is mentioned at : https://pubs.opengroup.org/onlinepubs/9699919799/utilities/uuencode.html |
btw @jgarzik, do we plan on using spaces for the uuencode what i found out was the encoder algorithm mentioned in the posixutils specification so currently its upto us which one we choose, use the character ` instead of space or use the SPACE itself at the default ASCII position of 32 FYI: ` is preferred(and also most tools are implemented to replace SPACE with that character, including the official implementation at sharutils), the advantage of ` over SPACE is that it allows the string to be not truncated because of some tool So, the question is do i use the default SPACE at the ascii position 32 or the character ` btw, both of them work, it's just the optimization towards real world use case |
Postel's Law is the meta-answer: uuencode should produce what is maximally likely to be accepted by the widest range of tools. uudecode should accept what is "out there on the Internet" as existing UUE format. |
… and text file as the binary input
hey @jgarzik, uuencode and uudecode are ready to be used now |
Few changes have been done on uuencode.rs
The crate that was used i.e "uuencode", it seems that it outputs the permission symbols always as "644", which should be in fact the permission symbol of the file being "read", so i've removed the usage of uuencode from uencode.rs and implemented the historical encoding i.e the encoding used by uuencode as default(works well)