what-the-bank/sources/org/bouncycastle/crypto/Commitment.java

21 lines
425 B
Java

package org.bouncycastle.crypto;
/* loaded from: classes6.dex */
public class Commitment {
private final byte[] commitment;
private final byte[] secret;
public byte[] getSecret() {
return this.secret;
}
public byte[] getCommitment() {
return this.commitment;
}
public Commitment(byte[] bArr, byte[] bArr2) {
this.secret = bArr;
this.commitment = bArr2;
}
}