Decrypts a file based on a specified key encoding and algorithm.
Arguments
| Name | Dir | Type | Req | Default | Description |
|---|---|---|---|---|---|
| InputFilePath | In | InArgument<String> |
|||
| Key | In | InArgument<String> |
|||
| KeySecureString | In | InArgument<Security.SecureString> |
|||
| KeyEncoding | In | InArgument<Text.Encoding> |
|||
| OutputFilePath | In | InArgument<String> |
|||
| OutputFileName | In | InArgument<String> |
|||
| ContinueOnError | In | InArgument<Boolean> |
Properties
| Name | Kind | Type | Description |
|---|---|---|---|
| Algorithm | property | UiPath.Cryptography.SymmetricAlgorithms |
|
| Overwrite | property | Boolean |
Decrypts text based on a specified key encoding and algorithm.
Arguments
| Name | Dir | Type | Req | Default | Description |
|---|---|---|---|---|---|
| Input | In | InArgument<String> |
✓ | ||
| Key | In | InArgument<String> |
|||
| KeySecureString | In | InArgument<Security.SecureString> |
|||
| Encoding | In | InArgument<Text.Encoding> |
|||
| Result | Out | OutArgument<String> |
|||
| ContinueOnError | In | InArgument<Boolean> |
Properties
| Name | Kind | Type | Description |
|---|---|---|---|
| Algorithm | property | UiPath.Cryptography.SymmetricAlgorithms |
Encrypts a file with a key based on a specified key encoding and algorithm.
Arguments
| Name | Dir | Type | Req | Default | Description |
|---|---|---|---|---|---|
| InputFilePath | In | InArgument<String> |
|||
| Key | In | InArgument<String> |
|||
| KeySecureString | In | InArgument<Security.SecureString> |
|||
| KeyEncoding | In | InArgument<Text.Encoding> |
|||
| OutputFilePath | In | InArgument<String> |
|||
| OutputFileName | In | InArgument<String> |
|||
| ContinueOnError | In | InArgument<Boolean> |
Properties
| Name | Kind | Type | Description |
|---|---|---|---|
| Algorithm | property | UiPath.Cryptography.SymmetricAlgorithms |
|
| Overwrite | property | Boolean |
Encrypts a string with a key based on a specified key encoding and algorithm.
Arguments
| Name | Dir | Type | Req | Default | Description |
|---|---|---|---|---|---|
| Input | In | InArgument<String> |
✓ | ||
| Key | In | InArgument<String> |
|||
| KeySecureString | In | InArgument<Security.SecureString> |
|||
| Encoding | In | InArgument<Text.Encoding> |
|||
| Result | Out | OutArgument<String> |
|||
| ContinueOnError | In | InArgument<Boolean> |
Properties
| Name | Kind | Type | Description |
|---|---|---|---|
| Algorithm | property | UiPath.Cryptography.SymmetricAlgorithms |
Hashes a file with a key using a specified algorithm and returns the hexadecimal string representation of the resulting hash. It supports hashing algorithms with a key and without a key.
Arguments
| Name | Dir | Type | Req | Default | Description |
|---|---|---|---|---|---|
| FilePath | In | InArgument<String> |
✓ | ||
| Key | In | InArgument<String> |
|||
| KeySecureString | In | InArgument<Security.SecureString> |
|||
| Result | Out | OutArgument<String> |
|||
| ContinueOnError | In | InArgument<Boolean> |
Properties
| Name | Kind | Type | Description |
|---|---|---|---|
| Algorithm | property | UiPath.Cryptography.KeyedHashAlgorithms |
Hashes a string with a key using a specified algorithm and returns the hexadecimal string representation of the resulting hash. It supports hashing algorithms with a key and without a key.
Arguments
| Name | Dir | Type | Req | Default | Description |
|---|---|---|---|---|---|
| Input | In | InArgument<String> |
✓ | ||
| Key | In | InArgument<String> |
|||
| KeySecureString | In | InArgument<Security.SecureString> |
|||
| Result | Out | OutArgument<String> |
|||
| ContinueOnError | In | InArgument<Boolean> |
Properties
| Name | Kind | Type | Description |
|---|---|---|---|
| Algorithm | property | UiPath.Cryptography.KeyedHashAlgorithms |