org.apache.hadoop.crypto.key.kms.KMSClientProvider.parseJSONKeyVersion()方法的使用及代码示例

x33g5p2x  于2022-01-23 转载在 其他  
字(13.3k)|赞(0)|评价(0)|浏览(78)

本文整理了Java中org.apache.hadoop.crypto.key.kms.KMSClientProvider.parseJSONKeyVersion()方法的一些代码示例,展示了KMSClientProvider.parseJSONKeyVersion()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。KMSClientProvider.parseJSONKeyVersion()方法的具体详情如下:
包路径:org.apache.hadoop.crypto.key.kms.KMSClientProvider
类名称:KMSClientProvider
方法名:parseJSONKeyVersion

KMSClientProvider.parseJSONKeyVersion介绍

暂无

代码示例

代码示例来源:origin: com.github.jiayuhan-it/hadoop-common

@Override
public List<KeyVersion> getKeyVersions(String name) throws IOException {
 checkNotEmpty(name, "name");
 URL url = createURL(KMSRESTConstants.KEY_RESOURCE, name,
   KMSRESTConstants.VERSIONS_SUB_RESOURCE, null);
 HttpURLConnection conn = createConnection(url, HTTP_GET);
 List response = call(conn, null, HttpURLConnection.HTTP_OK, List.class);
 List<KeyVersion> versions = null;
 if (!response.isEmpty()) {
  versions = new ArrayList<KeyVersion>();
  for (Object obj : response) {
   versions.add(parseJSONKeyVersion((Map) obj));
  }
 }
 return versions;
}

代码示例来源:origin: com.github.jiayuhan-it/hadoop-common

private KeyVersion rollNewVersionInternal(String name, byte[] material)
  throws NoSuchAlgorithmException, IOException {
 checkNotEmpty(name, "name");
 Map<String, String> jsonMaterial = new HashMap<String, String>();
 if (material != null) {
  jsonMaterial.put(KMSRESTConstants.MATERIAL_FIELD,
    Base64.encodeBase64String(material));
 }
 URL url = createURL(KMSRESTConstants.KEY_RESOURCE, name, null, null);
 HttpURLConnection conn = createConnection(url, HTTP_POST);
 conn.setRequestProperty(CONTENT_TYPE, APPLICATION_JSON_MIME);
 Map response = call(conn, jsonMaterial,
   HttpURLConnection.HTTP_OK, Map.class);
 KeyVersion keyVersion = parseJSONKeyVersion(response);
 encKeyVersionQueue.drain(name);
 return keyVersion;
}

代码示例来源:origin: io.hops/hadoop-common

@Override
public List<KeyVersion> getKeyVersions(String name) throws IOException {
 checkNotEmpty(name, "name");
 URL url = createURL(KMSRESTConstants.KEY_RESOURCE, name,
   KMSRESTConstants.VERSIONS_SUB_RESOURCE, null);
 HttpURLConnection conn = createConnection(url, HTTP_GET);
 List response = call(conn, null, HttpURLConnection.HTTP_OK, List.class);
 List<KeyVersion> versions = null;
 if (!response.isEmpty()) {
  versions = new ArrayList<KeyVersion>();
  for (Object obj : response) {
   versions.add(parseJSONKeyVersion((Map) obj));
  }
 }
 return versions;
}

代码示例来源:origin: ch.cern.hadoop/hadoop-common

@Override
public List<KeyVersion> getKeyVersions(String name) throws IOException {
 checkNotEmpty(name, "name");
 URL url = createURL(KMSRESTConstants.KEY_RESOURCE, name,
   KMSRESTConstants.VERSIONS_SUB_RESOURCE, null);
 HttpURLConnection conn = createConnection(url, HTTP_GET);
 List response = call(conn, null, HttpURLConnection.HTTP_OK, List.class);
 List<KeyVersion> versions = null;
 if (!response.isEmpty()) {
  versions = new ArrayList<KeyVersion>();
  for (Object obj : response) {
   versions.add(parseJSONKeyVersion((Map) obj));
  }
 }
 return versions;
}

代码示例来源:origin: io.prestosql.hadoop/hadoop-apache

@Override
public List<KeyVersion> getKeyVersions(String name) throws IOException {
 checkNotEmpty(name, "name");
 URL url = createURL(KMSRESTConstants.KEY_RESOURCE, name,
   KMSRESTConstants.VERSIONS_SUB_RESOURCE, null);
 HttpURLConnection conn = createConnection(url, HTTP_GET);
 List response = call(conn, null, HttpURLConnection.HTTP_OK, List.class);
 List<KeyVersion> versions = null;
 if (!response.isEmpty()) {
  versions = new ArrayList<KeyVersion>();
  for (Object obj : response) {
   versions.add(parseJSONKeyVersion((Map) obj));
  }
 }
 return versions;
}

代码示例来源:origin: io.hops/hadoop-common

private KeyVersion rollNewVersionInternal(String name, byte[] material)
  throws NoSuchAlgorithmException, IOException {
 checkNotEmpty(name, "name");
 Map<String, String> jsonMaterial = new HashMap<String, String>();
 if (material != null) {
  jsonMaterial.put(KMSRESTConstants.MATERIAL_FIELD,
    Base64.encodeBase64String(material));
 }
 URL url = createURL(KMSRESTConstants.KEY_RESOURCE, name, null, null);
 HttpURLConnection conn = createConnection(url, HTTP_POST);
 conn.setRequestProperty(CONTENT_TYPE, APPLICATION_JSON_MIME);
 Map response = call(conn, jsonMaterial,
   HttpURLConnection.HTTP_OK, Map.class);
 KeyVersion keyVersion = parseJSONKeyVersion(response);
 encKeyVersionQueue.drain(name);
 return keyVersion;
}

代码示例来源:origin: ch.cern.hadoop/hadoop-common

private KeyVersion rollNewVersionInternal(String name, byte[] material)
  throws NoSuchAlgorithmException, IOException {
 checkNotEmpty(name, "name");
 Map<String, String> jsonMaterial = new HashMap<String, String>();
 if (material != null) {
  jsonMaterial.put(KMSRESTConstants.MATERIAL_FIELD,
    Base64.encodeBase64String(material));
 }
 URL url = createURL(KMSRESTConstants.KEY_RESOURCE, name, null, null);
 HttpURLConnection conn = createConnection(url, HTTP_POST);
 conn.setRequestProperty(CONTENT_TYPE, APPLICATION_JSON_MIME);
 Map response = call(conn, jsonMaterial,
   HttpURLConnection.HTTP_OK, Map.class);
 KeyVersion keyVersion = parseJSONKeyVersion(response);
 encKeyVersionQueue.drain(name);
 return keyVersion;
}

代码示例来源:origin: io.prestosql.hadoop/hadoop-apache

private KeyVersion rollNewVersionInternal(String name, byte[] material)
  throws NoSuchAlgorithmException, IOException {
 checkNotEmpty(name, "name");
 Map<String, String> jsonMaterial = new HashMap<String, String>();
 if (material != null) {
  jsonMaterial.put(KMSRESTConstants.MATERIAL_FIELD,
    Base64.encodeBase64String(material));
 }
 URL url = createURL(KMSRESTConstants.KEY_RESOURCE, name, null, null);
 HttpURLConnection conn = createConnection(url, HTTP_POST);
 conn.setRequestProperty(CONTENT_TYPE, APPLICATION_JSON_MIME);
 Map response = call(conn, jsonMaterial,
   HttpURLConnection.HTTP_OK, Map.class);
 KeyVersion keyVersion = parseJSONKeyVersion(response);
 encKeyVersionQueue.drain(name);
 return keyVersion;
}

代码示例来源:origin: ch.cern.hadoop/hadoop-common

@Override
public KeyVersion getKeyVersion(String versionName) throws IOException {
 checkNotEmpty(versionName, "versionName");
 URL url = createURL(KMSRESTConstants.KEY_VERSION_RESOURCE,
   versionName, null, null);
 HttpURLConnection conn = createConnection(url, HTTP_GET);
 Map response = call(conn, null, HttpURLConnection.HTTP_OK, Map.class);
 return parseJSONKeyVersion(response);
}

代码示例来源:origin: ch.cern.hadoop/hadoop-common

@Override
public KeyVersion getCurrentKey(String name) throws IOException {
 checkNotEmpty(name, "name");
 URL url = createURL(KMSRESTConstants.KEY_RESOURCE, name,
   KMSRESTConstants.CURRENT_VERSION_SUB_RESOURCE, null);
 HttpURLConnection conn = createConnection(url, HTTP_GET);
 Map response = call(conn, null, HttpURLConnection.HTTP_OK, Map.class);
 return parseJSONKeyVersion(response);
}

代码示例来源:origin: io.prestosql.hadoop/hadoop-apache

@Override
public KeyVersion getCurrentKey(String name) throws IOException {
 checkNotEmpty(name, "name");
 URL url = createURL(KMSRESTConstants.KEY_RESOURCE, name,
   KMSRESTConstants.CURRENT_VERSION_SUB_RESOURCE, null);
 HttpURLConnection conn = createConnection(url, HTTP_GET);
 Map response = call(conn, null, HttpURLConnection.HTTP_OK, Map.class);
 return parseJSONKeyVersion(response);
}

代码示例来源:origin: io.hops/hadoop-common

@Override
public KeyVersion getCurrentKey(String name) throws IOException {
 checkNotEmpty(name, "name");
 URL url = createURL(KMSRESTConstants.KEY_RESOURCE, name,
   KMSRESTConstants.CURRENT_VERSION_SUB_RESOURCE, null);
 HttpURLConnection conn = createConnection(url, HTTP_GET);
 Map response = call(conn, null, HttpURLConnection.HTTP_OK, Map.class);
 return parseJSONKeyVersion(response);
}

代码示例来源:origin: com.github.jiayuhan-it/hadoop-common

@Override
public KeyVersion getKeyVersion(String versionName) throws IOException {
 checkNotEmpty(versionName, "versionName");
 URL url = createURL(KMSRESTConstants.KEY_VERSION_RESOURCE,
   versionName, null, null);
 HttpURLConnection conn = createConnection(url, HTTP_GET);
 Map response = call(conn, null, HttpURLConnection.HTTP_OK, Map.class);
 return parseJSONKeyVersion(response);
}

代码示例来源:origin: com.github.jiayuhan-it/hadoop-common

@Override
public KeyVersion getCurrentKey(String name) throws IOException {
 checkNotEmpty(name, "name");
 URL url = createURL(KMSRESTConstants.KEY_RESOURCE, name,
   KMSRESTConstants.CURRENT_VERSION_SUB_RESOURCE, null);
 HttpURLConnection conn = createConnection(url, HTTP_GET);
 Map response = call(conn, null, HttpURLConnection.HTTP_OK, Map.class);
 return parseJSONKeyVersion(response);
}

代码示例来源:origin: io.hops/hadoop-common

@Override
public KeyVersion getKeyVersion(String versionName) throws IOException {
 checkNotEmpty(versionName, "versionName");
 URL url = createURL(KMSRESTConstants.KEY_VERSION_RESOURCE,
   versionName, null, null);
 HttpURLConnection conn = createConnection(url, HTTP_GET);
 Map response = call(conn, null, HttpURLConnection.HTTP_OK, Map.class);
 return parseJSONKeyVersion(response);
}

代码示例来源:origin: io.prestosql.hadoop/hadoop-apache

@Override
public KeyVersion getKeyVersion(String versionName) throws IOException {
 checkNotEmpty(versionName, "versionName");
 URL url = createURL(KMSRESTConstants.KEY_VERSION_RESOURCE,
   versionName, null, null);
 HttpURLConnection conn = createConnection(url, HTTP_GET);
 Map response = call(conn, null, HttpURLConnection.HTTP_OK, Map.class);
 return parseJSONKeyVersion(response);
}

代码示例来源:origin: io.hops/hadoop-common

private KeyVersion createKeyInternal(String name, byte[] material,
  Options options)
  throws NoSuchAlgorithmException, IOException {
 checkNotEmpty(name, "name");
 checkNotNull(options, "options");
 Map<String, Object> jsonKey = new HashMap<String, Object>();
 jsonKey.put(KMSRESTConstants.NAME_FIELD, name);
 jsonKey.put(KMSRESTConstants.CIPHER_FIELD, options.getCipher());
 jsonKey.put(KMSRESTConstants.LENGTH_FIELD, options.getBitLength());
 if (material != null) {
  jsonKey.put(KMSRESTConstants.MATERIAL_FIELD,
    Base64.encodeBase64String(material));
 }
 if (options.getDescription() != null) {
  jsonKey.put(KMSRESTConstants.DESCRIPTION_FIELD,
    options.getDescription());
 }
 if (options.getAttributes() != null && !options.getAttributes().isEmpty()) {
  jsonKey.put(KMSRESTConstants.ATTRIBUTES_FIELD, options.getAttributes());
 }
 URL url = createURL(KMSRESTConstants.KEYS_RESOURCE, null, null, null);
 HttpURLConnection conn = createConnection(url, HTTP_POST);
 conn.setRequestProperty(CONTENT_TYPE, APPLICATION_JSON_MIME);
 Map response = call(conn, jsonKey, HttpURLConnection.HTTP_CREATED,
   Map.class);
 return parseJSONKeyVersion(response);
}

代码示例来源:origin: com.github.jiayuhan-it/hadoop-common

private KeyVersion createKeyInternal(String name, byte[] material,
  Options options)
  throws NoSuchAlgorithmException, IOException {
 checkNotEmpty(name, "name");
 checkNotNull(options, "options");
 Map<String, Object> jsonKey = new HashMap<String, Object>();
 jsonKey.put(KMSRESTConstants.NAME_FIELD, name);
 jsonKey.put(KMSRESTConstants.CIPHER_FIELD, options.getCipher());
 jsonKey.put(KMSRESTConstants.LENGTH_FIELD, options.getBitLength());
 if (material != null) {
  jsonKey.put(KMSRESTConstants.MATERIAL_FIELD,
    Base64.encodeBase64String(material));
 }
 if (options.getDescription() != null) {
  jsonKey.put(KMSRESTConstants.DESCRIPTION_FIELD,
    options.getDescription());
 }
 if (options.getAttributes() != null && !options.getAttributes().isEmpty()) {
  jsonKey.put(KMSRESTConstants.ATTRIBUTES_FIELD, options.getAttributes());
 }
 URL url = createURL(KMSRESTConstants.KEYS_RESOURCE, null, null, null);
 HttpURLConnection conn = createConnection(url, HTTP_POST);
 conn.setRequestProperty(CONTENT_TYPE, APPLICATION_JSON_MIME);
 Map response = call(conn, jsonKey, HttpURLConnection.HTTP_CREATED,
   Map.class);
 return parseJSONKeyVersion(response);
}

代码示例来源:origin: ch.cern.hadoop/hadoop-common

private KeyVersion createKeyInternal(String name, byte[] material,
  Options options)
  throws NoSuchAlgorithmException, IOException {
 checkNotEmpty(name, "name");
 checkNotNull(options, "options");
 Map<String, Object> jsonKey = new HashMap<String, Object>();
 jsonKey.put(KMSRESTConstants.NAME_FIELD, name);
 jsonKey.put(KMSRESTConstants.CIPHER_FIELD, options.getCipher());
 jsonKey.put(KMSRESTConstants.LENGTH_FIELD, options.getBitLength());
 if (material != null) {
  jsonKey.put(KMSRESTConstants.MATERIAL_FIELD,
    Base64.encodeBase64String(material));
 }
 if (options.getDescription() != null) {
  jsonKey.put(KMSRESTConstants.DESCRIPTION_FIELD,
    options.getDescription());
 }
 if (options.getAttributes() != null && !options.getAttributes().isEmpty()) {
  jsonKey.put(KMSRESTConstants.ATTRIBUTES_FIELD, options.getAttributes());
 }
 URL url = createURL(KMSRESTConstants.KEYS_RESOURCE, null, null, null);
 HttpURLConnection conn = createConnection(url, HTTP_POST);
 conn.setRequestProperty(CONTENT_TYPE, APPLICATION_JSON_MIME);
 Map response = call(conn, jsonKey, HttpURLConnection.HTTP_CREATED,
   Map.class);
 return parseJSONKeyVersion(response);
}

代码示例来源:origin: io.prestosql.hadoop/hadoop-apache

private KeyVersion createKeyInternal(String name, byte[] material,
  Options options)
  throws NoSuchAlgorithmException, IOException {
 checkNotEmpty(name, "name");
 checkNotNull(options, "options");
 Map<String, Object> jsonKey = new HashMap<String, Object>();
 jsonKey.put(KMSRESTConstants.NAME_FIELD, name);
 jsonKey.put(KMSRESTConstants.CIPHER_FIELD, options.getCipher());
 jsonKey.put(KMSRESTConstants.LENGTH_FIELD, options.getBitLength());
 if (material != null) {
  jsonKey.put(KMSRESTConstants.MATERIAL_FIELD,
    Base64.encodeBase64String(material));
 }
 if (options.getDescription() != null) {
  jsonKey.put(KMSRESTConstants.DESCRIPTION_FIELD,
    options.getDescription());
 }
 if (options.getAttributes() != null && !options.getAttributes().isEmpty()) {
  jsonKey.put(KMSRESTConstants.ATTRIBUTES_FIELD, options.getAttributes());
 }
 URL url = createURL(KMSRESTConstants.KEYS_RESOURCE, null, null, null);
 HttpURLConnection conn = createConnection(url, HTTP_POST);
 conn.setRequestProperty(CONTENT_TYPE, APPLICATION_JSON_MIME);
 Map response = call(conn, jsonKey, HttpURLConnection.HTTP_CREATED,
   Map.class);
 return parseJSONKeyVersion(response);
}

相关文章

微信公众号

最新文章

更多