You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ra...@apache.org on 2021/12/08 10:46:23 UTC

[arrow] branch master updated (b3dbe32 -> b31dd51)

This is an automated email from the ASF dual-hosted git repository.

ravindra pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git.


    from b3dbe32  MINOR: [Docs] Use 'console' highlighting (instead of 'shell') for code blocks with $
     add b31dd51  ARROW-14431: [C++][Gandiva] Implement AES ENCRYPT and AES DECRYPT functions

No new revisions were added by this update.

Summary of changes:
 cpp/src/gandiva/CMakeLists.txt                     |   2 +
 cpp/src/gandiva/encrypt_utils.cc                   |  90 ++++++++++++
 .../gandiva/{literal_holder.h => encrypt_utils.h}  |  26 ++--
 cpp/src/gandiva/encrypt_utils_test.cc              | 154 +++++++++++++++++++++
 cpp/src/gandiva/function_registry.cc               |   1 -
 cpp/src/gandiva/function_registry_string.cc        |   8 ++
 cpp/src/gandiva/gdv_function_stubs.cc              |  88 ++++++++++++
 cpp/src/gandiva/gdv_function_stubs.h               |   9 ++
 cpp/src/gandiva/tests/projector_test.cc            |  62 +++++++++
 9 files changed, 428 insertions(+), 12 deletions(-)
 create mode 100644 cpp/src/gandiva/encrypt_utils.cc
 copy cpp/src/gandiva/{literal_holder.h => encrypt_utils.h} (67%)
 create mode 100644 cpp/src/gandiva/encrypt_utils_test.cc