Executed again the live tests and adding the following dependency to the bouncycastle driver seems to fix the issue:
```xml <dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcpkix-jdk15on</artifactId> <version>1.49</version> <exclusions> <exclusion> <groupId>org.bouncycastle</groupId> <artifactId>bcprov-jdk15on</artifactId> </exclusion> </exclusions> </dependency> ``` @demobox mind updating this PR and the related ones? --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds/pull/274#issuecomment-34073349