activities
latest
false
- Vue d'ensemble (Overview)
- Cryptographie
- Base de donnés
- Java
- Python
- APIweb
Important :
Veuillez noter que ce contenu a été localisé en partie à l’aide de la traduction automatique.
La localisation du contenu nouvellement publié peut prendre 1 à 2 semaines avant d’être disponible.
Activités du développeur.
UiPath.Cryptography.Activities.PgpGenerateKeys
Description
Generates an OpenPGP public/private RSA key pair and saves them to the specified file paths in ASCII-armored format.
Compatibilité du projet
Windows | Multiplate-forme
Windows, configuration multiplate-forme
- User ID - The OpenPGP User ID for the generated key. Conventionally an RFC 2822 mailbox, for example
Alice Doe <alice@example.com>. Any UTF-8 string is accepted, but the mailbox form is what most PGP tools and key servers expect. This field supports only strings andStringvariables. - Public Key Output Path - The file path where the generated PGP public key is saved. This field supports only strings and
Stringvariables. - Private Key Output Path - The file path where the generated PGP private key is saved. This field supports only strings and
Stringvariables. - Passphrase - The passphrase that protects the generated private key. To provide it as a secure string instead of plain text, select the field's input menu and switch to the Passphrase (Secure) input (a
SecureString).
Options avancées
Options
- Key Size - The RSA key size, in bits. The following options are available: 2048-bit, 3072-bit, and 4096-bit. The default value is 4096-bit, which meets National Institute of Standards and Technology (NIST) guidance through 2030 and aligns with the strictest enterprise security recommendations. Reduce the key size only when the consuming system cannot handle 4096-bit keys.
- Overwrite - If files already exist at the output paths, this overwrites them. This field only supports Boolean values (
True,False). The default value isFalse. - Continuer en cas d'erreur (Continue On Error) : précise si l’automatisation doit se poursuivre même si l’activité génère une erreur. Ce champ prend uniquement en charge les valeurs booléennes (
True,False). La valeur par défaut estFalse. Par conséquent, si le champ est vide et qu’une erreur est générée, l’exécution du projet s’arrête. Si le champ indique au contraireTrue, l'exécution du projet se poursuit même en cas d'erreur.Remarque :Si cette activité est incluse dans Essayer de capturer (Try Catch) et que la valeur de la propriété Poursuite sur erreur (ContinueOnError) est
True, aucune erreur n'est détectée lors de l'exécution du projet.
Sortie
- Public Key File - A resource handle to the generated public key file, stored in an
ILocalResourcevariable for use in other activities. The key is also written to the Public Key Output Path. - Private Key File - A resource handle to the generated private key file, stored in an
ILocalResourcevariable for use in other activities. The key is also written to the Private Key Output Path.