EncryptionVerifier
EncryptionVerifier
Overview
EncryptionVerifier 是Python的Aspose.Cells FOSS中的一个类.
编码验证器生成和验收.
这个类提供了4种方法,用于在Python程序中使用EncryptionVerifier 对象. 有的方法包括: decrypt_data_integrity, decrypt_key_value, generate_verifier_agile, verify_password_agile. 在安装Python包的Aspose.Cells FOSS后,所有公众成员都可以访问任何 Python 应用程序.
Methods
| Signature | Description |
|---|---|
generate_verifier_agile(password, salt, hash_algorithm, cipher_algorithm, spin_count) | 生成 PasswordKeyEncryptor 的字段 (MS-OFFCRYPTO 2.3.4.13). |
verify_password_agile(password, salt, encrypted_verifier, encrypted_verifier_hash, hash_algorithm, cipher_algorithm, spin_count) | 验证敏捷加密的密码 (MS-OFFCRYPTO 2.3.4.13). |
decrypt_key_value(h_base, key_salt, encrypted_key_value, hash_algorithm, cipher_algorithm) | 解密中间钥值 (MS-OFFCRYPTO 2.3.4.13). |
decrypt_data_integrity(secret_key, package_salt, encrypted_hmac_key, encrypted_hmac_value, hash_algorithm, block_size, hash_size) | 解密HMAC键和值 (MS-OFFCRYPTO 2.3.4.14). |