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 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
|
// Copyright 2024 OpenPubkey
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// SPDX-License-Identifier: Apache-2.0
package oidc
import (
"fmt"
)
type Jwt struct {
payload string
payloadClaims *OidcClaims
signature *Signature
raw []byte
}
func NewJwt(token []byte) (*Jwt, error) {
protected, payload, signature, err := SplitCompact(token)
if err != nil {
return nil, err
}
idt := &Jwt{
payload: string(payload),
signature: &Signature{
Protected: string(protected),
Signature: string(signature),
},
raw: token,
}
if err := ParseJWTSegment(protected, &idt.signature.protectedClaims); err != nil {
return nil, fmt.Errorf("error parsing protected: %w", err)
}
if err := ParseJWTSegment(payload, &idt.payloadClaims); err != nil {
return nil, fmt.Errorf("error parsing payload: %w", err)
}
return idt, nil
}
func (i *Jwt) GetClaims() *OidcClaims {
return i.payloadClaims
}
func (i *Jwt) GetPayload() string {
return i.payload
}
func (i *Jwt) GetSignature() *Signature {
return i.signature
}
func (i *Jwt) GetRaw() []byte {
return i.raw
}
// Compares two JWTs and determines if they are for the same identity (subject)
func SameIdentity(t1, t2 []byte) error {
token1, err := NewJwt(t1)
if err != nil {
return err
}
token2, err := NewJwt(t2)
if err != nil {
return err
}
// Subject identity can only be established within the same issuer
if token1.GetClaims().Issuer != token2.GetClaims().Issuer {
return fmt.Errorf("tokens have different issuers")
}
if token1.GetClaims().Subject != token2.GetClaims().Subject {
return fmt.Errorf("token have a different subject claims")
}
return nil
}
// RequireOlder returns an error if t1 is not older than t2
func RequireOlder(t1, t2 []byte) error {
token1, err := NewJwt(t1)
if err != nil {
return err
}
token2, err := NewJwt(t2)
if err != nil {
return err
}
// Check which token was issued first
if token1.GetClaims().IssuedAt > token2.GetClaims().IssuedAt {
return fmt.Errorf("tokens not issued in correct order")
}
return nil
}
|