Code Monkey home page Code Monkey logo

dynamic_encryption's Introduction

dynamic_encryption

Android app with a custom encryption library written in java.

under app/src/main/java/com/taylor/notetaker you can locate the encryption class called Encryptor.java

Encryption algorithm requires 2 strings, the message to encrypt, and the private key to encrypt it with.

Example

//Encrypt message with key Encryptor encryptionObj = new Encryptor([string] message, [string] key); String cryptoText = encryptionObj.EncryptMessageWithKey();

or

String cryptoText = new Encryptor(message, key).EncryptMessageWithKey();

//Decrypt cryptoText with key

Encryptor encryptionObj = new Encryptor([string] cryptoText, [string] key); String originalMessage = encryptionObj.DecryptMessageWithKey();

or

String originalMessage = new Encryptor(message, key).DecryptMessageWithKey();

Multiple uses

if you will be needing to use the encryption algorithm multiple times and need to save resources from the creation of encryption objects then use the setMessage() and setKey() methods to set the new messages and keys in the object and then you can use either the encrypt or decrypt methods.

However storing the encryption object in memory means that the original message/cryptotext and key will be stored in memory as well. use the second options above to avoid this issue.

Future improvements

Will improve encryptor to be instantiated without arguments and the encryption/decryption to take arguments. This would be a good use for those that need to use the class to encrypt several different messages as the tables creation might impact performance if you are encrypting several messages.

Will also add a static way to encrypt message and keys together in order to avoid creation of an object for the encryptor.

dynamic_encryption's People

Contributors

tlbsoftware avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.