Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

encryption

  1. Mitchbux

    Encode and décode functions

    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...
  2. JosiahMaybe

    PHP How to encrypt AND decrypt passwords?

    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...
  3. M

    Understanding how keystores or secrets manager work for software running on linux

    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...
  4. kin

    Python can’t encrypt a server disk with fernet PYTHON3

    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))...
  5. Mtrevor

    C# Encrypting data from mvc web application and decrypting in from SQL Server using custom defined key.

    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 ?
Back
Top Bottom