Skip to content

dememorized/bite

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

bite - a library for parsing binaries with Go

type PNGChunk struct {
    Type    string
    Chunk   []byte
    CRC     []byte
}



ok, err := bite.Chew(
    `0x89, "PNG\r\n", 0x1A, "\n", Chunks[Len:32/integer, Type:32, Chunk:Len, CRC:32]:...`,
    reader,
    func(Chunks []PNGChunk) error {
        // do something
    }
)

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages