All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.distrimind.bouncycastle.tsp.ers.IndexedHash Maven / Gradle / Ivy

There is a newer version: 1.77
Show newest version
package com.distrimind.bouncycastle.tsp.ers;

class IndexedHash
{
    final int    order;
    final byte[] digest;

    IndexedHash(int order, byte[] digest)
    {
        this.order = order;
        this.digest = digest;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy