DSAzure.TSignedIdentifier.HMAC_SHA256

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type: function
Visibility: protected
Source:
DSAzure.pas
DSAzure.hpp
Unit: DSAzure
Parent: TSignedIdentifier

Delphi

function HMAC_SHA256(const StringToSign: String): TArray<Byte>;

C++

System::DynamicArray<System::Byte> __fastcall HMAC_SHA256(const System::UnicodeString StringToSign);

Description

Signs a string using HMAC-SHA-256.

HMAC_SHA256 signs a string using the HMAC-SHA-256 algorithm. This is used in the Signature function, where the result is then base 64-encoded and returned as the Signature for the signed identifier.

See Also