Sample code for 30+ languages & platforms
Dart

Get a JWS Protected Header

See more JSON Web Signatures (JWS) Examples

Demonstrates Jws.GetProtectedH, which copies the decoded protected header of a signature into a JsonObject.

Background. The protected header is integrity-protected by the signature. Inspecting it (for example the alg value) is useful before deciding how to validate.

Chilkat Dart Downloads

Dart
import 'package:chilkat/chilkat.dart';

void main() {
  final jws = CkJws();

  // Load the JWS compact serialization.
  final jwsCompact = 'eyJhbGciOiJIUzI1NiJ9.VGhpcyBpcyB0aGUgY29udGVudCB0byBzaWduLg.<signature>';
  try {
    jws.loadJws(jwsCompact);
  } on ChilkatException catch (e) {
    print(e.lastErrorText);
    return;
  }

  // Copy the decoded protected header of signature 0 into a JsonObject.
  final json = CkJsonObject();
  try {
    jws.getProtectedH(0, json);
  } on ChilkatException catch (e) {
    print(e.lastErrorText);
    return;
  }

  json.emitCompact = false;
  print(json.emit());
}