Module java.base
Package javax.crypto

Interface KEMSpi.DecapsulatorSpi

封装接口:
KEMSpi

public static interface KEMSpi.DecapsulatorSpi
自:
21
参见:
  • Method Details

    • engineDecapsulate

      SecretKey engineDecapsulate(byte[] encapsulation, int from, int to, String algorithm) throws DecapsulateException
      密钥解封装函数。

      调用此方法从密钥封装消息中恢复密钥。

      实现必须支持from为0,tosecretSize()的返回值相同,algorithm为"Generic"的情况。

      参数:
      encapsulation - 发送方的密钥封装消息。大小必须等于engineEncapsulationSize()返回的值,否则必须抛出DecapsulateException
      from - 要返回的共享密钥字节数组的初始索引(包括)
      to - 要返回的共享密钥字节数组的最终索引(不包括)
      algorithm - 返回的密钥的算法名称
      返回:
      作为指定算法的SecretKey的共享密钥部分
      抛出:
      DecapsulateException - 如果解封装过程中发生错误
      IndexOutOfBoundsException - 如果from < 0from > toto > secretSize()
      NullPointerException - 如果encapsulationalgorithmnull
      UnsupportedOperationException - 如果解封装器不支持fromtoalgorithm的组合
      参见:
    • engineSecretSize

      int engineSecretSize()
      返回共享密钥的大小。
      返回:
      作为有限非负整数的共享密钥的大小
      参见:
    • engineEncapsulationSize

      int engineEncapsulationSize()
      返回密钥封装消息的大小。
      返回:
      作为有限非负整数的密钥封装消息的大小
      参见: