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

Visual FoxPro 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

 

 

 

(Visual FoxPro) Duplicate .NET's Rfc2898DeriveBytes Functionality

Demonstrates how to duplicate the results produced by .NET's System.Security.Cryptography.Rfc2898DeriveBytes class.

Chilkat ActiveX Downloads

ActiveX for 32-bit and 64-bit Windows

LOCAL loCrypt
LOCAL lcSalt
LOCAL lcSaltHex
LOCAL lcDkHex

* This example assumes Chilkat Crypt2 to have been previously unlocked.
* See Unlock Crypt2 for sample code.

* This example demonstrates how to duplicate the results produced
* by .NET's System.Security.Cryptography.Rfc2898DeriveBytes class.

* For example, here is C# code that transforms a password string into
* bytes that can be used as a secret key for symmetric encryption (such as AES, blowfish, 3DES, etc.)
* 
*     Rfc2898DeriveBytes deriveBytes = new Rfc2898DeriveBytes("secret", System.Text.Encoding.UTF8.GetBytes("saltsalt123"), numIterations);
*     byte[] secretKeyBytes = deriveBytes.GetBytes(numBytes);

* (The Rfc2898DeriveBytes computation is really just the PBKDF2 algorithm with SHA-1 hashing.)
* In Chilkat, this is what we do to match...

* First, let's get a test vector with known results.  Both Chilkat AND Microsoft should produce
* the same results.  RFC 6070 has some PBKDF2 HMAC-SHA1 Test Vectors.  Here is one of them:

*      Input:
*        P = "passwordPASSWORDpassword" (24 octets)
*        S = "saltSALTsaltSALTsaltSALTsaltSALTsalt" (36 octets)
*        c = 4096
*        dkLen = 25
* 
*      Output:
*        DK = 3d 2e ec 4f e4 1c 84 9b
*             80 c8 d8 36 62 c0 e4 4a
*             8b 29 1a 96 4c f2 f0 70
*             38                      (25 octets)
* 
* 

loCrypt = CreateObject('Chilkat_9_5_0.Crypt2')

lcSalt = "saltSALTsaltSALTsaltSALTsaltSALTsalt"
* Given that the salt is really binary data (can be any random bunch of bytes),
* we must pass the exact hex string representation of the salt bytes.
* In this case, we're getting the utf-8 byte representation of our salt string,
* which is identical to the us-ascii byte representation because there are no 8bit chars..
lcSaltHex = loCrypt.EncodeString(lcSalt,"utf-8","hex")

* Duplicate the test vector as shown above.
lcDkHex = loCrypt.Pbkdf2("passwordPASSWORDpassword","utf-8","sha1",lcSaltHex,4096,25 * 8,"hex")
? lcDkHex

RELEASE loCrypt


 

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