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

io.gatling.recorder.internal.bouncycastle.tsp.ers.IndexedHash Maven / Gradle / Ivy

package io.gatling.recorder.internal.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