vikaskr22 commented on code in PR #593: URL: https://github.com/apache/ranger/pull/593#discussion_r2156183958
########## kms/src/main/java/org/apache/hadoop/crypto/key/RangerKeyStore.java: ########## @@ -470,13 +479,20 @@ public void addSecureKeyByteEntry(String alias, Key key, String cipher, int bitL logger.debug("<== addSecureKeyByteEntry({})", alias); } + private String addEncrAlgoNameInKeyAttrib(String jsonAttrib) throws Exception { + Map<String, String> attribMap = JsonUtilsV2.jsonToMap(jsonAttrib); + attribMap.put(KEY_ENCR_ALGO_NAME, SupportedPBECryptoAlgo.PBKDF2WithHmacSHA256.getAlgoName()); Review Comment: Thanks for the feedback. I have incorporated the suggestion. -- 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: dev-unsubscr...@ranger.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org