*/
public static FGCPCredentials loadFGCPCredentials(File pathToPem) throws IOException, NoSuchAlgorithmException,
CertificateException, InvalidKeySpecException {
FGCPCredentialsSupplier loader = new FGCPCredentialsSupplier(ofInstance(new Credentials("foo",
Files.asCharSource(pathToPem, Charsets.UTF_8).read())),
new FGCPCredentialsForCredentials());
return loader.get();
}