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

package com.google.crypto.tink.keyderivation;

import java.security.GeneralSecurityException;
import com.google.crypto.tink.KeysetHandle;
import com.google.errorprone.annotations.Immutable;

@Immutable
public interface KeysetDeriver
{
    KeysetHandle deriveKeyset(final byte[] salt) throws GeneralSecurityException;
}
