go to post Michael Braam · Jun 3, 2019 Great! I already used it in a project and it made my life much easier
go to post Michael Braam · Apr 25, 2018 d01b_interchange.zipHere it is. Use it at your own risk.Michael
go to post Michael Braam · Apr 25, 2018 If you still need the SEF-files, please let me kniw your e-mail address and I can send it to you too.
go to post Michael Braam · Apr 25, 2018 Please let me know your e-mail address and I can send the files.Michael
go to post Michael Braam · Feb 2, 2018 Hi Jose,I can provide a SEF file for D01B to you. But please note, I haven't used it myself and it is not an official InterSystems product. Use is at your own risk. My customer typically use D96A.I have attached it to this answer.Hope this helpsMichael
go to post Michael Braam · Jul 18, 2017 You need to wrap it into a classmethod which is exposed as a stored procedure as in the example below:Class DC.Utils [ Abstract ]{ClassMethod AESBCEncrypt(pPlainText As %String,pKey As %String) As %String [ SqlProc ]{return $system.Encryption.AESCBCEncrypt(pPlainText, pKey)}} Once you have done this, you can use something like:update sample.person (Name) values (DC.Utils_AESBCEncrypt(name,'key'))
go to post
Great! I already used it in a project and it made my life much easier
go to post
I just uploaded it again
go to post
I just uploaded it again
go to post
d01b_interchange.zip
Here it is. Use it at your own risk.
Michael
go to post
If you still need the SEF-files, please let me kniw your e-mail address and I can send it to you too.
go to post
Please let me know your e-mail address and I can send the files.
Michael
go to post
D01B.SEF File
go to post
Hi Jose,
I can provide a SEF file for D01B to you. But please note, I haven't used it myself and it is not an official InterSystems product. Use is at your own risk. My customer typically use D96A.
I have attached it to this answer.
Hope this helps
Michael
go to post
well done!
go to post
You need to wrap it into a classmethod which is exposed as a stored procedure as in the example below:
Class DC.Utils [ Abstract ]
{
ClassMethod AESBCEncrypt(
pPlainText As %String,
pKey As %String) As %String [ SqlProc ]
{
return $system.Encryption.AESCBCEncrypt(pPlainText, pKey)
}
}
Once you have done this, you can use something like:
update sample.person (Name) values (DC.Utils_AESBCEncrypt(name,'key'))