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

package com.google.crypto.tink;

import java.security.GeneralSecurityException;
import com.google.crypto.tink.internal.MutableParametersRegistry;

public final class KeyTemplates
{
    public static KeyTemplate get(final String name) throws GeneralSecurityException {
        final Parameters result = MutableParametersRegistry.globalInstance().get(name);
        return KeyTemplate.createFrom(result);
    }
    
    private KeyTemplates() {
    }
}
