Skip to content

vchain-us/jvcn

Repository files navigation

JVCN

Global, de-centralized signing of code and other digital assets.

This package provides JVM bindings for the Code Notary platform.

It's designed as a lightweight Java library with a minimum dependency set that can be dropped into any JVM software project.

License

This software is released under GPL3.

Build and install

To build and install jvcn run: mvn clean install -Dgpg.skip

Usage

Add the following dependency to pom.xml:

<dependency>
    <groupId>us.vchain</groupId>
    <artifactId>jvcn</artifactId>
    <version>0.0.1</version>
</dependency>

You can tie in basic file verification like this:

public class Main {
    public static void main(String... args) {
        final JVCN jvcn = new JVCN.Builder().build();
        Optional<Asset> asset = jvcn.verify(new File("SomeFile.txt"));
        System.out.println("Asset: " + asset);
    }
}

Requirements

The library requires a Java 8 JVM.

About

vChain Code Notary Java Bindings

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages