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

package com.google.crypto.tink.internal;

import com.google.crypto.tink.KeyStatus;
import com.google.crypto.tink.Key;

public interface KeysetHandleInterface
{
    Entry getPrimary();
    
    int size();
    
    Entry getAt(final int i);
    
    public interface Entry
    {
        Key getKey();
        
        KeyStatus getStatus();
        
        int getId();
        
        boolean isPrimary();
    }
}
