@@ -6,6 +6,12 @@ Convert, inspect and decode byte-oriented formats locally in the browser. Binary
|
||||
|
||||
- Synchronized UTF-8, hexadecimal, Base64, RFC 4648 Base32 and Bitcoin-alphabet Base58 conversions.
|
||||
- A paged byte/offset/ASCII inspector with clickable highlighted source ranges.
|
||||
- Checked insert, replace and delete operations over the canonical byte buffer.
|
||||
- Exact UTF-8 and hex search, including `??` byte wildcards, capped result sets,
|
||||
and a cancellable hard-deadline worker path for larger buffers.
|
||||
- Little- and big-endian integer, floating-point, timestamp and UTF-8
|
||||
interpretations at any checked offset.
|
||||
- Named range bookmarks plus audited PNG, RIFF/WAVE and ELF header templates.
|
||||
- CBOR and MessagePack JSON encode/decode.
|
||||
- Strict ASN.1 DER TLV trees, including canonical identifiers, lengths and core primitive encodings.
|
||||
- Protocol Buffers wire inspection with optional JSON field schemas for common scalar and nested message types.
|
||||
@@ -13,7 +19,7 @@ Convert, inspect and decode byte-oriented formats locally in the browser. Binary
|
||||
|
||||
## Safety and limits
|
||||
|
||||
All input is inert data. The application makes no external requests and never evaluates decoded content. Inputs and encoded outputs are capped at 1 MiB; structured parsing is capped at depth 64 and 10,000 nodes. Base58 is capped at 4 KiB because arbitrary-base conversion is quadratic. DER rejects indefinite/non-minimal lengths and identifiers plus malformed core primitive encodings. Protobuf groups are deliberately unsupported. Schema assistance validates field records and wire compatibility, but is intentionally limited and is not a generated protobuf runtime.
|
||||
All input is inert data. The application makes no external requests and never evaluates decoded content. Inputs, edits and encoded outputs are capped at 1 MiB; search patterns at 4 KiB, matches at 10,000, bookmarks at 100 and template fields at 128. Larger searches run in a disposable local worker with cooperative cancellation and a five-second hard deadline. Structured parsing is capped at depth 64 and 10,000 nodes. Base58 is capped at 4 KiB because arbitrary-base conversion is quadratic. DER rejects indefinite/non-minimal lengths and identifiers plus malformed core primitive encodings. Protobuf groups are deliberately unsupported. Templates inspect only declared fields and do not claim full format validation. Schema assistance validates field records and wire compatibility, but is intentionally limited and is not a generated protobuf runtime.
|
||||
|
||||
## Development
|
||||
|
||||
@@ -26,7 +32,7 @@ npm run test:browser
|
||||
npm run package:release -- --force
|
||||
```
|
||||
|
||||
The deterministic release is written to `release/binary-tools-0.1.0.zip` with a SHA-256 sidecar.
|
||||
The deterministic release is written to `release/binary-tools-0.2.0.zip` with a SHA-256 sidecar.
|
||||
|
||||
## Licence
|
||||
|
||||
|
||||
Reference in New Issue
Block a user