1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
# Interface: FlattenedJWS
[💗 Help the project](https://github.com/sponsors/panva)
Flattened JWS definition. Payload is returned as an empty string when JWS Unencoded Payload
Option [RFC7797](https://www.rfc-editor.org/rfc/rfc7797) is used.
## Table of contents
### Properties
- [payload](types.FlattenedJWS.md#payload)
- [signature](types.FlattenedJWS.md#signature)
- [header](types.FlattenedJWS.md#header)
- [protected](types.FlattenedJWS.md#protected)
## Properties
### payload
• **payload**: `string`
___
### signature
• **signature**: `string`
___
### header
• `Optional` **header**: [`JWSHeaderParameters`](types.JWSHeaderParameters.md)
The "header" member MUST be present and contain the value JWS Unprotected Header when the JWS
Unprotected Header value is non- empty; otherwise, it MUST be absent. This value is represented
as an unencoded JSON object, rather than as a string. These Header Parameter values are not
integrity protected.
___
### protected
• `Optional` **protected**: `string`
The "protected" member MUST be present and contain the value BASE64URL(UTF8(JWS Protected
Header)) when the JWS Protected Header value is non-empty; otherwise, it MUST be absent. These
Header Parameter values are integrity protected.
|