# Functions
Parse parses contents from the given source and creates a jws.Message struct.
ParseString is the same as Parse, but take in a string.
Sign generates a signature for the given payload, and serializes it in compact serialization format.
SignMulti accepts multiple signers via the options parameter, and creates a JWS in JSON serialization format that contains signatures from applying aforementioned signers.
splitCompact.
Verify checks if the given JWS message is verifiable using `alg` and `key`.
VerifyWithJKU verifies the JWS message using a remote JWK file represented in the url.
VerifyWithJWK verifies the JWS message using the specified JWK.
VerifyWithJWKSet verifies the JWS message using JWK key set.
No description provided by the author
No description provided by the author
No description provided by the author
# Constants
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
# Variables
DefaultJWKAcceptor is the default acceptor that is used in functions like VerifyWithJWKSet.
# Structs
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Message represents a full JWS encoded message.
No description provided by the author
No description provided by the author
# Interfaces
No description provided by the author
JWKAcceptor decides which keys can be accepted by functions that iterate over a JWK key set.
PayloadSigner generates signature for the given payload.
# Type aliases
JWKAcceptFunc is an implementation of JWKAcceptor using a plain function.
No description provided by the author