登录 注册
当前位置:主页 > 资源下载 > 14 > omiya-games-cryptography Unity软件包提供了一系列与密码学相关的工具

omiya-games-cryptography Unity软件包提供了一系列与密码学相关的工具

  • 更新:2024-09-11 16:28:38
  • 大小:839KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:其它 - 开发技术
  • 格式:ZIP

资源介绍

-密码学 一组用于加密和解密各种事物的工具。 这包括: 加密和解密文本的资产。 在脚本中使用资产非常容易: // Create a new cryptographer with random password, hash key, etc. // StringCryptographer can also be an inspector variable. StringCryptographer encrypter = new StringCryptographer (); // Encrypt the text string encryptedText = encrypter . Encrypt ( text ); // Print on the console Debug . Log ( text + " encrypted is: " + encryptedText ); 有关