package bap-byteweight

  1. Overview
  2. Docs
BAP facility for indentifying code entry points

Install

Dune Dependency

Authors

Maintainers

Sources

v2.2.0.tar.gz
sha256=7c6d0dfe2640e800829617dd150ffe748493fe3f317ed41be44312b2821deb46
md5=5dbc6677d646bec59fd7414f23e88cf8

doc/bap-byteweight/Bap_byteweight_signatures/index.html

Module Bap_byteweight_signatures

Provides signatures storage

type error = [
  1. | `Corrupted of string
    (*

    Signature file is corrupted

    *)
  2. | `No_signatures
    (*

    Signature file is not found

    *)
  3. | `No_entry of string
    (*

    Corresponding entry not found

    *)
  4. | `Sys_error of string
    (*

    System error has occurred

    *)
]

Error conditions

val save : ?comp:string -> mode:string -> path:string -> Bap.Std.arch -> Regular.Std.bytes -> (unit, error) Core_kernel.Result.t

save ?comp ~mode ~path arch data store signatures data in the database of signatures specified by the path parameter. The triple arch-comp-mode defines a key for the created entry. If an entry with the same name existed, then it would be overwritten with the new data. If the database, doesn't exist, then it will be created and the specified destination.

val load : ?comp:string -> ?path:string -> mode:string -> Bap.Std.arch -> (Regular.Std.bytes, error) Core_kernel.Result.t

load ?comp ?path ~mode arch finds a signature for the specified arch-comp-path triple. The path defaults to default_path.

val default_path : string

default path for the signatures database

val string_of_error : error -> string

a human readable representation of an error.

OCaml

Innovation. Community. Security.