Package GSM, version 0.16

Package GSM, version 0.16:

-Check for the `SECURE` keyword added.
-Example in the doc. updated.
This commit is contained in:
yabwon
2021-11-12 11:11:39 +01:00
parent 7fa70d5ad4
commit 02de8f0bc0
5 changed files with 18 additions and 7 deletions

View File

@@ -8,7 +8,7 @@
---
# The GSM package [ver. 0.15] <a name="gsm-package"></a> ###############################################
# The GSM package [ver. 0.16] <a name="gsm-package"></a> ###############################################
The **GSM** (a.k.a. *Generate Secure Macros*) package allows
to create secured macros stored in SAS Proc FCMP functions.
@@ -68,7 +68,7 @@ Required SAS Components:
* SAS package generated by generatePackage, version 20211111 *
The SHA256 hash digest for package BasePlus:
`BEFAA87266D6DBA3D5983117FC36A24DE03A2F93791AC786DCDB37571A4494AC`
`96B8E8EE268403D81BBB2740A0F47B835EB480F16B47A9B51FD976DEE3595ED7`
## >>> `%GSM()` macro: <<< <a name="gsm-macro"></a> #######################
@@ -179,7 +179,7 @@ data _null_;
cards4;
%macro xyz(x) / SECURE;
%do i = 1 %to &x.;
%put &i=;
%put &=i;
%end;
%mend;
;;;;