Overview
CipherAlgorithm is a enum in Aspose.Cells FOSS for Python.
Cipher algorithm enumeration.
Values
| Value | Description |
|---|
AES_128 | Represents AES encryption with a 128‑bit key |
AES_192 | Represents AES encryption with a 192‑bit key |
AES_256 | Represents AES encryption with a 256‑bit key |
Properties
| Name | Type | Access | Description |
|---|
key_bytes | `` | Read | Get key size in bytes. |
block_size | `` | Read | Get block size in bytes (AES uses 16-byte blocks). |
algorithm_name | `` | Read | Gets the name of the cipher algorithm |
key_bits | `` | Read | Gets the key size in bits |
alg_id | `` | Read | Gets the algorithm identifier value |
Methods
| Signature | Description |
|---|
__init__(name, key_bits, alg_id) | |
See Also