Package com.atlassian.bamboo.security
Interface KeyStoreFactory
-
- All Known Implementing Classes:
BCKeyStoreFactory
public interface KeyStoreFactory
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description @NotNull KeyStore
generateKeyStore(String keyAlias, @NotNull String commonName, @org.jetbrains.annotations.Nullable char[] keystorePassword, @org.jetbrains.annotations.NotNull char[] keyPassword)
@NotNull KeyStore
loadKeyStore(@NotNull File file, @org.jetbrains.annotations.NotNull char[] password)
-
-
-
Method Detail
-
generateKeyStore
@NotNull @NotNull KeyStore generateKeyStore(String keyAlias, @NotNull @NotNull String commonName, @Nullable @org.jetbrains.annotations.Nullable char[] keystorePassword, @NotNull @org.jetbrains.annotations.NotNull char[] keyPassword) throws KeyStoreException, CertificateException, NoSuchAlgorithmException
-
loadKeyStore
@NotNull @NotNull KeyStore loadKeyStore(@NotNull @NotNull File file, @NotNull @org.jetbrains.annotations.NotNull char[] password) throws KeyStoreException, IOException, NoSuchAlgorithmException, CertificateException
-
-