Package com.atlassian.bamboo.security
Interface KeyStoreFactory
- All Known Implementing Classes:
BCKeyStoreFactory
public interface KeyStoreFactory
-
Method Summary
Modifier and TypeMethodDescription@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 Details
-
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
-