activities
latest
false
- Überblick
- Kryptografie
- Datenbank
- Java
- Python
- WebAPI
- Versionshinweise
- Über das WebAPI-Aktivitätspaket
- Projektkompatibilität
- XML deserialisieren (Deserialize XML)
- XPath ausführen (Execute XPath)
- XML-Knotenattribute erhalten (Get XML Node Attributes)
- XML-Knoten erhalten (Get XML Nodes)
- JSON serialisieren
- Deserialize JSON
- JSON-Zusammenstellung deserialisieren (Deserialize Json Array)
- HTTP Request (legacy)
- HTTP-Anfrage (HTTP Request)
- SOAP-Anfrage (SOAP Request)
Wichtig :
Bitte beachten Sie, dass dieser Inhalt teilweise mithilfe von maschineller Übersetzung lokalisiert wurde.
Es kann 1–2 Wochen dauern, bis die Lokalisierung neu veröffentlichter Inhalte verfügbar ist.
Entwickleraktivitäten
UiPath.Cryptography.Activities.PgpGenerateKeys
Beschreibung
Generates an OpenPGP public/private RSA key pair and saves them to the specified file paths in ASCII-armored format.
Projektkompatibilität
Windows | Plattformübergreifend
Windows, plattformübergreifende Konfiguration
- 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).
Erweiterte Optionen
Optionen
- 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. - Bei Fehler fortsetzen – Gibt an, ob die Automatisierung fortgesetzt werden soll, auch wenn die Aktivität einen Fehler ausgibt. Dieses Feld unterstützt nur boolesche Werte (
True,False). Der Standardwert istFalse. Wenn das Feld also leer ist und ein Fehler auftritt, wird die Ausführung des Projekts angehalten. Wenn der Wert aufTruegesetzt ist, wird die Ausführung des Projekts unabhängig von einem Fehler fortgesetzt.Hinweis:Wenn die Aktivität in Abfangen versuchen (Try Catch) enthalten ist und der Wert der Eigenschaft ContinueOnError auf Wahr
Truegesetzt ist, wird kein Fehler bei der Ausführung des Projekts abgefangen.
Ausgabe
- 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.