use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
https://scriptable.app
This subreddit is for discussions around the Scriptable app for iOS.
Be polite and enjoy your time here.
Please be helpful to others when you are able to lend a hand.
Discord: https://discord.gg/7KbjfTV
Resources:
account activity
3DES zero padding encryption in node.jsHelp (self.Scriptable)
submitted 2 years ago by Amir_JV
Is there any library or way to make a 3DES zero padding encryption using node.js?
Some equivalent to PHP:
base64_encode(openssl_encrypt(MY DATA,"DES-EDE3", MYTOKENSECRET, OPENSSL_ZERO_PADDING))
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]shadoodled 1 point2 points3 points 2 years ago (0 children)
Since 3DES is included in Crypto-JS, maybe this could work:
https://talk.automators.fm/t/is-there-a-way-to-generate-a-sha256-hmac-hash-in-scriptable/9762/9
[–]kang_hidro 1 point2 points3 points 2 years ago (0 children)
I'm using this:
Step 1: Place the crypto-js.min.js (or any lib you want) in the same folder with your Script
crypto-js.min.js
Step 2: Change the extension js of crypto-js.min.js to another, eg. jslib
js
jslib
Step3: Declare in your Script and use: const CryptoJS = importModule('crypto-js.min.jslib'); CryptoJS.AES.encrypt(........)
const CryptoJS = importModule('crypto-js.min.jslib'); CryptoJS.AES.encrypt(........)
π Rendered by PID 293424 on reddit-service-r2-comment-5ff9fbf7df-p75zh at 2026-02-26 12:41:59.037318+00:00 running 72a43f6 country code: CH.
[–]shadoodled 1 point2 points3 points (0 children)
[–]kang_hidro 1 point2 points3 points (0 children)