Re: [Maria-developers] [Commits] 97037da: Replace static usage of AES_CTR with current encryption algorithm.
17 Mar
2015
17 Mar
'15
7:05 p.m.
Jan,
- my_aes_init_dynamic_encrypt(MY_AES_ALGORITHM_CTR); + if (current_aes_dynamic_method == MY_AES_ALGORITHM_NONE) + { + sql_print_error("No encryption method choosen with --encryption-algorithm. " + "example_key_management_plugin disabled"); + return 1; + }
I don't get it. Why is example_key_management_plugin special here? If you're going to support "none", why not here as well?
+ + my_aes_init_dynamic_encrypt(current_aes_dynamic_method);
Isn't this redundant? It should already be initialized by the call in init_server_components... Regards, Jeremy
3567
Age (days ago)
3567
Last active (days ago)
0 comments
1 participants
participants (1)
-
Jeremy Cole