RSA crypto example Because the RSA algorithm has a higher resistance against decoding, then using it in your personal notepad for a smartphone has advantages. Let's take a ready-made Open Source Java project CryptoNOTE and replace AES encryption with RSA encryption. Source Code - CryptoNOTE_AES.ZIP https://drive.google.com/file/d/1QhW9SRS6-fWGyV6hAAifxlUFe8PngCn9/view?usp=sharing Full Java Project RSA crypto example
Java NPRNG Example Neural Pseudo-Random Number Generator (Android Java) App.java https://drive.google.com/file/d/1tCeqStW7ypx5B0wesBYwaVn2y1IQ07NK/view?usp=sharing MainActivity.java https://drive.google.com/file/d/1WDq33mgUecTM5V0GXcO5NSFoQqtXTuXo/view?usp=sharing The results of the work are output to Log - a pseudo-random 280-bit number (280x8 bit) The initial parameters (master key) are set in MainActivity.java App.java - computing class This is a simple working example. Generates a pseudo-random number of large dimension (any dimension). This class can be used to build huge NPRNG generators. Java NPRNG Example
Comments
Post a Comment