ebf8e5308a
* port SSCT OSS * port header hmac key to ent and generate token proto without make command * remove extra nil check in request handling * add changelog * add comment to router.go * change test var to use length constants * remove local index is 0 check and extra defer which can be removed after use of ExternalID
11 lines
236 B
Go
11 lines
236 B
Go
package consts
|
|
|
|
const (
|
|
ServiceTokenPrefix = "hvs."
|
|
BatchTokenPrefix = "hvb."
|
|
RecoveryTokenPrefix = "hvr."
|
|
LegacyServiceTokenPrefix = "s."
|
|
LegacyBatchTokenPrefix = "b."
|
|
LegacyRecoveryTokenPrefix = "r."
|
|
)
|