DSAzure.TSignedIdentifier.HMAC_SHA256

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

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

C++

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

Properties

Type Visibility Source Unit Parent
function protected
DSAzure.pas
DSAzure.hpp
DSAzure TSignedIdentifier

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