Hello, i'm trying to compress data with a 'classify' and a 'predict' procedure : the classify procedure would try to sort data before the predict procedure to compress better.
I have wrote both predict and procedure now I need help on the classify_read : Can anyone help me write the code to...
Okay so I use openssl_encrypt and openssl_decrypt but that just sounds like it depends on SSL certificates and since they only last a year, how am I supposed to encrypt and decrypt passwords? I know password_hash won't work because I need to get origin again. Also, unsure what happens if I use...
Many software platforms on Linux have a "Secrets" manager, like Ansible Vault, Hashicorp Vault Provider, Elasticsearch keystore etc... I'm trying to better understand if they offer the security I think it offers. Here's what I'm trying to understand:
Many softwares will let you create a .env...
key = Fernet.generate_key()
with open('thekey.key','wb') as thekey:
thekey.write(key)
for root, dirs, files in os.walk("c:/sqlserver/database/clients/"):
for file in files:
if file == 'driverget.py' or 'thekey.key':
continue
print(os.path.join(root, file))...
Hi guys, is there a way that I could encrypt column data in my MVC web app before I insert it into the database and query it afterwards in SQL server using the same key I used to encrypt data in my web application ?