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

package org.bouncycastle.pqc.crypto.sphincsplus;

class SIG_FORS
{
    final byte[][] authPath;
    final byte[] sk;
    
    SIG_FORS(final byte[] sk, final byte[][] authPath) {
        this.authPath = authPath;
        this.sk = sk;
    }
    
    byte[] getSK() {
        return this.sk;
    }
    
    public byte[][] getAuthPath() {
        return this.authPath;
    }
}
