Skip to content

Releases: yardexx/elfie

0.1.0

08 Feb 11:03
4dce286

Choose a tag to compare

[0.1.0] - 2026-02-08

Added

  • Initial release of the elfie library.
  • Elfie static class for convenient API access (parse, parseFile, tryParse, tryParseFile).
  • Result<T> type for non-throwing error handling.
  • ElfParser implementation with robust 32-bit and 64-bit ELF support (both little and big endian).
  • Comprehensive set of typed exceptions:
    • ElfFormatException
    • ElfTruncatedFileException
    • ElfCorruptDataException
    • ElfUnsupportedFeatureException
  • ByteReader utility for unsafe binary reading with bounds checking.
  • Example usage in example/elfie_example.dart.