Chilkat Examples

ChilkatHOME.NET Core C#Android™AutoItCC#C++Chilkat2-PythonCkPythonClassic ASPDataFlexDelphi ActiveXDelphi DLLGoJavaLianjaMono C#Node.jsObjective-CPHP ActiveXPHP ExtensionPerlPowerBuilderPowerShellPureBasicRubySQL ServerSwift 2Swift 3,4,5...TclUnicode CUnicode C++VB.NETVBScriptVisual Basic 6.0Visual FoxProXojo Plugin

PowerBuilder Examples

Web API Categories

ASN.1
AWS KMS
AWS Misc
Amazon EC2
Amazon Glacier
Amazon S3
Amazon S3 (new)
Amazon SES
Amazon SNS
Amazon SQS
Async
Azure Cloud Storage
Azure Key Vault
Azure Service Bus
Azure Table Service
Base64
Bounced Email
Box
CAdES
CSR
CSV
Certificates
Code Signing
Compression
DKIM / DomainKey
DNS
DSA
Diffie-Hellman
Digital Signatures
Dropbox
Dynamics CRM
EBICS
ECC
Ed25519
Email Object
Encryption
FTP
FileAccess
Firebase
GMail REST API
GMail SMTP/IMAP/POP
Geolocation
Google APIs
Google Calendar
Google Cloud SQL
Google Cloud Storage
Google Drive
Google Photos
Google Sheets
Google Tasks
Gzip
HTML-to-XML/Text
HTTP

HTTP Misc
IMAP
JSON
JSON Web Encryption (JWE)
JSON Web Signatures (JWS)
JSON Web Token (JWT)
Java KeyStore (JKS)
MHT / HTML Email
MIME
MS Storage Providers
Microsoft Graph
Misc
NTLM
OAuth1
OAuth2
OIDC
Office365
OneDrive
OpenSSL
Outlook
Outlook Calendar
Outlook Contact
PDF Signatures
PEM
PFX/P12
PKCS11
POP3
PRNG
REST
REST Misc
RSA
SCP
SCard
SFTP
SMTP
SSH
SSH Key
SSH Tunnel
ScMinidriver
SharePoint
SharePoint Online
Signing in the Cloud
Socket/SSL/TLS
Spider
Stream
Tar Archive
ULID/UUID
Upload
WebSocket
XAdES
XML
XML Digital Signatures
XMP
Zip
curl

 

 

 

(PowerBuilder) RSA Encrypt Hash using SHA256 hash function and SHA1 mask function

Note: This example requires a feature introduced in Chilkat v9.5.0.66

How can this Javascript be duplicated using Chilkat?

function a(e, t) {
                var r = s.pki.publicKeyFromPem(e)
                  , n = r.encrypt(t, "RSA-OAEP", {
                    md: s.md.sha256.create(),
                    mgf1: {
                        md: s.md.sha1.create()
                    }
                });
                return s.util.encode64(n)
            }

Note: The OAEP padding uses random bytes in the padding, and therefore each time encryption happens, even using the same data and key, the result will be different -- but still valid. One should not expect to get the same output.

Chilkat ActiveX Downloads

ActiveX for 32-bit and 64-bit Windows

integer li_rc
oleobject loo_Pubkey
oleobject loo_SbPem
integer li_BCrlf
integer li_Success
string ls_OriginalData
oleobject loo_Crypt
string ls_HashBase64
oleobject loo_Rsa
integer li_BUsePrivateKey
string ls_EncryptedStr

// Note: This example requires a feature introduced in Chilkat v9.5.0.66

// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.

loo_Pubkey = create oleobject
li_rc = loo_Pubkey.ConnectToNewObject("Chilkat_9_5_0.PublicKey")
if li_rc < 0 then
    destroy loo_Pubkey
    MessageBox("Error","Connecting to COM object failed")
    return
end if

loo_SbPem = create oleobject
li_rc = loo_SbPem.ConnectToNewObject("Chilkat_9_5_0.StringBuilder")

li_BCrlf = 1
loo_SbPem.AppendLine("-----BEGIN PUBLIC KEY-----",li_BCrlf)
loo_SbPem.AppendLine("MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA33TqqLR3eeUmDtHS89qF",li_BCrlf)
loo_SbPem.AppendLine("3p4MP7Wfqt2Zjj3lZjLjjCGDvwr9cJNlNDiuKboODgUiT4ZdPWbOiMAfDcDzlOxA",li_BCrlf)
loo_SbPem.AppendLine("04DDnEFGAf+kDQiNSe2ZtqC7bnIc8+KSG/qOGQIVaay4Ucr6ovDkykO5Hxn7OU7s",li_BCrlf)
loo_SbPem.AppendLine("Jp9TP9H0JH8zMQA6YzijYH9LsupTerrY3U6zyihVEDXXOv08vBHk50BMFJbE9iwF",li_BCrlf)
loo_SbPem.AppendLine("wnxCsU5+UZUZYw87Uu0n4LPFS9BT8tUIvAfnRXIEWCha3KbFWmdZQZlyrFw0buUE",li_BCrlf)
loo_SbPem.AppendLine("f0YN3/Q0auBkdbDR/ES2PbgKTJdkjc/rEeM0TxvOUf7HuUNOhrtAVEN1D5uuxE1W",li_BCrlf)
loo_SbPem.AppendLine("SwIDAQAB",li_BCrlf)
loo_SbPem.AppendLine("-----END PUBLIC KEY-----",li_BCrlf)

// Load the public key object from the PEM. 
li_Success = loo_Pubkey.LoadFromString(loo_SbPem.GetAsString())
if li_Success <> 1 then
    Write-Debug loo_Pubkey.LastErrorText
    destroy loo_Pubkey
    destroy loo_SbPem
    return
end if

ls_OriginalData = "This is the original data to be SHA-256 hashed and RSA encrypted."

// First we SHA-256 hash the original data to get the hash in base64 format:
loo_Crypt = create oleobject
li_rc = loo_Crypt.ConnectToNewObject("Chilkat_9_5_0.Crypt2")

loo_Crypt.HashAlgorithm = "SHA-256"
loo_Crypt.EncodingMode = "base64"
ls_HashBase64 = loo_Crypt.HashStringENC(ls_OriginalData)

// Setup RSA to use OAEP padding with SHA-1 for the mask function.
loo_Rsa = create oleobject
li_rc = loo_Rsa.ConnectToNewObject("Chilkat_9_5_0.Rsa")

loo_Rsa.OaepPadding = 1
loo_Rsa.OaepHash = "SHA1"
loo_Rsa.ImportPublicKeyObj(loo_Pubkey)
loo_Rsa.EncodingMode = "base64"

// Starting in v9.5.0.66, we can provide a binary encoding mode, such as "base64", "hex", "base64url", etc.
// for the Charset property.   The Charset property was previously limited to character encodings, such as
// "utf-8", "iso-8859-1", etc.  If a binary encoding is used, then the string passed in is decoded to the binary
// bytes as indicated.  (If an actual charset, such as "utf-8" is used, then the input string is converted to the
// byte representation of the charset, and then encrypted.)

// Given that a hash is composed of non-text binary bytes, we'll set the Charset property equal to "base64" 
// (because we have the base64 hash from above).
loo_Rsa.Charset = "base64"

// Note: The OAEP padding uses random bytes in the padding, and therefore each time encryption happens,
// even using the same data and key, the result will be different --  but still valid.  One should not expect
// to get the same output.
li_BUsePrivateKey = 0
ls_EncryptedStr = loo_Rsa.EncryptStringENC(ls_HashBase64,li_BUsePrivateKey)
if loo_Rsa.LastMethodSuccess <> 1 then
    Write-Debug loo_Rsa.LastErrorText
    destroy loo_Pubkey
    destroy loo_SbPem
    destroy loo_Crypt
    destroy loo_Rsa
    return
end if

Write-Debug "Base64 RSA encrypted output: " + ls_EncryptedStr


destroy loo_Pubkey
destroy loo_SbPem
destroy loo_Crypt
destroy loo_Rsa

 

© 2000-2024 Chilkat Software, Inc. All Rights Reserved.