10-4
On Fri, Jul 19, 2024 at 10:54 AM Mike Kerner via use-livecode <
use-livecode@lists.runrev.com> wrote:
> see the issue i posted on the repo
>
> On Sat, Jul 13, 2024 at 12:20 PM Mike Kerner
> wrote:
>
> > cool
> >
> > On Fri, Jul 12, 2024 at 9:06 PM Tom Glod via use-livecode <
> > use-livecod
see the issue i posted on the repo
On Sat, Jul 13, 2024 at 12:20 PM Mike Kerner
wrote:
> cool
>
> On Fri, Jul 12, 2024 at 9:06 PM Tom Glod via use-livecode <
> use-livecode@lists.runrev.com> wrote:
>
>> Heyall,
>>
>> I wanted to test Anthropic's Claude Opus with Livecode on a real project.
>> So
function Encrypt_This pEncryptWhat,pKey,pSalt,pCipher
local tEncryptedResult
if pCipher = "" then
encrypt pEncryptWhat using "aes256" with password pKey and salt pSalt
else
encrypt pEncryptWhat using pCipher with password pKey and salt pSalt
end if
return it
end Encryp