https://github.com/core-go/security
https://github.com/core-go/security
authorization authorizer crypto jwt security
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/core-go/security
- Owner: core-go
- Created: 2020-06-01T23:50:31.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2024-08-22T00:26:03.000Z (10 months ago)
- Last Synced: 2025-01-10T04:15:01.379Z (6 months ago)
- Topics: authorization, authorizer, crypto, jwt, security
- Language: Go
- Homepage:
- Size: 74.2 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Security
- Implementation of TokenVerifier: [DefaultTokenService](https://github.com/core-go/security/blob/main/jwt/token_adapter.go)
- Implementation of CacheService: [RedisService](https://github.com/core-go/redis/blob/main/redis_service.go) of [core-go/redis](https://github.com/core-go/redis)## Installation
Please make sure to initialize a Go module before installing core-go/security:```shell
go get -u github.com/core-go/security
```Import:
```go
import "github.com/core-go/security"
```