Home
last modified time | relevance | path

Searched refs:NotBeforeKey (Results 1 – 13 of 13) sorted by relevance

/dports/sysutils/istio/istio-1.6.7/vendor/github.com/lestrrat-go/jwx/jwt/
H A Dtoken_gen.go19 NotBeforeKey = "nbf" const
71 case NotBeforeKey:
122 case NotBeforeKey:
185 if v, ok := t.Get(NotBeforeKey); ok {
277 if err := writeJSON(&buf, t.notBefore, NotBeforeKey); err != nil {
H A Dtoken_gen_test.go26 jwt.NotBeforeKey: expectedTokenTime,
62 jwt.NotBeforeKey: dummy,
122 err = t1.Set(jwt.NotBeforeKey, now.Add(5*time.Second))
H A Dverify_test.go74 t.Run(jwt.NotBeforeKey, func(t *testing.T) {
79 t1.Set(jwt.NotBeforeKey, tm)
/dports/www/minio-client/mc-RELEASE.2021-12-10T00-14-28Z/vendor/github.com/lestrrat-go/jwx/jwt/
H A Dtoken_gen.go27 NotBeforeKey = "nbf" const
117 case NotBeforeKey:
149 case NotBeforeKey:
212 case NotBeforeKey:
215 return errors.Wrapf(err, `invalid value for %s key`, NotBeforeKey)
330 pairs = append(pairs, &ClaimPair{Key: NotBeforeKey, Value: v})
399 case NotBeforeKey:
402 return errors.Wrapf(err, `failed to decode value for key %s`, NotBeforeKey)
H A Dtoken_test.go30 jwt.NotBeforeKey: expectedTokenTime,
65 jwt.NotBeforeKey: dummy,
126 err = t1.Set(jwt.NotBeforeKey, now.Add(5*time.Second))
189 jwt.NotBeforeKey: {
H A Dvalidate_test.go81 t.Run(jwt.NotBeforeKey, func(t *testing.T) {
87 t1.Set(jwt.NotBeforeKey, tm)
171 t1.Set(jwt.NotBeforeKey, tm)
186 t1.Set(jwt.NotBeforeKey, tm)
H A Dvalidate.go22 case ExpirationKey, IssuedAtKey, NotBeforeKey:
34 case NotBeforeKey:
/dports/ftp/sftpgo/sftpgo-2.2.0/vendor/github.com/lestrrat-go/jwx/jwt/
H A Dtoken_gen.go27 NotBeforeKey = "nbf" const
117 case NotBeforeKey:
149 case NotBeforeKey:
212 case NotBeforeKey:
215 return errors.Wrapf(err, `invalid value for %s key`, NotBeforeKey)
330 pairs = append(pairs, &ClaimPair{Key: NotBeforeKey, Value: v})
399 case NotBeforeKey:
402 return errors.Wrapf(err, `failed to decode value for key %s`, NotBeforeKey)
H A Dvalidate.go22 case ExpirationKey, IssuedAtKey, NotBeforeKey:
34 case NotBeforeKey:
/dports/www/minio-client/mc-RELEASE.2021-12-10T00-14-28Z/vendor/github.com/lestrrat-go/jwx/jwt/openid/
H A Dtoken_gen.go28 NotBeforeKey = "nbf" const
163 case NotBeforeKey:
309 case NotBeforeKey:
410 case NotBeforeKey:
413 return errors.Wrapf(err, `invalid value for %s key`, NotBeforeKey)
810 pairs = append(pairs, &ClaimPair{Key: NotBeforeKey, Value: v})
974 case NotBeforeKey:
977 return errors.Wrapf(err, `failed to decode value for key %s`, NotBeforeKey)
H A Dopenid_test.go187 Key: openid.NotBeforeKey,
/dports/ftp/sftpgo/sftpgo-2.2.0/httpd/
H A Dauth_utils.go143 claims[jwt.NotBeforeKey] = now.Add(-30 * time.Second)
269 claims[jwt.NotBeforeKey] = now.Add(-30 * time.Second)
H A Dinternal_test.go655 claims[jwt.NotBeforeKey] = now.Add(-30 * time.Second)