mirror of
https://github.com/apache/nifi.git
synced 2025-02-06 10:08:42 +00:00
92bdc23adb
- Added PGPPrivateKeyService and PGPPublicKeyService interfaces with standard implementations - NIFI-7396 EncryptContentPGP writes encryption metadata attributes - NIFI-6708 Controller Services support ElGamal Public and Private Keys - NIFI-5346 Controller Services support Keyring Files and ASCII Key properties - NIFI-5335 Controller Services support multiple public or private keys from keyrings - NIFI-2983 DecryptContentPGP finds and decrypts Encrypted Data Packets regardless of signing - NIFI-1694 Controller Services support individual key files or keyrings NIFI-8251 Refactored Public Key ID Property to Public Key Search NIFI-8251 Corrected handling of multiple Encrypted Data packets in DecryptContentPGP - Added unit tests for encryption and decryption with both password-based and public key - Added PGP NAR dependencies to nifi-assembly Signed-off-by: Nathan Gough <thenatog@gmail.com> This closes #4842.
47 lines
1.9 KiB
XML
47 lines
1.9 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
Licensed to the Apache Software Foundation (ASF) under one or more
|
|
contributor license agreements. See the NOTICE file distributed with
|
|
this work for additional information regarding copyright ownership.
|
|
The ASF licenses this file to You under the Apache License, Version 2.0
|
|
(the "License"); you may not use this file except in compliance with
|
|
the License. You may obtain a copy of the License at
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
-->
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<groupId>org.apache.nifi</groupId>
|
|
<artifactId>nifi-pgp-bundle</artifactId>
|
|
<version>1.14.0-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<artifactId>nifi-pgp-nar</artifactId>
|
|
<version>1.14.0-SNAPSHOT</version>
|
|
<packaging>nar</packaging>
|
|
<properties>
|
|
<maven.javadoc.skip>true</maven.javadoc.skip>
|
|
<source.skip>true</source.skip>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.apache.nifi</groupId>
|
|
<artifactId>nifi-pgp-processors</artifactId>
|
|
<version>1.14.0-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.nifi</groupId>
|
|
<artifactId>nifi-pgp-service-api-nar</artifactId>
|
|
<version>1.14.0-SNAPSHOT</version>
|
|
<type>nar</type>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|