<@UAQQBHBPV> Only think Im thinking is create an U...
# suitescript
a
@Ben VanderBeek Only think Im thinking is create an User parameter for the script which is going to store the key, only that user would be able to read that parameter.
👍 1
c
Can do a locked bundle/module that exposes the key method via a method call as well or just encrypt/decrypt it. I usually just do a script parameter if its not that sensitive
b
if you encrypt/decrypt, where's the encryption key stored?
c
Like a simple base64 encode or something so it isn't "plain" text so you don't need a key. Not sure how sensitive what you're doing is.
Adding them as a script parameter is the easiest way or you can have a custom record somewhere that you can lock to a certain user for viewing in the UI but still give access to in the script
👍 1
b
awesome - several great options. thanks @creece!!