1
0
Fork 0
mirror of https://github.com/pgpainless/pgpainless.git synced 2024-06-26 05:24:49 +02:00

Readme: Fix usage of MessageMetada instead of OpenPgpMetadata

This commit is contained in:
Paul Schaub 2023-06-19 12:24:48 +02:00
parent 07a33f83bf
commit 367164a819
Signed by: vanitasvitae
GPG key ID: 62BEE9264BF17311

View file

@ -172,10 +172,10 @@ This behaviour can be modified though using the `Policy` class.
decryptionStream.close(); decryptionStream.close();
// Result contains information like signature status etc. // Result contains information like signature status etc.
OpenPgpMetadata metadata = decryptionStream.getResult(); MessageMetadata metadata = decryptionStream.getMetadata();
``` ```
*After* the `DecryptionStream` was closed, you can get metadata about the processed data by retrieving the `OpenPgpMetadata`. *After* the `DecryptionStream` was closed, you can get metadata about the processed data by retrieving the `MessageMetadata`.
Again, this object will contain information about how the message was encrypted, who signed it and so on. Again, this object will contain information about how the message was encrypted, who signed it and so on.
#### Many more examples can be found in the [examples package](pgpainless-core/src/test/java/org/pgpainless/example)!!! #### Many more examples can be found in the [examples package](pgpainless-core/src/test/java/org/pgpainless/example)!!!