- 5-8 beef bones
- 1 stewing chicken
- 1-2 teaspoon of salt (to taste)
- 1 oz of sugar rocks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function encrypt(message,key) { | |
| if(!message) return "" | |
| var cipher = crypto.createCipher('aes-256-cbc',key); | |
| var result = cipher.update(message,'utf8','hex'); | |
| result += cipher.final('hex'); | |
| return result; | |
| } | |
| function decrypt(message,key) { | |
| if(!message) return "" |
NewerOlder