mirror of
https://github.com/pgpainless/pgpainless.git
synced 2024-11-26 14:22:05 +01:00
Add TODOs to remove deprecated methods in 1.2.X
This commit is contained in:
parent
8ec86e6464
commit
6869c66937
5 changed files with 9 additions and 0 deletions
|
@ -51,6 +51,8 @@ public final class EncryptionResult {
|
||||||
* @return symmetric encryption algorithm
|
* @return symmetric encryption algorithm
|
||||||
*
|
*
|
||||||
* @deprecated use {@link #getEncryptionAlgorithm()} instead.
|
* @deprecated use {@link #getEncryptionAlgorithm()} instead.
|
||||||
|
*
|
||||||
|
* TODO: Remove in 1.2.X
|
||||||
*/
|
*/
|
||||||
@Deprecated
|
@Deprecated
|
||||||
public SymmetricKeyAlgorithm getSymmetricKeyAlgorithm() {
|
public SymmetricKeyAlgorithm getSymmetricKeyAlgorithm() {
|
||||||
|
|
|
@ -77,6 +77,8 @@ public interface SecretKeyRingProtector {
|
||||||
* @param keys key ring
|
* @param keys key ring
|
||||||
* @return protector
|
* @return protector
|
||||||
* @deprecated use {@link #unlockEachKeyWith(Passphrase, PGPSecretKeyRing)} instead.
|
* @deprecated use {@link #unlockEachKeyWith(Passphrase, PGPSecretKeyRing)} instead.
|
||||||
|
*
|
||||||
|
* TODO: Remove in 1.2.X
|
||||||
*/
|
*/
|
||||||
@Deprecated
|
@Deprecated
|
||||||
static SecretKeyRingProtector unlockAllKeysWith(@Nonnull Passphrase passphrase, @Nonnull PGPSecretKeyRing keys) {
|
static SecretKeyRingProtector unlockAllKeysWith(@Nonnull Passphrase passphrase, @Nonnull PGPSecretKeyRing keys) {
|
||||||
|
|
|
@ -385,6 +385,7 @@ public final class KeyRingUtils {
|
||||||
// TODO: Replace with PGPSecretKeyRing.insertOrReplacePublicKey() once available
|
// TODO: Replace with PGPSecretKeyRing.insertOrReplacePublicKey() once available
|
||||||
// Right now replacePublicKeys looses extra public keys.
|
// Right now replacePublicKeys looses extra public keys.
|
||||||
// See https://github.com/bcgit/bc-java/pull/1068 for a possible fix
|
// See https://github.com/bcgit/bc-java/pull/1068 for a possible fix
|
||||||
|
// Fix once BC 171 gets released.
|
||||||
secretKeys = PGPSecretKeyRing.replacePublicKeys(secretKeys, publicKeys);
|
secretKeys = PGPSecretKeyRing.replacePublicKeys(secretKeys, publicKeys);
|
||||||
return (T) secretKeys;
|
return (T) secretKeys;
|
||||||
}
|
}
|
||||||
|
|
|
@ -63,6 +63,8 @@ public class DetachedSignatureCheck {
|
||||||
*
|
*
|
||||||
* @return fingerprint of the signing key
|
* @return fingerprint of the signing key
|
||||||
* @deprecated use {@link #getSigningKeyIdentifier()} instead.
|
* @deprecated use {@link #getSigningKeyIdentifier()} instead.
|
||||||
|
*
|
||||||
|
* TODO: Remove in 1.2.X
|
||||||
*/
|
*/
|
||||||
@Deprecated
|
@Deprecated
|
||||||
public OpenPgpFingerprint getFingerprint() {
|
public OpenPgpFingerprint getFingerprint() {
|
||||||
|
|
|
@ -280,6 +280,8 @@ public final class ArmorUtils {
|
||||||
* @return armored output stream
|
* @return armored output stream
|
||||||
*
|
*
|
||||||
* @deprecated use {@link #toAsciiArmoredStream(PGPKeyRing, OutputStream)} instead
|
* @deprecated use {@link #toAsciiArmoredStream(PGPKeyRing, OutputStream)} instead
|
||||||
|
*
|
||||||
|
* TODO: Remove in 1.2.X
|
||||||
*/
|
*/
|
||||||
@Deprecated
|
@Deprecated
|
||||||
@Nonnull
|
@Nonnull
|
||||||
|
|
Loading…
Reference in a new issue