mirror of https://github.com/apache/nifi.git
NIFI-10713 Added Deprecation Warning for PGP in EncryptContent
NIFI-10713 Removed OpenPGP, PGP, and GPG tags This closes #6613 Signed-off-by: Paul Grey <greyp@apache.org>
This commit is contained in:
parent
381e0f84e1
commit
d9e494f976
|
@ -48,6 +48,8 @@ import org.apache.nifi.components.AllowableValue;
|
|||
import org.apache.nifi.components.PropertyDescriptor;
|
||||
import org.apache.nifi.components.ValidationContext;
|
||||
import org.apache.nifi.components.ValidationResult;
|
||||
import org.apache.nifi.deprecation.log.DeprecationLogger;
|
||||
import org.apache.nifi.deprecation.log.DeprecationLoggerFactory;
|
||||
import org.apache.nifi.expression.ExpressionLanguageScope;
|
||||
import org.apache.nifi.flowfile.FlowFile;
|
||||
import org.apache.nifi.flowfile.attributes.CoreAttributes;
|
||||
|
@ -75,7 +77,7 @@ import org.bouncycastle.openpgp.PGPEncryptedData;
|
|||
@SideEffectFree
|
||||
@SupportsBatching
|
||||
@InputRequirement(Requirement.INPUT_REQUIRED)
|
||||
@Tags({"encryption", "decryption", "password", "JCE", "OpenPGP", "PGP", "GPG", "KDF", "Argon2", "Bcrypt", "Scrypt", "PBKDF2", "salt", "iv"})
|
||||
@Tags({"encryption", "decryption", "password", "JCE", "KDF", "Argon2", "Bcrypt", "Scrypt", "PBKDF2", "salt", "iv"})
|
||||
@CapabilityDescription("Encrypts or Decrypts a FlowFile using either symmetric encryption with a raw key or password " +
|
||||
"and randomly generated salt, or asymmetric encryption using a public and secret key.")
|
||||
@SystemResourceConsideration(resource = SystemResource.CPU)
|
||||
|
@ -214,6 +216,9 @@ public class EncryptContent extends AbstractProcessor {
|
|||
|
||||
public static final Relationship REL_FAILURE = new Relationship.Builder().name("failure")
|
||||
.description("Any FlowFile that cannot be encrypted or decrypted will be routed to failure").build();
|
||||
|
||||
private static final DeprecationLogger deprecationLogger = DeprecationLoggerFactory.getLogger(EncryptContent.class);
|
||||
|
||||
private List<PropertyDescriptor> properties;
|
||||
|
||||
private Set<Relationship> relationships;
|
||||
|
@ -324,6 +329,11 @@ public class EncryptContent extends AbstractProcessor {
|
|||
final String keyHex = context.getProperty(RAW_KEY_HEX).getValue();
|
||||
final boolean encrypt = context.getProperty(MODE).getValue().equalsIgnoreCase(ENCRYPT_MODE);
|
||||
if (isPGPAlgorithm(algorithm)) {
|
||||
deprecationLogger.warn("{}[id={}] OpenPGP support is deprecated: see EncryptContentPGP and DecryptContentPGP",
|
||||
getClass().getSimpleName(),
|
||||
getIdentifier()
|
||||
);
|
||||
|
||||
final String publicKeyring = context.getProperty(PUBLIC_KEYRING).getValue();
|
||||
final String publicUserId = context.getProperty(PUBLIC_KEY_USERID).getValue();
|
||||
final String privateKeyring = context.getProperty(PRIVATE_KEYRING).getValue();
|
||||
|
|
Loading…
Reference in New Issue