You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
191 B
SQL

DELIMITER $$
CREATE FUNCTION ECL_DECRYPT(PIN_JNO varchar(256)) RETURNS varchar(4000)
BEGIN
RETURN AES_DECRYPT(UNHEX(FROM_BASE64(PIN_JNO)),'Copyright(c)2015-xit.co.kr');
END $$
DELIMITER ;