HeaderParam Event

Fires once for each JOSE header parameter.

Syntax

ANSI (Cross Platform)
virtual int FireHeaderParam(JWTHeaderParamEventParams *e);
typedef struct {
const char *Name;
const char *Value;
int DataType; int reserved; } JWTHeaderParamEventParams; Unicode (Windows) virtual INT FireHeaderParam(JWTHeaderParamEventParams *e);
typedef struct {
LPCWSTR Name;
LPCWSTR Value;
INT DataType; INT reserved; } JWTHeaderParamEventParams;
- (void)onHeaderParam:(NSString*)name :(NSString*)value :(int)dataType;
#define EID_JWT_HEADERPARAM 3

virtual INT IPWORKSAUTH_CALL FireHeaderParam(LPSTR &lpszName, LPSTR &lpszValue, INT &iDataType);

Remarks

When Decrypt, Verify or Parse is called this event will fire once for each JOSE header parameter.

Name is the name of the parameter.

Value is the value of the parameter.

DataType specifies the JSON data type of the value. Possible values are:

  • 0 (Object)
  • 1 (Array)
  • 2 (String)
  • 3 (Number)
  • 4 (Bool)
  • 5 (Null)

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks Auth 2020 C++ Edition - Version 20.0 [Build 8155]