0

我有一个带有自签名证书的私有 blob 存储(swift)。

我想将此商店与 jclouds 一起使用。现在,以下工作:

Properties overrides = new Properties();
overrides.setProperty(Constants.PROPERTY_ENDPOINT, "https://example.com:8080/auth");
overrides.setProperty(Constants.PROPERTY_TRUST_ALL_CERTS, "true");
overrides.setProperty(Constants.PROPERTY_RELAX_HOSTNAME, "true");

BlobStoreContext context = new BlobStoreContextFactory().createContext("swift", 
    userCredentials.getIdent(), userCredentials.getSecret(), 
    ImmutableSet.<Module> of(), overrides);

但是,由于我有证书,有没有办法让这更安全并告诉 jclouds 使用该特定证书而不是信任任何证书?

我确实知道如何将证书加载到Certificate对象中,并且我也知道如何KeyStore使用证书创建对象。

我的问题是:如何让 jclouds 使用我的CertificateorKeyStore进行证书验证?

4

2 回答 2

3

目前,jclouds 不提供此挂钩,因此您必须修改 JRE 密钥库。随时在此处添加功能请求:http ://code.google.com/p/jclouds/issues/entry

于 2012-11-16T20:25:25.190 回答
0

正如 Adrian 在 jclouds-user 邮件列表中向我指出的那样,现在可以通过添加这样的模块:

.modules(ImmutableSet.of(new AbstractModule(){
 @Override public void configure() {
  bind(new TypeLiteral<Supplier<SSLContext>>(){}).toInstance(new
   Supplier<SSLContext>() {
    @Override public SSLContext get() {
     return whatYouManage; // note this is called per-request so
                           //can be expensive.
     }
  }
 }
}))
于 2014-10-03T23:44:02.140 回答