-
Notifications
You must be signed in to change notification settings - Fork 159
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
276 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// Copyright 2023 The NATS Authors | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at: | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package io.nats.client.impl; | ||
|
||
import javax.net.ssl.SSLContext; | ||
|
||
public interface SSLContextFactory { | ||
SSLContext createSSLContext(SSLContextFactoryProperties properties); | ||
} |
87 changes: 87 additions & 0 deletions
87
src/main/java/io/nats/client/impl/SSLContextFactoryProperties.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
// Copyright 2023 The NATS Authors | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at: | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package io.nats.client.impl; | ||
|
||
public class SSLContextFactoryProperties { | ||
public final String keystorePath; | ||
public final char[] keystorePassword; | ||
public final String truststorePath; | ||
public final char[] truststorePassword; | ||
public final String tlsAlgorithm; | ||
|
||
private SSLContextFactoryProperties(Builder b) { | ||
this.keystorePath = b.keystore; | ||
this.keystorePassword = b.keystorePassword; | ||
this.truststorePath = b.truststore; | ||
this.truststorePassword = b.truststorePassword; | ||
this.tlsAlgorithm = b.tlsAlgorithm; | ||
} | ||
|
||
public String getKeystorePath() { | ||
return keystorePath; | ||
} | ||
|
||
public char[] getKeystorePassword() { | ||
return keystorePassword; | ||
} | ||
|
||
public String getTruststorePath() { | ||
return truststorePath; | ||
} | ||
|
||
public char[] getTruststorePassword() { | ||
return truststorePassword; | ||
} | ||
|
||
public String getTlsAlgorithm() { | ||
return tlsAlgorithm; | ||
} | ||
|
||
public static class Builder { | ||
String keystore; | ||
char[] keystorePassword; | ||
String truststore; | ||
char[] truststorePassword; | ||
String tlsAlgorithm; | ||
|
||
public Builder keystore(String keystore) { | ||
this.keystore = keystore; | ||
return this; | ||
} | ||
|
||
public Builder keystorePassword(char[] keystorePassword) { | ||
this.keystorePassword = keystorePassword; | ||
return this; | ||
} | ||
|
||
public Builder truststore(String truststore) { | ||
this.truststore = truststore; | ||
return this; | ||
} | ||
|
||
public Builder truststorePassword(char[] truststorePassword) { | ||
this.truststorePassword = truststorePassword; | ||
return this; | ||
} | ||
|
||
public Builder tlsAlgorithm(String tlsAlgorithm) { | ||
this.tlsAlgorithm = tlsAlgorithm; | ||
return this; | ||
} | ||
|
||
public SSLContextFactoryProperties build() { | ||
return new SSLContextFactoryProperties(this); | ||
} | ||
} | ||
} |
33 changes: 33 additions & 0 deletions
33
src/test/java/io/nats/client/impl/SSLContextFactoryForTesting.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
// Copyright 2024 The NATS Authors | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at: | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package io.nats.client.impl; | ||
|
||
import io.nats.client.TestSSLUtils; | ||
|
||
import javax.net.ssl.SSLContext; | ||
|
||
public class SSLContextFactoryForTesting implements SSLContextFactory { | ||
public SSLContextFactoryProperties properties; | ||
|
||
@Override | ||
public SSLContext createSSLContext(SSLContextFactoryProperties properties) { | ||
this.properties = properties; | ||
try { | ||
return TestSSLUtils.createTestSSLContext(); | ||
} | ||
catch (Exception e) { | ||
throw new RuntimeException(e); | ||
} | ||
} | ||
} |
Oops, something went wrong.