Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 11.0.1 (中文) » UltraLiteJ » UltraLiteJ 参考 » UltraLiteJ API 参考 » EncryptionControl 接口

 

decrypt 方法

解密数据库中的字节数组。

语法
void EncryptionControl.decrypt(
  int page_no,
  byte[] src,
  byte[] tgt
) throws ULjException
参数
  • page_no   数组数据的页编号。

  • src   已加密的源页。

  • tgt   使用此方法解密的结果页。

注释

为此方法提供加密的字节数组 src 和相关的页编号。您的方法必须解密 src 并将结果存储在 tgt 字节数组中。随后将在您的应用程序中使用 tgt 来进行数据操作。