// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. package com.yahoo.security; import java.security.GeneralSecurityException; import java.security.KeyStore; import java.security.KeyStoreException; /** * @author bjorncs */ public enum KeyStoreType { JKS { KeyStore createKeystore() throws KeyStoreException { return KeyStore.getInstance("JKS"); } }, PKCS12 { KeyStore createKeystore() throws KeyStoreException { return KeyStore.getInstance("PKCS12"); } }; abstract KeyStore createKeystore() throws GeneralSecurityException; }