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

package com.google.crypto.tink.hybrid;

import java.security.GeneralSecurityException;
import com.google.crypto.tink.RegistryConfiguration;
import com.google.crypto.tink.HybridDecrypt;
import com.google.crypto.tink.KeysetHandle;

@Deprecated
public final class HybridDecryptFactory
{
    @Deprecated
    public static HybridDecrypt getPrimitive(final KeysetHandle keysetHandle) throws GeneralSecurityException {
        HybridDecryptWrapper.register();
        return keysetHandle.getPrimitive(RegistryConfiguration.get(), HybridDecrypt.class);
    }
    
    private HybridDecryptFactory() {
    }
}
