Python实现mysql数据库敏感字段加密(初级)

本文主要关注python代码实现,加密算法使用AES,加密模式CBC。
mysql库表请大家自行创建。

import pymysql
from Crypto.Cipher import AES
from binascii import b2a_hex,a2b_hex

def add_to_16(text):
	if len(text.encode('utf-8')) % 16:
		add = 16 - (len(text.encode('utf-8')) % 16)
	else:
		add = 0
	text = text + ('\0' * add)
	return text.encode('utf-8')

def encrypt(text):
	key = 'abcdef0123456789'.encode('utf-8')
	mode = AES.MODE_CBC
	iv = b'qazwsx0123456789'
	text = add_to_16(text)
	cryptos = AES.new(key,mode,iv)
	cipher_text = cryptos.encrypt(text)
	return b2a_hex(cipher_text)

def decrypt(text):
	key = 'abcdef0123456789'.encode('utf-8')
	mode = AES.MODE_CBC
	iv = b'qazwsx0123456789'
	text = add_to_16(text)
	cryptos = AES.new(key,mode,iv)
	plain_text = cryptos.decrypt(a2b_hex(text))
	return bytes.decode(plain_text).rstrip('\0')

encryt_info = encrypt('confidentialinfo').decode('utf-8')
db = 
pymysql.connect(host='127.0.0.1',user='root',password='123456',database='mysql')
cursor = db.cursor()

sql = "insert into person(id,name,age,info) values(001,'tom',18,'%s');" % encryt_info

try:
	cursor.execute(sql)
	db.commit()
except pymysql.Error as e:
	print(e)
	db.rollback()
db.close()
  • 1
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值