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

package com.google.crypto.tink;

import com.google.crypto.tink.proto.EncryptedKeyset;
import java.io.IOException;
import com.google.crypto.tink.proto.Keyset;

public interface KeysetReader
{
    Keyset read() throws IOException;
    
    EncryptedKeyset readEncrypted() throws IOException;
}
