Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions hash-digest/index.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
export function getDescription() {
return {
description: "Generates a mac signed link.",
description: "Generates a MAC signed link.",
input: [
{
id: "baseUrl",
displayName: "Base url",
description: "Base url for the third party.",
displayName: "Base URL",
description: "Base URL for the third party.",
type: "String",
required: true,
},
Expand All @@ -21,8 +21,8 @@ export function getDescription() {
{
id: "signedUrl",
type: "String",
displayName: "Signed url",
description: "Signed url.",
displayName: "Signed URL",
description: "Signed URL.",
},
],
} as const satisfies ScriptDescription;
Expand Down
4 changes: 2 additions & 2 deletions hash-digest/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "hash-digest",
"displayName": "Hash Digest operation",
"description": "Using hash digest to create mac-like string signature.",
"displayName": "Hash digest operation",
"description": "Using hash digest to create a MAC-like string signature.",
"fromVersion": "24.10.1.1",
"toVersion": null,
"private": true
Expand Down
2 changes: 1 addition & 1 deletion hello-world/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "hello-world",
"displayName": "Hello World",
"description": "A simple hello world example.",
"description": "A simple example that logs a 'Hello World.' message.",
"fromVersion": "24.10.1.1",
"toVersion": null,
"private": true
Expand Down
10 changes: 5 additions & 5 deletions hmac-sign/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export function getDescription() {
return {
description: "Hmac Sign.",
description: "HMAC signing.",
input: [
{
id: "fileToSign",
Expand All @@ -11,15 +11,15 @@ export function getDescription() {
},
{
id: "cryptoSecretParameter",
displayName: "CryptoSecret Parameter",
description: "CryptoSecret parameter used as an Hmac secret.",
displayName: "CryptoSecret parameter",
description: "CryptoSecret parameter to be used as an HMAC secret.",
type: "CryptoSecret",
required: true,
},
{
id: "hmacHashAlgorithmName",
displayName: "Hmac Hash Algorithm Name (SHA-1, SHA-256, SHA-384, SHA-512)",
description: "Hmac Hash Algorithm Name (SHA-1, SHA-256, SHA-384, SHA-512).",
displayName: "HMAC hash algorithm name (SHA-1, SHA-256, SHA-384, SHA-512)",
description: "Name of the HMAC hash algorithm (SHA-1, SHA-256, SHA-384, SHA-512).",
type: "String",
defaultValue: "SHA-256",
required: true,
Expand Down
10 changes: 5 additions & 5 deletions hmac-verify/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export function getDescription() {
return {
description: "Hmac Sign and Verify.",
description: "HMAC Sign and Verify.",
input: [
{
id: "fileToSign",
Expand All @@ -12,14 +12,14 @@ export function getDescription() {
{
id: "cryptoSecretParameter",
displayName: "CryptoSecret Parameter",
description: "CryptoSecret parameter used as an Hmac secret.",
description: "CryptoSecret parameter used as an HMAC secret.",
type: "CryptoSecret",
required: true,
},
{
id: "hmacHashAlgorithmName",
displayName: "Hmac Hash Algorithm Name (SHA-1, SHA-256, SHA-384, SHA-512)",
description: "Hmac Hash Algorithm Name (SHA-1, SHA-256, SHA-384, SHA-512).",
displayName: "HMAC hash algorithm name (SHA-1, SHA-256, SHA-384, SHA-512)",
description: "Name of the HMAC hash algorithm (SHA-1, SHA-256, SHA-384, SHA-512).",
type: "String",
defaultValue: "SHA-256",
required: true,
Expand All @@ -37,7 +37,7 @@ export function getDescription() {
id: "isVerified",
type: "String",
displayName: "Is verified",
description: "Is verified.",
description: "Specifies whether the file is verified or not.",
},
],
} as const satisfies ScriptDescription;
Expand Down
2 changes: 1 addition & 1 deletion resource-copy/index.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export function getDescription(): ScriptDescription {
return {
displayName: "Resource Copy",
description: "Copies input resource into output resource.",
description: "Copies an input resource into an output resource.",
category: "Utilities",
input: [
{
Expand Down
2 changes: 1 addition & 1 deletion resource-copy/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "resource-copy",
"displayName": "Resource Copy",
"description": "Copies input resource into output resource.",
"description": "Copies an input resource into an output resource.",
"fromVersion": "24.10.1.1",
"toVersion": null,
"private": true
Expand Down
28 changes: 0 additions & 28 deletions rsa-sign/certificate_private_key.pem

This file was deleted.

14 changes: 7 additions & 7 deletions rsa-sign/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export function getDescription() {
return {
description: "Rsa Sign.",
description: "RSA Sign.",
input: [
{
id: "fileToSign",
Expand All @@ -12,30 +12,30 @@ export function getDescription() {
{
id: "privateCertificate",
displayName: "Private Certificate",
description: "Private Certificate.",
description: "Private certificate used for signing.",
type: "Certificate",
required: true,
},
{
id: "rsaAlgorithmName",
displayName: "Rsa Algorithm Name (RSASSA-PKCS1-v1_5, RSA-PSS)",
description: "Rsa Algorithm Name (RSASSA-PKCS1-v1_5, RSA-PSS).",
displayName: "RSA algorithm name (RSASSA-PKCS1-v1_5, RSA-PSS)",
description: "Name of the RSA algorithm (RSASSA-PKCS1-v1_5, RSA-PSS).",
type: "String",
defaultValue: "RSASSA-PKCS1-v1_5",
required: true,
},
{
id: "rsaHashAlgorithmName",
displayName: "Rsa Hash Algorithm Name (SHA-1, SHA-256, SHA-384, SHA-512)",
description: "Rsa Hash Algorithm Name (SHA-1, SHA-256, SHA-384, SHA-512).",
displayName: "RSA hash algorithm name (SHA-1, SHA-256, SHA-384, SHA-512)",
description: "Name of the RSA hash algorithm (SHA-1, SHA-256, SHA-384, SHA-512).",
type: "String",
defaultValue: "SHA-256",
required: true,
},
{
id: "fileSignature",
displayName: "Output file signature",
description: "Contains the created signature (type Connector used because this files is written and read in this example).",
description: "Contains the created signature (type Connector is used because this files is written and read in this example).",
type: "OutputResource",
required: true,
},
Expand Down
9 changes: 0 additions & 9 deletions rsa-verify/certificate_public_key.pem

This file was deleted.

12 changes: 6 additions & 6 deletions rsa-verify/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export function getDescription() {
return {
description: "Rsa Verify.",
description: "RSA Verify.",
input: [
{
id: "fileToVerify",
Expand All @@ -12,22 +12,22 @@ export function getDescription() {
{
id: "publicCertificate",
displayName: "Public Certificate",
description: "Public Certificate.",
description: "Public certificate used for verifying.",
type: "Certificate",
required: true,
},
{
id: "rsaAlgorithmName",
displayName: "Rsa Algorithm Name (RSASSA-PKCS1-v1_5, RSA-PSS)",
description: "Rsa Algorithm Name (RSASSA-PKCS1-v1_5, RSA-PSS).",
displayName: "RSA algorithm name (RSASSA-PKCS1-v1_5, RSA-PSS)",
description: "Name of the RSA algorithm (RSASSA-PKCS1-v1_5, RSA-PSS).",
type: "String",
defaultValue: "RSASSA-PKCS1-v1_5",
required: true,
},
{
id: "rsaHashAlgorithmName",
displayName: "Rsa Hash Algorithm Name (SHA-1, SHA-256, SHA-384, SHA-512)",
description: "Rsa Hash Algorithm Name (SHA-1, SHA-256, SHA-384, SHA-512).",
displayName: "RSA hash algorithm name (SHA-1, SHA-256, SHA-384, SHA-512)",
description: "Name of the RSA hash algorithm (SHA-1, SHA-256, SHA-384, SHA-512).",
type: "String",
defaultValue: "SHA-256",
required: true,
Expand Down
2 changes: 1 addition & 1 deletion rsa-verify/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "rsa-verify",
"displayName": "RSA Verify operation",
"description": "Verifies a file using RSA against the signature from a file.",
"description": "Verifies a file using RSA against the signature read from a file.",
"fromVersion": "24.10.1.1",
"toVersion": null,
"private": true
Expand Down
Loading