If encrypt the plain text with its hash is it correct?? Where Can I find a paper that speak about it? Is it possible Known-plaintext attack?
Is it safe to use the hash of the plain text as a key for encryption?
138 Views Asked by pass92 At
1
There are 1 best solutions below
Related Questions in HASH
- Trouble validating md5 hashed password with randomly generated salt?
- Why k and l for LSH used for approximate nearest neighbours?
- PHP password_hash() / bcrypt
- Unique hash/index for time interval
- Order-independent Hash Algorithm
- git hard reset - what am I doing wrong?
- Java HashMap, hashCode() equals() - how to be consistent with multiple keys?
- Create hash from variables in loop
- Hashing integer coordinates of different sizes
- Xcode salting and hashing a password
- Is there a way to generate a Guid from a list of Guids?
- Path reconstruction with Hashing?
- Creating a Hash with keys from an array and empty arrays as the values
- How to read data from a different file without using YAML or JSON
- change value in hash using an array of keys in ruby
Related Questions in KEY
- Android Signature key differences between Old and New PC
- Java HashMap, hashCode() equals() - how to be consistent with multiple keys?
- Kaltura account settings error
- fetch json value with no key using jquery
- C++ Custom std::map<> key class causing memory violation
- How do I use php file() to access an array and echo specific keys?
- constructing key by bit shifting 3 integers in C
- How to get keystrokes with java outside of frames
- Keys in Perl hash disappeared
- Master Array compare csv
- Covering index and getting rid of Key Lookup
- How to add key pairs to object literals using loop--WITHOUT overriding existing entries?
- PHP Convert Array Including Key Rename
- Python: How to append to existing key of a dictionary?
- Python key error - for key in dictionary: dictionary[key]
Related Questions in UNSAFE
- "Missing compiler required member" in Windows CE project
- Is it safe to disable temporarily SQL_SAFE_UPDATES to perform a mySQL query?
- Rust how to convert from array to std::raw:::Slice
- "unsafe code may only appear if compiling with /unsafe"
- How can I get an array or a slice from a raw pointer?
- Why Parallel.For gives only so little gain for this particular function?
- Is it safe to use the hash of the plain text as a key for encryption?
- Native C string list weak reference to C#
- Trying to Understand this Image function
- Pointer to System.Windows.Forms.Cursor.Position.X
- How does Marshal.GetFunctionPointerForDelegate work on instance members?
- Using pointer to array in unsafe C#
- Allow unsafe code in jetbrains rider?
- Detecting peaks in images
- C# - Fastest way to convert an int and put it in a byte array with an offset
Related Questions in PLAINTEXT
- Why any thing after <plaintext> is shown as encoded?
- How to index plain text files for search in Sphinx
- Rails render - get partial source instead of output HTML
- Plain text emails displayed as attachment on some email clients
- How do I view the source of Markdown files on wiki Github?
- Android How to print through Bluetooth printer with text alignment and also using table style?
- variables from plain text Javascript
- Mime types on WP8 Internet Explorer
- Ektron Forms - Generate Plaintext Email
- Is it safe to use the hash of the plain text as a key for encryption?
- GCM plain text Push notification in PHP?
- PHP - How to save text file with ANSI encoding?
- New Line added at the end of the text while converting from HTML to Plain Text
- What encoding does Outlook use for plain text messages?
- \r\n\r\n Strings Getting Into Plain Text
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
What would this be useful for? You would have the know the plain text to get back the plain text. If there is no need to remember the key (key is stored separately), you could as well generate a random key instead of a hash.