Java 类com.facebook.common.util.SecureHashUtil 实例源码

项目:GitHub    文件:CacheKeyUtil.java   
private static String secureHashKey(final CacheKey key) throws UnsupportedEncodingException {
  return SecureHashUtil.makeSHA1HashBase64(key.getUriString().getBytes("UTF-8"));
}
项目:fresco    文件:CacheKeyUtil.java   
private static String secureHashKey(final CacheKey key) throws UnsupportedEncodingException {
  return SecureHashUtil.makeSHA1HashBase64(key.getUriString().getBytes("UTF-8"));
}