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
187 B
SQL

DELIMITER $$
CREATE FUNCTION ECL_ENCRYPT(PIN_JNO varchar(256)) RETURNS varchar(4000)
BEGIN
RETURN TO_BASE64(HEX(AES_ENCRYPT(PIN_JNO,'Copyright(c)2015-xit.co.kr')));
END $$
DELIMITER ;