I have a desktop installable java application which uses some third party jars.These jars need secret key as license.I want third party license info hidden from user of my application. Also we have the limitation that we cannot make network calls to validate license so it has to be stored and validated within the application. Encryption require key to be saved in file system hence it can be read by user. Keeping key in java files will also not help as classes can be decompiled and read.Do we have other ways to do it ?
How to hide secret strings from application users in desktop installable application?
109 Views Asked by satyam mishra At
0
There are 0 best solutions below
Related Questions in JAVA
- Add image to JCheckBoxMenuItem
- How to access invisible Unordered List element with Selenium WebDriver using Java
- Inheritance in Java, apparent type vs actual type
- Java catch the ball Game
- Access objects variable & method by name
- GridBagLayout is displaying JTextField and JTextArea as short, vertical lines
- Perform a task each interval
- Compound classes stored in an array are not accessible in selenium java
- How to avoid concurrent access to a resource?
- Why does processing goes slower on implementing try catch block in java?
- Redirect inside java interceptor
- Push toolbar content below statusbar
- Animation in Java on top of JPanel
- JPA - How to query with a LIKE operator in combination with an AttributeConverter
- Java Assign a Value to an array cell
Related Questions in ENCRYPTION
- How to customize the output of the Postgres Pseudo Encrypt function?
- encrypted email with entrust certificate is not opening with MS Outlook
- Encrypting with Crypto Node.js and decrypt with window.crypto in Service-Worker
- How to decrypt identity section in web config?
- An exception of type 'System.Security.Cryptography.CryptographicException': keyset does not exist
- IBM DB2 native encryption applied on live database
- crypto.BadPaddingException: data hash wrong (EKYC-Response)
- searchable row level encryption using java?
- AES 256 and Base64 Encrypted string works on iOS 8 but truncated on iOS 7
- Decrypted string returns "Length of the data to decrypt is invalid"
- Storing Encryption Key in Application
- Decryption password Encrypted using Encryptbypassphrase of SQL Server in Java
- Using HTTPS or encrypt response myself
- Encrypting (large) files in PHP with openSSL
- Writing a code to decrypt message from a text file
Related Questions in DESKTOP-APPLICATION
- LibGDX what resolution should I draw my Images (PoT or can i choose?)
- Java .JAR to desktop shortcuts/proper apps for windows, mac and debian
- Is it possible to design UI of a desktop apllication with HTML5 and CSS3 and coding it's event handling in pure java?
- How can I get a desktop application to tell a webpage to refresh an element?
- How to make a WPF Desktop application accessible over a network
- Desktop Application Video Encryption
- Know whether the file or directory having permission to delete it in c#
- Java Desktop opens files with different extensions
- Is it Possible that to pass Byte Array image from Database to SSRS Report in c# windows application
- Are there any specific technical requirements/guide for Windows Classic Desktop application?
- Delete all Cookies in Electron desktop app
- Is there a Desktop-like view for JavaFx desktop application?
- How to get current theme name from linux desktop environment using Qt C++
- Sending SMS in C# using Twilio
- JXTA on internet
Related Questions in PASSWORD-PROTECTION
- How to provide password authentication for LDAP server in Java?
- Securing Access database
- Hashing Password in ASP.NET and Resolving it In SQL Procedure
- Meteor Password Protect complete Application
- mysql how to encrypt and decrypt a column using aes
- How to store password used for web scraping?
- Website Protection- Am i doing it right?
- Unzip with password (with native Windows zip)
- Forgot my password for secure database
- Password protected page
- Reverting the WordPress site name to localhost
- Use file data without giving anyone else permission
- Detect if a .doc file is password protected on Linux
- How to avoid having keystore/trustore plain text password in code base?
- How to read user & password from text file
Related Questions in UNIVERSAL-HASHING
- Universal hashing performs worse than modulo hashing, what is wrong?
- cmph Minimal perfect hashing
- Basics in Universal Hashing, how to ensure accessibility
- Hash a Range of Values
- How to generate 64 bit random numbers?
- understanding Universal hashing chapter on CLRS
- Ultra fast lookup in small sized container of 64-bit integer values using dynamic perfect hashing
- Is Universal family of hash functions only to prevent enemy attack?
- Unchange Data, hashing data
- Use of universal hashing
- Universal Hash Function Implementation for Strings in Java
- calculate the probability of having no collision when two elements are hashed h(x)=(x^2+1)mod3
- How to hide secret strings from application users in desktop installable application?
- Value of K hash functions so that probability of false positive is at most 1/n
- Pairwise independent hash functions in Java
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?