Easy Code Share > Javascript > jQuery

PHP RSA Encrypt and Generate Keys in Server Site

PHP RSA Encrypt and Generate Keys in Server Site

PHP RSA library in server sites can generate key pairs and perform public key cryptography. Server sites expose generated public key to all clients, so asymmetric encrypt scheme protect data by using private and public keys. If prefering to generate keys on browser clients, you can read the post Javascript RSA Generate Keys from Browser … Read more

Easy Code Share > Javascript > jQuery

Javascript RSA Generate Keys from Browser Client

Javascript RSA Generate Keys from Browser Client

We introduce a JavaScript RSA library that can be used with HTML browser, rather than with Node.js. Browser clients can generate keys with specified key size. The server sites receive public keys from clients for encrypting data in the future. If prefering to generate keys in server sites, you can read the post PHP RSA … Read more

Easy Code Share > Javascript > jQuery

How to Rotate a Roulette Picture on Click using jQuery

How to Rotate a Roulette Picture on Click using jQuery

The best way to animate HTML elements should be the jQuery Rotate solution presented in the article. This open-source method is based on Wilq32 and will be introduced through a funny example of roulette game. All codes here are not complicated, so you can easily understand even though you are still students in school. To … Read more