From 358ce76203191b0c51879091a128d6f0e6acef15 Mon Sep 17 00:00:00 2001 From: Nuvindu Date: Fri, 13 Oct 2023 09:59:18 +0530 Subject: [PATCH] Add configurable variables for crypto keys --- README.md | 6 +++--- ballerina/Module.md | 6 +++--- ballerina/Package.md | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 4508ae9..396d97f 100644 --- a/README.md +++ b/README.md @@ -185,9 +185,9 @@ import ballerina/soap; import ballerina/soap:soap12; public function main() returns error? { - crypto:PrivateKey clientPrivateKey = ...// - crypto:PublicKey clientPublicKey = ...// - ​​crypto:PublicKey serverPublicKey = ...// + configurable crypto:PrivateKey clientPrivateKey = ?; + configurable crypto:PublicKey clientPublicKey = ?; + configurable ​crypto:PublicKey serverPublicKey = ?; soap12:Client soapClient = check new ("http://www.dneonline.com/calculator.asmx?WSDL", { diff --git a/ballerina/Module.md b/ballerina/Module.md index dfeaea0..5d724bc 100644 --- a/ballerina/Module.md +++ b/ballerina/Module.md @@ -175,9 +175,9 @@ import ballerina/soap; import ballerina/soap:soap12; public function main() returns error? { - crypto:PrivateKey clientPrivateKey = ...// - crypto:PublicKey clientPublicKey = ...// - ​​crypto:PublicKey serverPublicKey = ...// + configurable crypto:PrivateKey clientPrivateKey = ?; + configurable crypto:PublicKey clientPublicKey = ?; + configurable ​crypto:PublicKey serverPublicKey = ?; soap12:Client soapClient = check new ("http://www.dneonline.com/calculator.asmx?WSDL", { diff --git a/ballerina/Package.md b/ballerina/Package.md index c4b0467..f5db035 100644 --- a/ballerina/Package.md +++ b/ballerina/Package.md @@ -175,9 +175,9 @@ import ballerina/soap; import ballerina/soap:soap12; public function main() returns error? { - crypto:PrivateKey clientPrivateKey = ...// - crypto:PublicKey clientPublicKey = ...// - ​​crypto:PublicKey serverPublicKey = ...// + configurable crypto:PrivateKey clientPrivateKey = ?; + configurable crypto:PublicKey clientPublicKey = ?; + configurable ​crypto:PublicKey serverPublicKey = ?; soap12:Client soapClient = check new ("http://www.dneonline.com/calculator.asmx?WSDL", {