Welcome to Code Forum!

Join a community that supports you and your coding journey from day one. We strive to be a friendly, supportive community that empowers everyone to be better developers. By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

encryption

  1. slavaker1303

    SERPENT Cipher: Learn how Serpent Works!

    SERPENT Block Cipher Documentation See Simple Serpent Source Code! Abstract SERPENT is a symmetric key block cipher that was a finalist in the Advanced Encryption Standard (AES) competition. Designed by Ross Anderson, Eli Biham, and Lars Knudsen, SERPENT emphasizes a conservative design...
  2. slavaker1303

    Learn About RSA Asymmetric Cryptography

    What is RSA? (History and Detailed Explanation) Historical Background RSA stands for Rivest–Shamir–Adleman, named after its inventors Ron Rivest, Adi Shamir, and Leonard Adleman. The algorithm was first publicly described in 1977 by these three MIT researchers. It provided the first practical...
  3. LeadingZero78

    LoveSpeech - Private Encryption for Social Media Platforms

    Greetings. I have developed a new multiplatform app for Android and Windows and would like to introduce it. What are your thoughts ? With this app you can encrypt text with a password, which can then be disguised as occult symbolism peppered with emojis and shared on the Internet. This way...
  4. 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...
  5. 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...
  6. 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...
  7. 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))...
  8. 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