ggershinsky commented on a change in pull request #3053:
URL: https://github.com/apache/iceberg/pull/3053#discussion_r722189371
##########
File path: core/src/main/java/org/apache/iceberg/TableProperties.java
##########
@@ -228,4 +229,35 @@ private TableProperties() {
public static final String MERGE_CARDINALITY_CHECK_ENABLED =
"write.merge.cardinality-check.enabled";
public static final boolean MERGE_CARDINALITY_CHECK_ENABLED_DEFAULT = true;
+
+ /**
+ * Encryption manager type
+ */
+ public static final String ENCRYPTION_MANAGER_TYPE =
"encryption.manager.type";
+ public static final String ENCRYPTION_MANAGER_TYPE_PLAINTEXT = "plaintext";
+ public static final String ENCRYPTION_MANAGER_TYPE_SINGLE_ENVELOPE =
"envelope";
Review comment:
The standard technique is called "envelope encryption", so "envelope" is
more intuitive / better known.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]