// 
// Decompiled by Procyon v0.6.0
// 

package org.bouncycastle.pqc.crypto.sphincsplus;

class SIG_XMSS
{
    final byte[] sig;
    final byte[][] auth;
    
    public SIG_XMSS(final byte[] sig, final byte[][] auth) {
        this.sig = sig;
        this.auth = auth;
    }
    
    public byte[] getWOTSSig() {
        return this.sig;
    }
    
    public byte[][] getXMSSAUTH() {
        return this.auth;
    }
}
