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.PgpVerify
Beschreibung
Verifies a PGP signature, a clearsignature, or the structural validity of a public key file. The Verification Type property selects which check is performed and which inputs are required.
This activity does not throw an error on a verification mismatch. Instead, it returns False in the Result output. A False result means that verification failed because of a wrong key, a tampered payload, or a malformed file.
Projektkompatibilität
Windows | Plattformübergreifend
Windows, plattformübergreifende Konfiguration
- Verification Type - The check to perform. The following options are available:
- Signed File (Binary) (default) - Verifies a binary-signed file produced by the PGP Sign File activity. Requires Signed File Path and Public Key File Path.
- ClearSigned File (Text) - Verifies a clear-text signed file produced by the PGP ClearSign File activity. Requires Signed File Path and Public Key File Path.
- Validate Public Key - Validates that a file is a well-formed public key. Requires Public Key File Path only; Signed File Path is ignored and its field is hidden.
- Signed File Path - The path to the signed file to verify. Required for the Signed File (Binary) and ClearSigned File (Text) types; ignored for Validate Public Key. This field supports only strings and
Stringvariables. To use a project resource instead of a path, select the field's input menu and switch to the Signed File input (anIResource). - Public Key File Path - The path to the signer's PGP public key file. For Validate Public Key, this is the key being validated. This field supports only strings and
Stringvariables. To use a project resource instead of a path, select the field's input menu and switch to the Public Key File input (anIResource).
Erweiterte Optionen
Optionen
- 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
- Result - The verification outcome, stored in a
Booleanvariable for use in other activities. The value isTrueif verification succeeded, andFalseotherwise.