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

SQL Server 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
uncategorized

 

 

 

(SQL Server) Hash (Digest) a String

Hash the bytes of a string.

Chilkat ActiveX Downloads

ActiveX for 32-bit and 64-bit Windows

// Important: See this note about string length limitations for strings returned by sp_OAMethod calls.
//
CREATE PROCEDURE ChilkatSample
AS
BEGIN
    DECLARE @hr int
    DECLARE @sb int
    EXEC @hr = sp_OACreate 'Chilkat_9_5_0.StringBuilder', @sb OUT
    IF @hr <> 0
    BEGIN
        PRINT 'Failed to create ActiveX component'
        RETURN
    END

    DECLARE @success int
    EXEC sp_OAMethod @sb, 'Append', @success OUT, 'Hello World'

    -- Hashing algorithms (i.e. digest algorithms) operate on raw bytes.
    -- Therefore, we must specify the character encoding (utf-8, utf-16, iso-8859-1, etc.) to be used when hashing.

    -- Get the SHA256 hash in hex
    DECLARE @sha256_hex nvarchar(4000)
    EXEC sp_OAMethod @sb, 'GetHash', @sha256_hex OUT, 'sha256', 'hex', 'utf-8'

    PRINT 'SHA256: ' + @sha256_hex

    -- Get the SHA384 hash in hex lowercase
    DECLARE @sha384_hex nvarchar(4000)
    EXEC sp_OAMethod @sb, 'GetHash', @sha384_hex OUT, 'sha384', 'hex_lower', 'utf-8'

    PRINT 'SHA384: ' + @sha384_hex

    -- Get the SHA512 hash in base64
    DECLARE @sha512_base64 nvarchar(4000)
    EXEC sp_OAMethod @sb, 'GetHash', @sha512_base64 OUT, 'sha512', 'base64', 'utf-8'

    PRINT 'SHA512: ' + @sha512_base64

    -- Get the SHA1 hash in hex lowercase
    DECLARE @sha1_hex nvarchar(4000)
    EXEC sp_OAMethod @sb, 'GetHash', @sha1_hex OUT, 'sha1', 'hex_lower', 'utf-8'

    PRINT 'SHA1: ' + @sha1_hex

    -- Get the CRC8 digest in decimal
    DECLARE @crc8_decimal nvarchar(4000)
    EXEC sp_OAMethod @sb, 'GetHash', @crc8_decimal OUT, 'crc8', 'decimal', 'utf-8'

    PRINT 'CRC8: ' + @crc8_decimal

    EXEC @hr = sp_OADestroy @sb


END
GO

 

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