Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/validation.rs
Original file line number Diff line number Diff line change
Expand Up @@ -286,6 +286,11 @@ pub(crate) fn validate(claims: ClaimsForValidation, options: &Validation) -> Res
// processing the claim does not identify itself with a value in the
// "aud" claim when this claim is present, then the JWT MUST be
// rejected.
(TryParse::Parsed(Audience::Multiple(aud)), None) => {
if !aud.is_empty() {
return Err(new_error(ErrorKind::InvalidAudience));
}
}
(TryParse::Parsed(_), None) => {
return Err(new_error(ErrorKind::InvalidAudience));
}
Expand Down