File: README

package info (click to toggle)
secnet 0.6.8
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 1,956 kB
  • sloc: ansic: 15,234; python: 1,057; perl: 966; sh: 596; tcl: 484; java: 231; asm: 114; yacc: 89; php: 64; makefile: 48; awk: 40
file content (16 lines) | stat: -rw-r--r-- 575 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
This is a (slow) AWK implementation of the basE91 decoder. It decodes from
standard input to standard output.

Example usage:

	awk -f b91dec.awk < file.b91 > file.bin
  or
	./b91dec.awk < file.b91 > file.bin


Be careful on non-Unix systems! - During output, some ported versions of awk
automatically convert byte values of 0x0A to the native line break sequence of
the host system (e.g. 0x0D 0x0A under DOS/Windows). This can result in corrupt
binary files.
You should test on some examples and compare the output of b91dec.awk with the
original data before relying on it.