Remove deprecated EncryptionResult.getSymmetricKeyAlgorithm()

Use getEncryptionAlgorithm() instead
This commit is contained in:
Paul Schaub 2022-08-29 10:37:55 +02:00
parent 6b3d676531
commit 054828ef8c
Signed by: vanitasvitae
GPG Key ID: 62BEE9264BF17311
1 changed files with 0 additions and 13 deletions

View File

@ -46,19 +46,6 @@ public final class EncryptionResult {
this.fileEncoding = encoding;
}
/**
* Return the symmetric encryption algorithm used to encrypt the message.
* @return symmetric encryption algorithm
*
* @deprecated use {@link #getEncryptionAlgorithm()} instead.
*
* TODO: Remove in 1.2.X
*/
@Deprecated
public SymmetricKeyAlgorithm getSymmetricKeyAlgorithm() {
return getEncryptionAlgorithm();
}
/**
* Return the symmetric encryption algorithm used to encrypt the message.
*