암호화 되어 덤프된 테이블을 일괄적으로 재암호화 할 때.



// 원래 암호키    = md5('1234')
// 원래 iv           = sha1('abcd')
// 새로운 암호키 = md5('4567')
// 새로운 iv        = sha1('efgh')
// 암호화방식     = rijndael (AES)


UPDATE
    테이블_이름
SET
    필드_이름=encode(encrypt_iv(decrypt_iv(decode(필드_이름, 'hex'), decode(md5('1234'), 'escape'), decode(sha1(
'abcd'), 'escape'), 'AES'), decode(md5('4567'), 'escape'), decode(sha1('efgh'), 'escape'), 'AES'), 'hex');
 



















Posted by bloodguy
,