Identify an example of creating an Enterprise Encryption function.

Identify an example of creating an Enterprise Encryption function.Reference: https://docs.oracle.com/cd/E17952_01/mysql-5.6-en/enterprise-encryption-installation.html

Question:

Identify an example of creating an Enterprise Encryption function.

Options:

[email protected] = CREATE_ASYMMETRIC_PRIV_KEY (@algo, @key_len);

VALIDATE FUNCTION create_asymmetric_priv_key WITH ‘openssl_udf.so’;

INSERT INTO t1 (key-col) FUNCTION(CREATE_ASYMMETRIC_PRIV_KEY(‘RSA’, 1024));

CREATE FUNCTION asymmetric_decrypt RETURNS STRING SONAME ‘openssl_udf.so’;

Correct Answer

The Correct Answer for this Question is

CREATE FUNCTION asymmetric_decrypt RETURNS STRING SONAME ‘openssl_udf.so’;

You may also like...

Leave a Reply

Your email address will not be published. Required fields are marked *