forked from TrueCloudLab/certificates
Remove unused code.
This commit is contained in:
parent
6d395f3818
commit
9d4034fbf6
1 changed files with 0 additions and 18 deletions
|
@ -81,15 +81,6 @@ func (p *JWT) Authorize(token string) ([]SignOption, error) {
|
||||||
return nil, errors.Wrapf(err, "invalid token")
|
return nil, errors.Wrapf(err, "invalid token")
|
||||||
}
|
}
|
||||||
|
|
||||||
// Do not accept tokens issued before the start of the ca.
|
|
||||||
// This check is meant as a stopgap solution to the current lack of a persistence layer.
|
|
||||||
// if a.config.AuthorityConfig != nil && !a.config.AuthorityConfig.DisableIssuedAtCheck {
|
|
||||||
// if claims.IssuedAt > 0 && claims.IssuedAt.Time().Before(a.startTime) {
|
|
||||||
// return nil, &apiError{errors.New("token issued before the bootstrap of certificate authority"),
|
|
||||||
// http.StatusUnauthorized, errContext}
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
|
|
||||||
// if !matchesAudience(claims.Audience, a.audiences) {
|
// if !matchesAudience(claims.Audience, a.audiences) {
|
||||||
// return nil, &apiError{errors.New("authorize: token audience invalid"), http.StatusUnauthorized,
|
// return nil, &apiError{errors.New("authorize: token audience invalid"), http.StatusUnauthorized,
|
||||||
// errContext}
|
// errContext}
|
||||||
|
@ -120,15 +111,6 @@ func (p *JWT) Authorize(token string) ([]SignOption, error) {
|
||||||
newValidityValidator(p.Claims.MinTLSCertDuration(), p.Claims.MaxTLSCertDuration()),
|
newValidityValidator(p.Claims.MinTLSCertDuration(), p.Claims.MaxTLSCertDuration()),
|
||||||
}
|
}
|
||||||
|
|
||||||
// Store the token to protect against reuse.
|
|
||||||
// if _, ok := a.ottMap.LoadOrStore(claims.ID, &idUsed{
|
|
||||||
// UsedAt: time.Now().Unix(),
|
|
||||||
// Subject: claims.Subject,
|
|
||||||
// }); ok {
|
|
||||||
// return nil, &apiError{errors.Errorf("token already used"), http.StatusUnauthorized,
|
|
||||||
// errContext}
|
|
||||||
// }
|
|
||||||
|
|
||||||
return signOps, nil
|
return signOps, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue