This repository has been archived by the owner on Mar 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from vmware/sample-workflows
Sample workflows and actions for this plugin
- Loading branch information
Showing
144 changed files
with
3,152 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
...main/resources/ScriptModule/com/vmware/o11n/plugin/crypto/digest/hmacMd5.element_info.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
<!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> | ||
<properties> | ||
<comment>Exported from [server]</comment> | ||
<entry key="categoryPath">com.vmware.o11n.plugin.crypto.digest</entry> | ||
<entry key="name">hmacMd5</entry> | ||
<entry key="type">ScriptModule</entry> | ||
<entry key="id">5da93f01-414d-42ab-b71a-5d3cb2efc82b</entry> | ||
</properties> |
7 changes: 7 additions & 0 deletions
7
...-package/src/main/resources/ScriptModule/com/vmware/o11n/plugin/crypto/digest/hmacMd5.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<dunes-script-module name="hmacMd5" result-type="string" api-version="6.0.0" id="5da93f01-414d-42ab-b71a-5d3cb2efc82b" version="0.0.0" allowed-operations="vef"> | ||
<description><![CDATA[returns: Base64 encoded MD5 based Hashed Message Authentication Code (HMAC) ]]></description> | ||
<param n="keyB64" t="string"><![CDATA[Base64 encoded secret key]]></param> | ||
<param n="dataB64" t="string"><![CDATA[Base64 encoded data to sign]]></param> | ||
<script encoded="false"><![CDATA[return CryptoDigest.hmacMd5(keyB64, dataB64);]]></script> | ||
</dunes-script-module> |
9 changes: 9 additions & 0 deletions
9
...ain/resources/ScriptModule/com/vmware/o11n/plugin/crypto/digest/hmacSha1.element_info.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
<!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> | ||
<properties> | ||
<comment>Exported from [server]</comment> | ||
<entry key="categoryPath">com.vmware.o11n.plugin.crypto.digest</entry> | ||
<entry key="name">hmacSha1</entry> | ||
<entry key="type">ScriptModule</entry> | ||
<entry key="id">1c93a039-3a5d-4f11-8458-dc6202e1d61e</entry> | ||
</properties> |
7 changes: 7 additions & 0 deletions
7
...package/src/main/resources/ScriptModule/com/vmware/o11n/plugin/crypto/digest/hmacSha1.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<dunes-script-module name="hmacSha1" result-type="string" api-version="6.0.0" id="1c93a039-3a5d-4f11-8458-dc6202e1d61e" version="0.0.0" allowed-operations="vef"> | ||
<description><![CDATA[returns: Base64 encoded SHA-1 based Hashed Message Authentication Code (HMAC) ]]></description> | ||
<param n="keyB64" t="string"><![CDATA[Base64 encoded secret key]]></param> | ||
<param n="dataB64" t="string"><![CDATA[Base64 encoded data to sign]]></param> | ||
<script encoded="false"><![CDATA[return CryptoDigest.hmacSha1(keyB64, dataB64);]]></script> | ||
</dunes-script-module> |
9 changes: 9 additions & 0 deletions
9
...n/resources/ScriptModule/com/vmware/o11n/plugin/crypto/digest/hmacSha256.element_info.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
<!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> | ||
<properties> | ||
<comment>Exported from [server]</comment> | ||
<entry key="categoryPath">com.vmware.o11n.plugin.crypto.digest</entry> | ||
<entry key="name">hmacSha256</entry> | ||
<entry key="type">ScriptModule</entry> | ||
<entry key="id">e063295a-0286-45d8-a3d6-327220d4716b</entry> | ||
</properties> |
7 changes: 7 additions & 0 deletions
7
...ckage/src/main/resources/ScriptModule/com/vmware/o11n/plugin/crypto/digest/hmacSha256.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<dunes-script-module name="hmacSha256" result-type="string" api-version="6.0.0" id="e063295a-0286-45d8-a3d6-327220d4716b" version="0.0.0" allowed-operations="vef"> | ||
<description><![CDATA[returns: Base64 encoded SHA-256 based Hashed Message Authentication Code (HMAC) ]]></description> | ||
<param n="keyB64" t="string"><![CDATA[Base64 encoded secret key]]></param> | ||
<param n="dataB64" t="string"><![CDATA[Base64 encoded data to sign]]></param> | ||
<script encoded="false"><![CDATA[return CryptoDigest.hmacSha256(keyB64, dataB64);]]></script> | ||
</dunes-script-module> |
9 changes: 9 additions & 0 deletions
9
...n/resources/ScriptModule/com/vmware/o11n/plugin/crypto/digest/hmacSha384.element_info.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
<!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> | ||
<properties> | ||
<comment>Exported from [server]</comment> | ||
<entry key="categoryPath">com.vmware.o11n.plugin.crypto.digest</entry> | ||
<entry key="name">hmacSha384</entry> | ||
<entry key="type">ScriptModule</entry> | ||
<entry key="id">d15c5d7b-cf73-43cf-b223-263d1e53dd62</entry> | ||
</properties> |
7 changes: 7 additions & 0 deletions
7
...ckage/src/main/resources/ScriptModule/com/vmware/o11n/plugin/crypto/digest/hmacSha384.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<dunes-script-module name="hmacSha384" result-type="string" api-version="6.0.0" id="d15c5d7b-cf73-43cf-b223-263d1e53dd62" version="0.0.0" allowed-operations="vef"> | ||
<description><![CDATA[returns: Base64 encoded SHA-384 based Hashed Message Authentication Code (HMAC) ]]></description> | ||
<param n="keyB64" t="string"><![CDATA[Base64 encoded secret key]]></param> | ||
<param n="dataB64" t="string"><![CDATA[Base64 encoded data to sign]]></param> | ||
<script encoded="false"><![CDATA[return CryptoDigest.hmacSha384(keyB64, dataB64);]]></script> | ||
</dunes-script-module> |
9 changes: 9 additions & 0 deletions
9
...n/resources/ScriptModule/com/vmware/o11n/plugin/crypto/digest/hmacSha512.element_info.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
<!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> | ||
<properties> | ||
<comment>Exported from [server]</comment> | ||
<entry key="categoryPath">com.vmware.o11n.plugin.crypto.digest</entry> | ||
<entry key="name">hmacSha512</entry> | ||
<entry key="type">ScriptModule</entry> | ||
<entry key="id">a08d6cf0-0e1d-431d-a349-59d0cbb44060</entry> | ||
</properties> |
7 changes: 7 additions & 0 deletions
7
...ckage/src/main/resources/ScriptModule/com/vmware/o11n/plugin/crypto/digest/hmacSha512.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<dunes-script-module name="hmacSha512" result-type="string" api-version="6.0.0" id="a08d6cf0-0e1d-431d-a349-59d0cbb44060" version="0.0.0" allowed-operations="vef"> | ||
<description><![CDATA[returns: Base64 encoded SHA-512 based Hashed Message Authentication Code (HMAC) ]]></description> | ||
<param n="keyB64" t="string"><![CDATA[Base64 encoded secret key]]></param> | ||
<param n="dataB64" t="string"><![CDATA[Base64 encoded data to sign]]></param> | ||
<script encoded="false"><![CDATA[return CryptoDigest.hmacSha512(keyB64, dataB64);]]></script> | ||
</dunes-script-module> |
9 changes: 9 additions & 0 deletions
9
...src/main/resources/ScriptModule/com/vmware/o11n/plugin/crypto/digest/md5.element_info.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
<!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> | ||
<properties> | ||
<comment>Exported from [server]</comment> | ||
<entry key="categoryPath">com.vmware.o11n.plugin.crypto.digest</entry> | ||
<entry key="name">md5</entry> | ||
<entry key="type">ScriptModule</entry> | ||
<entry key="id">14dac3a8-74a2-4146-82d9-25f0f1766c36</entry> | ||
</properties> |
6 changes: 6 additions & 0 deletions
6
...ypto-package/src/main/resources/ScriptModule/com/vmware/o11n/plugin/crypto/digest/md5.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<dunes-script-module name="md5" result-type="string" api-version="6.0.0" id="14dac3a8-74a2-4146-82d9-25f0f1766c36" version="0.0.0" allowed-operations="vef"> | ||
<description><![CDATA[Returns a Base64 encoded 128 bit MD5 hash from plain string.]]></description> | ||
<param n="data" t="string"><![CDATA[Plain string data to hash]]></param> | ||
<script encoded="false"><![CDATA[return CryptoDigest.md5(data);]]></script> | ||
</dunes-script-module> |
9 changes: 9 additions & 0 deletions
9
...in/resources/ScriptModule/com/vmware/o11n/plugin/crypto/digest/md5Base64.element_info.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
<!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> | ||
<properties> | ||
<comment>Exported from [server]</comment> | ||
<entry key="categoryPath">com.vmware.o11n.plugin.crypto.digest</entry> | ||
<entry key="name">md5Base64</entry> | ||
<entry key="type">ScriptModule</entry> | ||
<entry key="id">be7644f7-7cad-4741-9fb4-fb0c0f524d71</entry> | ||
</properties> |
6 changes: 6 additions & 0 deletions
6
...ackage/src/main/resources/ScriptModule/com/vmware/o11n/plugin/crypto/digest/md5Base64.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<dunes-script-module name="md5Base64" result-type="string" api-version="6.0.0" id="be7644f7-7cad-4741-9fb4-fb0c0f524d71" version="0.0.0" allowed-operations="vef"> | ||
<description><![CDATA[Returns a Base64 encoded 128 bit MD5 hash from Base64 encoded data. Compatible with non-string data.]]></description> | ||
<param n="dataB64" t="string"><![CDATA[Base64 encoded data to hash]]></param> | ||
<script encoded="false"><![CDATA[return CryptoDigest.md5Base64(dataB64);]]></script> | ||
</dunes-script-module> |
9 changes: 9 additions & 0 deletions
9
...rc/main/resources/ScriptModule/com/vmware/o11n/plugin/crypto/digest/sha1.element_info.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
<!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> | ||
<properties> | ||
<comment>Exported from [server]</comment> | ||
<entry key="categoryPath">com.vmware.o11n.plugin.crypto.digest</entry> | ||
<entry key="name">sha1</entry> | ||
<entry key="type">ScriptModule</entry> | ||
<entry key="id">111b3b6e-07d7-493d-94d5-da06dd2b0dc7</entry> | ||
</properties> |
6 changes: 6 additions & 0 deletions
6
...pto-package/src/main/resources/ScriptModule/com/vmware/o11n/plugin/crypto/digest/sha1.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<dunes-script-module name="sha1" result-type="string" api-version="6.0.0" id="111b3b6e-07d7-493d-94d5-da06dd2b0dc7" version="0.0.0" allowed-operations="vef"> | ||
<description><![CDATA[Returns a Base64 encoded 160 bit SHA-1 hash from plain string.]]></description> | ||
<param n="data" t="string"><![CDATA[Plain string data to hash]]></param> | ||
<script encoded="false"><![CDATA[return CryptoDigest.sha1(data);]]></script> | ||
</dunes-script-module> |
9 changes: 9 additions & 0 deletions
9
...n/resources/ScriptModule/com/vmware/o11n/plugin/crypto/digest/sha1Base64.element_info.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
<!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> | ||
<properties> | ||
<comment>Exported from [server]</comment> | ||
<entry key="categoryPath">com.vmware.o11n.plugin.crypto.digest</entry> | ||
<entry key="name">sha1Base64</entry> | ||
<entry key="type">ScriptModule</entry> | ||
<entry key="id">5ae83705-6d95-4ef5-beb0-ef10c6bbf732</entry> | ||
</properties> |
6 changes: 6 additions & 0 deletions
6
...ckage/src/main/resources/ScriptModule/com/vmware/o11n/plugin/crypto/digest/sha1Base64.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<dunes-script-module name="sha1Base64" result-type="string" api-version="6.0.0" id="5ae83705-6d95-4ef5-beb0-ef10c6bbf732" version="0.0.0" allowed-operations="vef"> | ||
<description><![CDATA[Returns a Base64 encoded 160 bit SHA1 hash from Base64 encoded data. Compatible with non-string data.]]></description> | ||
<param n="dataB64" t="string"><![CDATA[Base64 encoded data to hash]]></param> | ||
<script encoded="false"><![CDATA[return CryptoDigest.sha1Base64(dataB64);]]></script> | ||
</dunes-script-module> |
9 changes: 9 additions & 0 deletions
9
.../main/resources/ScriptModule/com/vmware/o11n/plugin/crypto/digest/sha256.element_info.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
<!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> | ||
<properties> | ||
<comment>Exported from [server]</comment> | ||
<entry key="categoryPath">com.vmware.o11n.plugin.crypto.digest</entry> | ||
<entry key="name">sha256</entry> | ||
<entry key="type">ScriptModule</entry> | ||
<entry key="id">49988923-8469-4974-bdd5-6e99e9f0d62d</entry> | ||
</properties> |
6 changes: 6 additions & 0 deletions
6
...o-package/src/main/resources/ScriptModule/com/vmware/o11n/plugin/crypto/digest/sha256.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<dunes-script-module name="sha256" result-type="string" api-version="6.0.0" id="49988923-8469-4974-bdd5-6e99e9f0d62d" version="0.0.0" allowed-operations="vef"> | ||
<description><![CDATA[Returns a Base64 encoded 256 bit SHA-256 hash from plain string.]]></description> | ||
<param n="data" t="string"><![CDATA[Plain string data to hash]]></param> | ||
<script encoded="false"><![CDATA[return CryptoDigest.sha256(data);]]></script> | ||
</dunes-script-module> |
9 changes: 9 additions & 0 deletions
9
...resources/ScriptModule/com/vmware/o11n/plugin/crypto/digest/sha256Base64.element_info.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
<!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> | ||
<properties> | ||
<comment>Exported from [server]</comment> | ||
<entry key="categoryPath">com.vmware.o11n.plugin.crypto.digest</entry> | ||
<entry key="name">sha256Base64</entry> | ||
<entry key="type">ScriptModule</entry> | ||
<entry key="id">df10ee40-a310-444c-8510-28f3211040f9</entry> | ||
</properties> |
6 changes: 6 additions & 0 deletions
6
...age/src/main/resources/ScriptModule/com/vmware/o11n/plugin/crypto/digest/sha256Base64.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<dunes-script-module name="sha256Base64" result-type="string" api-version="6.0.0" id="df10ee40-a310-444c-8510-28f3211040f9" version="0.0.0" allowed-operations="vef"> | ||
<description><![CDATA[Returns a Base64 encoded 256 bit SHA-256 hash from Base64 encoded data. Compatible with non-string data.]]></description> | ||
<param n="dataB64" t="string"><![CDATA[Base64 encoded data to hash]]></param> | ||
<script encoded="false"><![CDATA[return CryptoDigest.sha256Base64(dataB64);]]></script> | ||
</dunes-script-module> |
9 changes: 9 additions & 0 deletions
9
.../main/resources/ScriptModule/com/vmware/o11n/plugin/crypto/digest/sha384.element_info.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
<!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> | ||
<properties> | ||
<comment>Exported from [server]</comment> | ||
<entry key="categoryPath">com.vmware.o11n.plugin.crypto.digest</entry> | ||
<entry key="name">sha384</entry> | ||
<entry key="type">ScriptModule</entry> | ||
<entry key="id">2f1a448d-f33a-4aa1-afdb-07f701e9e368</entry> | ||
</properties> |
6 changes: 6 additions & 0 deletions
6
...o-package/src/main/resources/ScriptModule/com/vmware/o11n/plugin/crypto/digest/sha384.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<dunes-script-module name="sha384" result-type="string" api-version="6.0.0" id="2f1a448d-f33a-4aa1-afdb-07f701e9e368" version="0.0.0" allowed-operations="vef"> | ||
<description><![CDATA[Returns a Base64 encoded 384 bit SHA-384 hash from plain string.]]></description> | ||
<param n="data" t="string"><![CDATA[Plain string data to hash]]></param> | ||
<script encoded="false"><![CDATA[return CryptoDigest.sha384(data);]]></script> | ||
</dunes-script-module> |
9 changes: 9 additions & 0 deletions
9
...resources/ScriptModule/com/vmware/o11n/plugin/crypto/digest/sha384Base64.element_info.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
<!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> | ||
<properties> | ||
<comment>Exported from [server]</comment> | ||
<entry key="categoryPath">com.vmware.o11n.plugin.crypto.digest</entry> | ||
<entry key="name">sha384Base64</entry> | ||
<entry key="type">ScriptModule</entry> | ||
<entry key="id">e4274aec-da8e-4e13-8515-2804b9806208</entry> | ||
</properties> |
6 changes: 6 additions & 0 deletions
6
...age/src/main/resources/ScriptModule/com/vmware/o11n/plugin/crypto/digest/sha384Base64.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<dunes-script-module name="sha384Base64" result-type="string" api-version="6.0.0" id="e4274aec-da8e-4e13-8515-2804b9806208" version="0.0.0" allowed-operations="vef"> | ||
<description><![CDATA[Returns a Base64 encoded 384 bit SHA-384 hash from Base64 encoded data. Compatible with non-string data.]]></description> | ||
<param n="dataB64" t="string"><![CDATA[Base64 encoded data to hash]]></param> | ||
<script encoded="false"><![CDATA[return CryptoDigest.sha384Base64(dataB64);]]></script> | ||
</dunes-script-module> |
9 changes: 9 additions & 0 deletions
9
.../main/resources/ScriptModule/com/vmware/o11n/plugin/crypto/digest/sha512.element_info.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
<!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> | ||
<properties> | ||
<comment>Exported from [server]</comment> | ||
<entry key="categoryPath">com.vmware.o11n.plugin.crypto.digest</entry> | ||
<entry key="name">sha512</entry> | ||
<entry key="type">ScriptModule</entry> | ||
<entry key="id">75aa9264-828e-46dc-9ca1-2c08cb3ee5a1</entry> | ||
</properties> |
6 changes: 6 additions & 0 deletions
6
...o-package/src/main/resources/ScriptModule/com/vmware/o11n/plugin/crypto/digest/sha512.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<dunes-script-module name="sha512" result-type="string" api-version="6.0.0" id="75aa9264-828e-46dc-9ca1-2c08cb3ee5a1" version="0.0.0" allowed-operations="vef"> | ||
<description><![CDATA[Returns a Base64 encoded 512 bit SHA-512 hash from plain string.]]></description> | ||
<param n="data" t="string"><![CDATA[Plain string data to hash]]></param> | ||
<script encoded="false"><![CDATA[return CryptoDigest.sha512(data);]]></script> | ||
</dunes-script-module> |
9 changes: 9 additions & 0 deletions
9
...resources/ScriptModule/com/vmware/o11n/plugin/crypto/digest/sha512Base64.element_info.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
<!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> | ||
<properties> | ||
<comment>Exported from [server]</comment> | ||
<entry key="categoryPath">com.vmware.o11n.plugin.crypto.digest</entry> | ||
<entry key="name">sha512Base64</entry> | ||
<entry key="type">ScriptModule</entry> | ||
<entry key="id">210eb81a-014e-4f7b-9bf8-9c95d82499fc</entry> | ||
</properties> |
6 changes: 6 additions & 0 deletions
6
...age/src/main/resources/ScriptModule/com/vmware/o11n/plugin/crypto/digest/sha512Base64.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<dunes-script-module name="sha512Base64" result-type="string" api-version="6.0.0" id="210eb81a-014e-4f7b-9bf8-9c95d82499fc" version="0.0.0" allowed-operations="vef"> | ||
<description><![CDATA[Returns a Base64 encoded 512 bit SHA-512 hash from Base64 encoded data. Compatible with non-string data.]]></description> | ||
<param n="dataB64" t="string"><![CDATA[Base64 encoded data to hash]]></param> | ||
<script encoded="false"><![CDATA[return CryptoDigest.sha512Base64(dataB64);]]></script> | ||
</dunes-script-module> |
9 changes: 9 additions & 0 deletions
9
...sources/ScriptModule/com/vmware/o11n/plugin/crypto/encoding/base64Decode.element_info.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
<!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> | ||
<properties> | ||
<comment>Exported from [server]</comment> | ||
<entry key="categoryPath">com.vmware.o11n.plugin.crypto.encoding</entry> | ||
<entry key="name">base64Decode</entry> | ||
<entry key="type">ScriptModule</entry> | ||
<entry key="id">9136de61-c020-4b4b-8089-45884baa81c5</entry> | ||
</properties> |
5 changes: 5 additions & 0 deletions
5
...e/src/main/resources/ScriptModule/com/vmware/o11n/plugin/crypto/encoding/base64Decode.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<dunes-script-module name="base64Decode" result-type="string" api-version="6.0.0" id="9136de61-c020-4b4b-8089-45884baa81c5" version="0.0.0" allowed-operations="vef"> | ||
<param n="b64data" t="string"><![CDATA[]]></param> | ||
<script encoded="false"><![CDATA[return CryptoEncoding.base64Decode(b64data);]]></script> | ||
</dunes-script-module> |
9 changes: 9 additions & 0 deletions
9
...sources/ScriptModule/com/vmware/o11n/plugin/crypto/encoding/base64Encode.element_info.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
<!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> | ||
<properties> | ||
<comment>Exported from [server]</comment> | ||
<entry key="categoryPath">com.vmware.o11n.plugin.crypto.encoding</entry> | ||
<entry key="name">base64Encode</entry> | ||
<entry key="type">ScriptModule</entry> | ||
<entry key="id">e89ee795-d3b2-483f-acbf-afcf5745456f</entry> | ||
</properties> |
5 changes: 5 additions & 0 deletions
5
...e/src/main/resources/ScriptModule/com/vmware/o11n/plugin/crypto/encoding/base64Encode.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<dunes-script-module name="base64Encode" result-type="string" api-version="6.0.0" id="e89ee795-d3b2-483f-acbf-afcf5745456f" version="0.0.0" allowed-operations="vef"> | ||
<param n="data" t="string"><![CDATA[String data to encode]]></param> | ||
<script encoded="false"><![CDATA[return CryptoEncoding.base64Encode(data);]]></script> | ||
</dunes-script-module> |
9 changes: 9 additions & 0 deletions
9
...esources/ScriptModule/com/vmware/o11n/plugin/crypto/encoding/base64toHex.element_info.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
<!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> | ||
<properties> | ||
<comment>Exported from [server]</comment> | ||
<entry key="categoryPath">com.vmware.o11n.plugin.crypto.encoding</entry> | ||
<entry key="name">base64toHex</entry> | ||
<entry key="type">ScriptModule</entry> | ||
<entry key="id">a3080abb-98eb-415a-b15e-0d78cd548f89</entry> | ||
</properties> |
5 changes: 5 additions & 0 deletions
5
...ge/src/main/resources/ScriptModule/com/vmware/o11n/plugin/crypto/encoding/base64toHex.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<dunes-script-module name="base64toHex" result-type="string" api-version="6.0.0" id="a3080abb-98eb-415a-b15e-0d78cd548f89" version="0.0.0" allowed-operations="vef"> | ||
<param n="b64data" t="string"><![CDATA[Base64 data to encode as Hex]]></param> | ||
<script encoded="false"><![CDATA[return CryptoEncoding.base64toHex(b64data);]]></script> | ||
</dunes-script-module> |
9 changes: 9 additions & 0 deletions
9
...sources/ScriptModule/com/vmware/o11n/plugin/crypto/encoding/base64toMime.element_info.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
<!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> | ||
<properties> | ||
<comment>Exported from [server]</comment> | ||
<entry key="categoryPath">com.vmware.o11n.plugin.crypto.encoding</entry> | ||
<entry key="name">base64toMime</entry> | ||
<entry key="type">ScriptModule</entry> | ||
<entry key="id">3ef470c3-0aba-4044-aa6f-2ecb19fcbf5b</entry> | ||
</properties> |
7 changes: 7 additions & 0 deletions
7
...e/src/main/resources/ScriptModule/com/vmware/o11n/plugin/crypto/encoding/base64toMime.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<dunes-script-module name="base64toMime" result-type="MimeAttachment" api-version="6.0.0" id="3ef470c3-0aba-4044-aa6f-2ecb19fcbf5b" version="0.0.0" allowed-operations="vef"> | ||
<param n="b64data" t="string"><![CDATA[Base64 encoded data.]]></param> | ||
<param n="mimeType" t="string"><![CDATA[Mime type of the data. Ex: text/plain, application/xml, application/pdf]]></param> | ||
<param n="fileName" t="string"><![CDATA[Filename of MimeAttachment if it were written to a filesystem]]></param> | ||
<script encoded="false"><![CDATA[return CryptoEncoding.base64ToMime(b64data, mimeType, fileName);]]></script> | ||
</dunes-script-module> |
9 changes: 9 additions & 0 deletions
9
...s/ScriptModule/com/vmware/o11n/plugin/crypto/encoding/binaryConcatBase64.element_info.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
<!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> | ||
<properties> | ||
<comment>Exported from [server]</comment> | ||
<entry key="categoryPath">com.vmware.o11n.plugin.crypto.encoding</entry> | ||
<entry key="name">binaryConcatBase64</entry> | ||
<entry key="type">ScriptModule</entry> | ||
<entry key="id">f6b3e8b0-65d6-4589-85d8-eefdee687d85</entry> | ||
</properties> |
6 changes: 6 additions & 0 deletions
6
...main/resources/ScriptModule/com/vmware/o11n/plugin/crypto/encoding/binaryConcatBase64.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<dunes-script-module name="binaryConcatBase64" result-type="string" api-version="6.0.0" id="f6b3e8b0-65d6-4589-85d8-eefdee687d85" version="0.0.0" allowed-operations="vef"> | ||
<param n="b64data1" t="string"><![CDATA[Base64 Data]]></param> | ||
<param n="b64data2" t="string"><![CDATA[Base64 data to append]]></param> | ||
<script encoded="false"><![CDATA[return CryptoEncoding.binaryConcatBase64(b64data1, b64data2);]]></script> | ||
</dunes-script-module> |
Oops, something went wrong.