I hereby claim:
- I am ligerzero459 on github.
- I am ligerzero459 (https://keybase.io/ligerzero459) on keybase.
- I have a public key ASBmbOSV--skP2chqRLJz7-Aoj1aHqdfGFoQJLNim9WnIQo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| // Encrypt where jo is input, and query is output and ENCRPYTION_KEy is key | |
| byte[] input = jo.toString().getBytes("utf-8"); | |
| MessageDigest md = MessageDigest.getInstance("MD5"); | |
| byte[] thedigest = md.digest(ENCRYPTION_KEY.getBytes("UTF-8")); | |
| SecretKeySpec skc = new SecretKeySpec(thedigest, "AES"); | |
| Cipher cipher = Cipher.getInstance("AES"); | |
| cipher.init(Cipher.ENCRYPT_MODE, skc); | |
| byte[] cipherText = new byte[cipher.getOutputSize(input.length)]; |
| var container, stats; | |
| var camera, scene, projector, renderer; | |
| var renderer2; | |
| var PI2 = Math.PI * 2; | |
| var mesh = []; | |
| var programFill = function(context) { |