org.apache.commons.codec.digest.DigestUtils.sha384()方法的使用及代码示例

x33g5p2x  于2022-01-17 转载在 其他  
字(7.9k)|赞(0)|评价(0)|浏览(148)

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

DigestUtils.sha384介绍

[英]Calculates the SHA-384 digest and returns the value as a byte[].

Throws a RuntimeException on JRE versions prior to 1.4.0.
[中]计算SHA-384摘要并将值返回为byte[]
在1.4.0之前的JRE版本上抛出RuntimeException

代码示例

代码示例来源:origin: commons-codec/commons-codec

/**
 * Calculates the SHA-384 digest and returns the value as a hex string.
 * <p>
 * Throws a <code>RuntimeException</code> on JRE versions prior to 1.4.0.
 * </p>
 *
 * @param data
 *            Data to digest
 * @return SHA-384 digest as a hex string
 * @since 1.4
 */
public static String sha384Hex(final String data) {
  return Hex.encodeHexString(sha384(data));
}

代码示例来源:origin: commons-codec/commons-codec

/**
 * Calculates the SHA-384 digest and returns the value as a hex string.
 * <p>
 * Throws a <code>RuntimeException</code> on JRE versions prior to 1.4.0.
 * </p>
 *
 * @param data
 *            Data to digest
 * @return SHA-384 digest as a hex string
 * @since 1.4
 */
public static String sha384Hex(final byte[] data) {
  return Hex.encodeHexString(sha384(data));
}

代码示例来源:origin: commons-codec/commons-codec

/**
 * Calculates the SHA-384 digest and returns the value as a hex string.
 * <p>
 * Throws a <code>RuntimeException</code> on JRE versions prior to 1.4.0.
 * </p>
 *
 * @param data
 *            Data to digest
 * @return SHA-384 digest as a hex string
 * @throws IOException
 *             On error reading from the stream
 * @since 1.4
 */
public static String sha384Hex(final InputStream data) throws IOException {
  return Hex.encodeHexString(sha384(data));
}

代码示例来源:origin: commons-codec/commons-codec

/**
 * Calculates the SHA-384 digest and returns the value as a <code>byte[]</code>.
 * <p>
 * Throws a <code>RuntimeException</code> on JRE versions prior to 1.4.0.
 * </p>
 *
 * @param data
 *            Data to digest; converted to bytes using {@link StringUtils#getBytesUtf8(String)}
 * @return SHA-384 digest
 * @since 1.4
 */
public static byte[] sha384(final String data) {
  return sha384(StringUtils.getBytesUtf8(data));
}

代码示例来源:origin: org.eclipse.dirigible/dirigible-api-facade-utils

/**
 * Calculates the SHA-384 digest and returns the value as a byte[].
 *
 * @param input
 *            the input
 * @return the SHA-384 digest
 */
public static final byte[] sha384(byte[] input) {
  return DigestUtils.sha384(input);
}

代码示例来源:origin: org.eclipse.dirigible/dirigible-api-utils

/**
 * Calculates the SHA-384 digest and returns the value as a byte[].
 *
 * @param input
 *            the input
 * @return the SHA-384 digest
 */
public static final byte[] sha384(byte[] input) {
  return DigestUtils.sha384(input);
}

代码示例来源:origin: com.impetus.fabric/fabric-jdbc-driver-shaded

/**
 * Calculates the SHA-384 digest and returns the value as a hex string.
 * <p>
 * Throws a <code>RuntimeException</code> on JRE versions prior to 1.4.0.
 * </p>
 *
 * @param data
 *            Data to digest
 * @return SHA-384 digest as a hex string
 * @since 1.4
 */
public static String sha384Hex(final String data) {
  return Hex.encodeHexString(sha384(data));
}

代码示例来源:origin: ibinti/bugvm

/**
 * Calculates the SHA-384 digest and returns the value as a hex string.
 * <p>
 * Throws a <code>RuntimeException</code> on JRE versions prior to 1.4.0.
 * </p>
 *
 * @param data
 *            Data to digest
 * @return SHA-384 digest as a hex string
 * @since 1.4
 */
public static String sha384Hex(final byte[] data) {
  return Hex.encodeHexString(sha384(data));
}

代码示例来源:origin: ibinti/bugvm

/**
 * Calculates the SHA-384 digest and returns the value as a hex string.
 * <p>
 * Throws a <code>RuntimeException</code> on JRE versions prior to 1.4.0.
 * </p>
 *
 * @param data
 *            Data to digest
 * @return SHA-384 digest as a hex string
 * @since 1.4
 */
public static String sha384Hex(final String data) {
  return Hex.encodeHexString(sha384(data));
}

代码示例来源:origin: ibinti/bugvm

/**
 * Calculates the SHA-384 digest and returns the value as a hex string.
 * <p>
 * Throws a <code>RuntimeException</code> on JRE versions prior to 1.4.0.
 * </p>
 *
 * @param data
 *            Data to digest
 * @return SHA-384 digest as a hex string
 * @throws IOException
 *             On error reading from the stream
 * @since 1.4
 */
public static String sha384Hex(final InputStream data) throws IOException {
  return Hex.encodeHexString(sha384(data));
}

代码示例来源:origin: com.bugvm/bugvm-rt

/**
 * Calculates the SHA-384 digest and returns the value as a hex string.
 * <p>
 * Throws a <code>RuntimeException</code> on JRE versions prior to 1.4.0.
 * </p>
 *
 * @param data
 *            Data to digest
 * @return SHA-384 digest as a hex string
 * @since 1.4
 */
public static String sha384Hex(final byte[] data) {
  return Hex.encodeHexString(sha384(data));
}

代码示例来源:origin: org.apache.directory.api/api-ldap-client-all

/**
 * Calculates the SHA-384 digest and returns the value as a hex string.
 * <p>
 * Throws a <code>RuntimeException</code> on JRE versions prior to 1.4.0.
 * </p>
 *
 * @param data
 *            Data to digest
 * @return SHA-384 digest as a hex string
 * @since 1.4
 */
public static String sha384Hex(final String data) {
  return Hex.encodeHexString(sha384(data));
}

代码示例来源:origin: com.impetus.fabric/fabric-jdbc-driver-shaded

/**
 * Calculates the SHA-384 digest and returns the value as a hex string.
 * <p>
 * Throws a <code>RuntimeException</code> on JRE versions prior to 1.4.0.
 * </p>
 *
 * @param data
 *            Data to digest
 * @return SHA-384 digest as a hex string
 * @since 1.4
 */
public static String sha384Hex(final byte[] data) {
  return Hex.encodeHexString(sha384(data));
}

代码示例来源:origin: Nextdoor/bender

/**
 * Calculates the SHA-384 digest and returns the value as a hex string.
 * <p>
 * Throws a <code>RuntimeException</code> on JRE versions prior to 1.4.0.
 * </p>
 *
 * @param data
 *            Data to digest
 * @return SHA-384 digest as a hex string
 * @since 1.4
 */
public static String sha384Hex(final byte[] data) {
  return Hex.encodeHexString(sha384(data));
}

代码示例来源:origin: org.apache.directory.api/api-ldap-client-all

/**
 * Calculates the SHA-384 digest and returns the value as a hex string.
 * <p>
 * Throws a <code>RuntimeException</code> on JRE versions prior to 1.4.0.
 * </p>
 *
 * @param data
 *            Data to digest
 * @return SHA-384 digest as a hex string
 * @throws IOException
 *             On error reading from the stream
 * @since 1.4
 */
public static String sha384Hex(final InputStream data) throws IOException {
  return Hex.encodeHexString(sha384(data));
}

代码示例来源:origin: com.bugvm/bugvm-rt

/**
 * Calculates the SHA-384 digest and returns the value as a hex string.
 * <p>
 * Throws a <code>RuntimeException</code> on JRE versions prior to 1.4.0.
 * </p>
 *
 * @param data
 *            Data to digest
 * @return SHA-384 digest as a hex string
 * @throws IOException
 *             On error reading from the stream
 * @since 1.4
 */
public static String sha384Hex(final InputStream data) throws IOException {
  return Hex.encodeHexString(sha384(data));
}

代码示例来源:origin: com.impetus.fabric/fabric-jdbc-driver-shaded

/**
 * Calculates the SHA-384 digest and returns the value as a <code>byte[]</code>.
 * <p>
 * Throws a <code>RuntimeException</code> on JRE versions prior to 1.4.0.
 * </p>
 *
 * @param data
 *            Data to digest; converted to bytes using {@link StringUtils#getBytesUtf8(String)}
 * @return SHA-384 digest
 * @since 1.4
 */
public static byte[] sha384(final String data) {
  return sha384(StringUtils.getBytesUtf8(data));
}

代码示例来源:origin: com.bugvm/bugvm-rt

/**
 * Calculates the SHA-384 digest and returns the value as a <code>byte[]</code>.
 * <p>
 * Throws a <code>RuntimeException</code> on JRE versions prior to 1.4.0.
 * </p>
 *
 * @param data
 *            Data to digest; converted to bytes using {@link StringUtils#getBytesUtf8(String)}
 * @return SHA-384 digest
 * @since 1.4
 */
public static byte[] sha384(final String data) {
  return sha384(StringUtils.getBytesUtf8(data));
}

代码示例来源:origin: ibinti/bugvm

/**
 * Calculates the SHA-384 digest and returns the value as a <code>byte[]</code>.
 * <p>
 * Throws a <code>RuntimeException</code> on JRE versions prior to 1.4.0.
 * </p>
 *
 * @param data
 *            Data to digest; converted to bytes using {@link StringUtils#getBytesUtf8(String)}
 * @return SHA-384 digest
 * @since 1.4
 */
public static byte[] sha384(final String data) {
  return sha384(StringUtils.getBytesUtf8(data));
}

代码示例来源:origin: Nextdoor/bender

/**
 * Calculates the SHA-384 digest and returns the value as a <code>byte[]</code>.
 * <p>
 * Throws a <code>RuntimeException</code> on JRE versions prior to 1.4.0.
 * </p>
 *
 * @param data
 *            Data to digest; converted to bytes using {@link StringUtils#getBytesUtf8(String)}
 * @return SHA-384 digest
 * @since 1.4
 */
public static byte[] sha384(final String data) {
  return sha384(StringUtils.getBytesUtf8(data));
}

相关文章