The JAVA project Photo Web Cameras with FTP client has been modernized. The project is being prepared for publication in full, ready for compilation and installation.
Open Source Java App RSA Crypto In the previous post, there was a joke about the fact that encryption keys in PCA cannot be written to a file, sent, or converted. For those whose nerves are well tuned, let's continue. Encryption keys can be saved to a file and restored from a file. Although this is not the most secure way to store them. byte [] pubKeyBytes = new byte[pubKeyLength]; FileInputStream privIn = new FileInputStream (privateKey); FileInputStream pubIn = new FileInputStream (publicKey); privIn. read (privKeyBytes); pubIn. read (pubKeyBytes); pubIn. close (); KeyFactory keyFactory = KeyFactory. getInstance ( "RSA" ); EncodedKeySpec privateKeySpec = new PKCS8EncodedKeySpec (privKeyBytes); EncodedKeySpec publicKeySpec = new X509EncodedKeySpec (pubKeyBytes); crypto.keyPair = new KeyPair(keyFactory. generatePublic (publicKeySpec), keyFactory. generatePrivate (privateKeySpec)); crypto.base64 = base64; That's enough to get it all done. Of course, t...
Photo Registrar The site oflameron.com hosts a repository in which the source codes of the application OFLAMERON Rescue Photo will be published. Any Java programmer can analyze Java code and suggest ways to improve it. If the proposed code is added to the application OFLAMERON Rescue Photo , then the author of the code fragment can be indicated in the Copyright. Interesting suggestions include saving settings to a webserver, downloading new settings from a webserver, managing settings via SMS messages, creating applications for other versions of the Android OS, using a microphone for activation, etc. These proposals are connected with the author's decision to start work on new programs for control, surveillance, security, protection, alibi provision, etc. Application OFLAMERON Rescue Photo fully performs all the functions for which it was created by the author. The dis...
Comments
Post a Comment