我正在尝试加密此数据集Wholesales customer,删除了前两列(通道和区域)。 加密脚本可以正常工作,因为我能够生成用于加密的公共密钥。但是,我认为问题在于嵌套的for循环线。任何帮助,将不胜感激。
from Paillier_CRT.gmpy2mod import *
import numpy as np
import pandas as pd
priv, pub = generate_keypair(128)
n = pub.n
print("The public key is:", n)
def to_encrypt(public, data_matrix):
data_encrypted = encrypt(public, data_matrix)
return data_encrypted
def load_data():
raw_data = pd.read_csv('wholesales1.csv')
dtset = raw_data.drop(['Channel'], axis=1)
new_dtset = dtset.drop(['Region'], axis=1)
converted_data = new_dtset.values
data_to_encrypt = []
for row in converted_data:
for elem in row:
data_to_encrypt = to_encrypt(pub, int(converted_data))
return data_to_encrypt
working_data = load_data()
print("The encrypted data is: ", working_data)
错误消息:
TypeError: only size-1 arrays can be converted to Python scalars
答案 0 :(得分:0)
此错误通常表示您在期望数组的地方使用标量值。
代替
data_to_encrypt = to_encrypt(pub, int(converted_data))
您可以尝试
data_to_encrypt = to_encrypt(pub, converted_data.astype(int))