All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.iotwasu.hutool.crypto.digest.mac.MacEngineFactory Maven / Gradle / Ivy

There is a newer version: 1.0.2
Show newest version
package cn.iotwasu.hutool.crypto.digest.mac;

import cn.iotwasu.hutool.crypto.SmUtil;
import cn.iotwasu.hutool.crypto.digest.HmacAlgorithm;
import javax.crypto.SecretKey;

/**
 * {@link MacEngine} 实现工厂类
 *
 * @author Looly
 * @since 4.5.13
 */
public class MacEngineFactory {

  /**
   * 根据给定算法和密钥生成对应的{@link MacEngine}
   *
   * @param algorithm 算法,见{@link HmacAlgorithm}
   * @param key 密钥
   * @return {@link MacEngine}
   */
  public static MacEngine createEngine(String algorithm, SecretKey key) {
    if (algorithm.equalsIgnoreCase(HmacAlgorithm.HmacSM3.getValue())) {
      // HmacSM3算法是BC库实现的
      return SmUtil.createHmacSm3Engine(key.getEncoded());
    }
    return new DefaultHMacEngine(algorithm, key);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy