SymmetricEncryptionAttribute constructor
init
Creates symmetric algorithm with parameters and default passphrase.
def __init__(self, algorithm_type, key):
...
| Parameter | Type | Description |
|---|---|---|
| algorithm_type | SymmetricAlgorithmType |
Encryption algorithm type |
| key | str | Encryption key |
init
Creates symmetric algorithm with parameters.
def __init__(self, algorithm_type, key, salt):
...
| Parameter | Type | Description |
|---|---|---|
| algorithm_type | SymmetricAlgorithmType |
Specify symmetric algorithm type |
| key | str | Encryption key |
| salt | str | Passphrase for encryption |