Code Monkey home page Code Monkey logo

verity.go's Introduction

Pure Go library for verity device management

verity.go is a pure-Go library that helps to open/close verity devices.

verity.go is essentially a wrapper that helps to read on-disk dm-verity header and then set up a device mapper for it.

Here is an example that demonstrates the API usage:

import "github.com/anatol/verity.go"

func main() {
    // format a verity device e.g.
    // veritysetup format --salt 0b14956bc90cf4b1d9f6ee07e84ff8ed45fc8c30785e14976d6b876090a580f0 /dev/sdX1 /dev/sdX2
    // where /dev/sdX1 is your data device and /dev/sdX2 is the hash device
    // this command returns root digest that you going to use to open the device

    name := "test.verity"
    digest := "5476200ad7eab4ecbca42bb1ba81f6562f7b9ebf256ddf2dd1cbe7a148f46ab4"
    if err := verity.Open(name, "/dev/sdX1", "/dev/sdX2", digest); err != nil {
        // handle error
    }
    defer verity.Close(name)

    // at this point a read-only mapper device /dev/mapper/test.verity will be available
}

License

See LICENSE.

verity.go's People

Contributors

anatol avatar

Stargazers

 avatar  avatar

Watchers

 avatar James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.