use of edu.uiuc.ncsa.security.util.pkcs.Base64String in project OA4MP by ncsa.
the class AbstractOA4MPService method makeb64Uri.
protected Identifier makeb64Uri(String x) {
Base64String b64 = new Base64String(x.getBytes());
Identifier id = BasicIdentifier.newID(BASE64_URI_CAPUT + b64);
return id;
}
Aggregations