├── .gitignore ├── .travis.yml ├── COPYING ├── README.md ├── aisnmea ├── assembler.go ├── nmea.go ├── nmea_test.go ├── tagblocks.go ├── tagblocks_test.go └── testdata │ └── aistest.nmea ├── aisnmeafast └── parse.go ├── bench_decode_test.go ├── codec.go ├── codec_gen.go ├── decode_fail_test.go ├── decode_test.go ├── deep_compare_archive_test.go ├── encode_fail_test.go ├── fast_parse_test.go ├── frequency_test.go ├── fuzz_test.go ├── go.mod ├── go.sum ├── messages.go ├── misc_test.go ├── parser_generator └── main.go ├── reencode_test.go ├── regression_test.go ├── testdata └── fuzz │ └── FuzzDecode │ ├── 025caf5c6dbaa075 │ ├── 0349eb2bd0c44077 │ ├── 06050d19af284668 │ ├── 093cb56fffbf94fd │ ├── 109055c792244837 │ ├── 11363f8618cc358a │ ├── 11e0d5b43bfb3f4a │ ├── 12236e7cfa6d3c6d │ ├── 12f7394829c56941 │ ├── 142af0249afd017e │ ├── 1729e78132f0c1a5 │ ├── 1b798c93fe8abcaa │ ├── 28191f05922d99a5 │ ├── 3260c1f25da96b10 │ ├── 353531f5eab56a3e │ ├── 396d2879cec27cef │ ├── 3bee6b57ced0de20 │ ├── 3c46d539f96333a0 │ ├── 3d67e35bf70a1fb4 │ ├── 3fdccc6f5dfb6bd4 │ ├── 3ffaf61d561075cb │ ├── 49ce0d1889fef548 │ ├── 54db8f3897e0e3d1 │ ├── 582528ddfad69eb5 │ ├── 601287471903a79b │ ├── 626c14495091fbda │ ├── 69ab07145f84dd44 │ ├── 791b283967c37133 │ ├── 7dde965263e1468d │ ├── 7e84a078b4c4ba47 │ ├── 7ef689ae07fdd69a │ ├── 922c7332474e1c9d │ ├── a68da968eb2f8cc9 │ ├── b4bdc17c221a0cf0 │ ├── b7228afa5470bd32 │ ├── ba43e9ad1954d48c │ ├── bb713fdff6ef4677 │ ├── bc5e62cb5a6d3380 │ ├── c0b2075a8c0de2b2 │ ├── c95695e603dd7676 │ ├── d1f9b9f5d1d1b972 │ ├── d2b58bbd296c4ebb │ ├── d9eeedec0f906148 │ ├── dab92318baf2e51b │ ├── dc271c78e85a2727 │ ├── dc39209e18083326 │ ├── e4cccf31fdf8a02a │ ├── e4f3a761f8daec57 │ ├── e5a91fa25e74a2d9 │ ├── e5b72757c9c9ea05 │ ├── eb70f8161fe4d785 │ ├── ec0ba1c2b82c069b │ ├── f63cd94ea5a7672c │ ├── f73889f04d491c1e │ ├── f81dd179741848a1 │ └── fd00f8a48404c1e8 └── testmsg ├── 1.msg ├── 10.msg ├── 11.msg ├── 12.msg ├── 13.msg ├── 14.msg ├── 15.msg ├── 16.msg ├── 17.msg ├── 18.msg ├── 19.msg ├── 2.msg ├── 20.msg ├── 21.msg ├── 22.msg ├── 23.msg ├── 24.msg ├── 25.msg ├── 26.msg ├── 27.msg ├── 3.msg ├── 4.msg ├── 5.msg ├── 6.msg ├── 7.msg ├── 8.msg └── 9.msg /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/.travis.yml -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/README.md -------------------------------------------------------------------------------- /aisnmea/assembler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/aisnmea/assembler.go -------------------------------------------------------------------------------- /aisnmea/nmea.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/aisnmea/nmea.go -------------------------------------------------------------------------------- /aisnmea/nmea_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/aisnmea/nmea_test.go -------------------------------------------------------------------------------- /aisnmea/tagblocks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/aisnmea/tagblocks.go -------------------------------------------------------------------------------- /aisnmea/tagblocks_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/aisnmea/tagblocks_test.go -------------------------------------------------------------------------------- /aisnmea/testdata/aistest.nmea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/aisnmea/testdata/aistest.nmea -------------------------------------------------------------------------------- /aisnmeafast/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/aisnmeafast/parse.go -------------------------------------------------------------------------------- /bench_decode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/bench_decode_test.go -------------------------------------------------------------------------------- /codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/codec.go -------------------------------------------------------------------------------- /codec_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/codec_gen.go -------------------------------------------------------------------------------- /decode_fail_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/decode_fail_test.go -------------------------------------------------------------------------------- /decode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/decode_test.go -------------------------------------------------------------------------------- /deep_compare_archive_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/deep_compare_archive_test.go -------------------------------------------------------------------------------- /encode_fail_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/encode_fail_test.go -------------------------------------------------------------------------------- /fast_parse_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/fast_parse_test.go -------------------------------------------------------------------------------- /frequency_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/frequency_test.go -------------------------------------------------------------------------------- /fuzz_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/fuzz_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/go.sum -------------------------------------------------------------------------------- /messages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/messages.go -------------------------------------------------------------------------------- /misc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/misc_test.go -------------------------------------------------------------------------------- /parser_generator/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/parser_generator/main.go -------------------------------------------------------------------------------- /reencode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/reencode_test.go -------------------------------------------------------------------------------- /regression_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/regression_test.go -------------------------------------------------------------------------------- /testdata/fuzz/FuzzDecode/025caf5c6dbaa075: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testdata/fuzz/FuzzDecode/025caf5c6dbaa075 -------------------------------------------------------------------------------- /testdata/fuzz/FuzzDecode/0349eb2bd0c44077: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testdata/fuzz/FuzzDecode/0349eb2bd0c44077 -------------------------------------------------------------------------------- /testdata/fuzz/FuzzDecode/06050d19af284668: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testdata/fuzz/FuzzDecode/06050d19af284668 -------------------------------------------------------------------------------- /testdata/fuzz/FuzzDecode/093cb56fffbf94fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testdata/fuzz/FuzzDecode/093cb56fffbf94fd -------------------------------------------------------------------------------- /testdata/fuzz/FuzzDecode/109055c792244837: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testdata/fuzz/FuzzDecode/109055c792244837 -------------------------------------------------------------------------------- /testdata/fuzz/FuzzDecode/11363f8618cc358a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testdata/fuzz/FuzzDecode/11363f8618cc358a -------------------------------------------------------------------------------- /testdata/fuzz/FuzzDecode/11e0d5b43bfb3f4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testdata/fuzz/FuzzDecode/11e0d5b43bfb3f4a -------------------------------------------------------------------------------- /testdata/fuzz/FuzzDecode/12236e7cfa6d3c6d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testdata/fuzz/FuzzDecode/12236e7cfa6d3c6d -------------------------------------------------------------------------------- /testdata/fuzz/FuzzDecode/12f7394829c56941: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testdata/fuzz/FuzzDecode/12f7394829c56941 -------------------------------------------------------------------------------- /testdata/fuzz/FuzzDecode/142af0249afd017e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testdata/fuzz/FuzzDecode/142af0249afd017e -------------------------------------------------------------------------------- /testdata/fuzz/FuzzDecode/1729e78132f0c1a5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testdata/fuzz/FuzzDecode/1729e78132f0c1a5 -------------------------------------------------------------------------------- /testdata/fuzz/FuzzDecode/1b798c93fe8abcaa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testdata/fuzz/FuzzDecode/1b798c93fe8abcaa -------------------------------------------------------------------------------- /testdata/fuzz/FuzzDecode/28191f05922d99a5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testdata/fuzz/FuzzDecode/28191f05922d99a5 -------------------------------------------------------------------------------- /testdata/fuzz/FuzzDecode/3260c1f25da96b10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testdata/fuzz/FuzzDecode/3260c1f25da96b10 -------------------------------------------------------------------------------- /testdata/fuzz/FuzzDecode/353531f5eab56a3e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testdata/fuzz/FuzzDecode/353531f5eab56a3e -------------------------------------------------------------------------------- /testdata/fuzz/FuzzDecode/396d2879cec27cef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testdata/fuzz/FuzzDecode/396d2879cec27cef -------------------------------------------------------------------------------- /testdata/fuzz/FuzzDecode/3bee6b57ced0de20: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testdata/fuzz/FuzzDecode/3bee6b57ced0de20 -------------------------------------------------------------------------------- /testdata/fuzz/FuzzDecode/3c46d539f96333a0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testdata/fuzz/FuzzDecode/3c46d539f96333a0 -------------------------------------------------------------------------------- /testdata/fuzz/FuzzDecode/3d67e35bf70a1fb4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testdata/fuzz/FuzzDecode/3d67e35bf70a1fb4 -------------------------------------------------------------------------------- /testdata/fuzz/FuzzDecode/3fdccc6f5dfb6bd4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testdata/fuzz/FuzzDecode/3fdccc6f5dfb6bd4 -------------------------------------------------------------------------------- /testdata/fuzz/FuzzDecode/3ffaf61d561075cb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testdata/fuzz/FuzzDecode/3ffaf61d561075cb -------------------------------------------------------------------------------- /testdata/fuzz/FuzzDecode/49ce0d1889fef548: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testdata/fuzz/FuzzDecode/49ce0d1889fef548 -------------------------------------------------------------------------------- /testdata/fuzz/FuzzDecode/54db8f3897e0e3d1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testdata/fuzz/FuzzDecode/54db8f3897e0e3d1 -------------------------------------------------------------------------------- /testdata/fuzz/FuzzDecode/582528ddfad69eb5: -------------------------------------------------------------------------------- 1 | go test fuzz v1 2 | []byte("0") 3 | -------------------------------------------------------------------------------- /testdata/fuzz/FuzzDecode/601287471903a79b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testdata/fuzz/FuzzDecode/601287471903a79b -------------------------------------------------------------------------------- /testdata/fuzz/FuzzDecode/626c14495091fbda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testdata/fuzz/FuzzDecode/626c14495091fbda -------------------------------------------------------------------------------- /testdata/fuzz/FuzzDecode/69ab07145f84dd44: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testdata/fuzz/FuzzDecode/69ab07145f84dd44 -------------------------------------------------------------------------------- /testdata/fuzz/FuzzDecode/791b283967c37133: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testdata/fuzz/FuzzDecode/791b283967c37133 -------------------------------------------------------------------------------- /testdata/fuzz/FuzzDecode/7dde965263e1468d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testdata/fuzz/FuzzDecode/7dde965263e1468d -------------------------------------------------------------------------------- /testdata/fuzz/FuzzDecode/7e84a078b4c4ba47: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testdata/fuzz/FuzzDecode/7e84a078b4c4ba47 -------------------------------------------------------------------------------- /testdata/fuzz/FuzzDecode/7ef689ae07fdd69a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testdata/fuzz/FuzzDecode/7ef689ae07fdd69a -------------------------------------------------------------------------------- /testdata/fuzz/FuzzDecode/922c7332474e1c9d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testdata/fuzz/FuzzDecode/922c7332474e1c9d -------------------------------------------------------------------------------- /testdata/fuzz/FuzzDecode/a68da968eb2f8cc9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testdata/fuzz/FuzzDecode/a68da968eb2f8cc9 -------------------------------------------------------------------------------- /testdata/fuzz/FuzzDecode/b4bdc17c221a0cf0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testdata/fuzz/FuzzDecode/b4bdc17c221a0cf0 -------------------------------------------------------------------------------- /testdata/fuzz/FuzzDecode/b7228afa5470bd32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testdata/fuzz/FuzzDecode/b7228afa5470bd32 -------------------------------------------------------------------------------- /testdata/fuzz/FuzzDecode/ba43e9ad1954d48c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testdata/fuzz/FuzzDecode/ba43e9ad1954d48c -------------------------------------------------------------------------------- /testdata/fuzz/FuzzDecode/bb713fdff6ef4677: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testdata/fuzz/FuzzDecode/bb713fdff6ef4677 -------------------------------------------------------------------------------- /testdata/fuzz/FuzzDecode/bc5e62cb5a6d3380: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testdata/fuzz/FuzzDecode/bc5e62cb5a6d3380 -------------------------------------------------------------------------------- /testdata/fuzz/FuzzDecode/c0b2075a8c0de2b2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testdata/fuzz/FuzzDecode/c0b2075a8c0de2b2 -------------------------------------------------------------------------------- /testdata/fuzz/FuzzDecode/c95695e603dd7676: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testdata/fuzz/FuzzDecode/c95695e603dd7676 -------------------------------------------------------------------------------- /testdata/fuzz/FuzzDecode/d1f9b9f5d1d1b972: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testdata/fuzz/FuzzDecode/d1f9b9f5d1d1b972 -------------------------------------------------------------------------------- /testdata/fuzz/FuzzDecode/d2b58bbd296c4ebb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testdata/fuzz/FuzzDecode/d2b58bbd296c4ebb -------------------------------------------------------------------------------- /testdata/fuzz/FuzzDecode/d9eeedec0f906148: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testdata/fuzz/FuzzDecode/d9eeedec0f906148 -------------------------------------------------------------------------------- /testdata/fuzz/FuzzDecode/dab92318baf2e51b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testdata/fuzz/FuzzDecode/dab92318baf2e51b -------------------------------------------------------------------------------- /testdata/fuzz/FuzzDecode/dc271c78e85a2727: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testdata/fuzz/FuzzDecode/dc271c78e85a2727 -------------------------------------------------------------------------------- /testdata/fuzz/FuzzDecode/dc39209e18083326: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testdata/fuzz/FuzzDecode/dc39209e18083326 -------------------------------------------------------------------------------- /testdata/fuzz/FuzzDecode/e4cccf31fdf8a02a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testdata/fuzz/FuzzDecode/e4cccf31fdf8a02a -------------------------------------------------------------------------------- /testdata/fuzz/FuzzDecode/e4f3a761f8daec57: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testdata/fuzz/FuzzDecode/e4f3a761f8daec57 -------------------------------------------------------------------------------- /testdata/fuzz/FuzzDecode/e5a91fa25e74a2d9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testdata/fuzz/FuzzDecode/e5a91fa25e74a2d9 -------------------------------------------------------------------------------- /testdata/fuzz/FuzzDecode/e5b72757c9c9ea05: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testdata/fuzz/FuzzDecode/e5b72757c9c9ea05 -------------------------------------------------------------------------------- /testdata/fuzz/FuzzDecode/eb70f8161fe4d785: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testdata/fuzz/FuzzDecode/eb70f8161fe4d785 -------------------------------------------------------------------------------- /testdata/fuzz/FuzzDecode/ec0ba1c2b82c069b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testdata/fuzz/FuzzDecode/ec0ba1c2b82c069b -------------------------------------------------------------------------------- /testdata/fuzz/FuzzDecode/f63cd94ea5a7672c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testdata/fuzz/FuzzDecode/f63cd94ea5a7672c -------------------------------------------------------------------------------- /testdata/fuzz/FuzzDecode/f73889f04d491c1e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testdata/fuzz/FuzzDecode/f73889f04d491c1e -------------------------------------------------------------------------------- /testdata/fuzz/FuzzDecode/f81dd179741848a1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testdata/fuzz/FuzzDecode/f81dd179741848a1 -------------------------------------------------------------------------------- /testdata/fuzz/FuzzDecode/fd00f8a48404c1e8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testdata/fuzz/FuzzDecode/fd00f8a48404c1e8 -------------------------------------------------------------------------------- /testmsg/1.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testmsg/1.msg -------------------------------------------------------------------------------- /testmsg/10.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testmsg/10.msg -------------------------------------------------------------------------------- /testmsg/11.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testmsg/11.msg -------------------------------------------------------------------------------- /testmsg/12.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testmsg/12.msg -------------------------------------------------------------------------------- /testmsg/13.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testmsg/13.msg -------------------------------------------------------------------------------- /testmsg/14.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testmsg/14.msg -------------------------------------------------------------------------------- /testmsg/15.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testmsg/15.msg -------------------------------------------------------------------------------- /testmsg/16.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testmsg/16.msg -------------------------------------------------------------------------------- /testmsg/17.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testmsg/17.msg -------------------------------------------------------------------------------- /testmsg/18.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testmsg/18.msg -------------------------------------------------------------------------------- /testmsg/19.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testmsg/19.msg -------------------------------------------------------------------------------- /testmsg/2.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testmsg/2.msg -------------------------------------------------------------------------------- /testmsg/20.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testmsg/20.msg -------------------------------------------------------------------------------- /testmsg/21.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testmsg/21.msg -------------------------------------------------------------------------------- /testmsg/22.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testmsg/22.msg -------------------------------------------------------------------------------- /testmsg/23.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testmsg/23.msg -------------------------------------------------------------------------------- /testmsg/24.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testmsg/24.msg -------------------------------------------------------------------------------- /testmsg/25.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testmsg/25.msg -------------------------------------------------------------------------------- /testmsg/26.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testmsg/26.msg -------------------------------------------------------------------------------- /testmsg/27.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testmsg/27.msg -------------------------------------------------------------------------------- /testmsg/3.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testmsg/3.msg -------------------------------------------------------------------------------- /testmsg/4.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testmsg/4.msg -------------------------------------------------------------------------------- /testmsg/5.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testmsg/5.msg -------------------------------------------------------------------------------- /testmsg/6.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testmsg/6.msg -------------------------------------------------------------------------------- /testmsg/7.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testmsg/7.msg -------------------------------------------------------------------------------- /testmsg/8.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testmsg/8.msg -------------------------------------------------------------------------------- /testmsg/9.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BertoldVdb/go-ais/HEAD/testmsg/9.msg --------------------------------------------------------------------------------