summaryrefslogtreecommitdiff
path: root/src/main/java/moe/nea/prickly/auth/Authorizations.java
blob: 8b720a5f617a101124d8c33d23a7a18134dcd350 (plain)
1
2
3
4
5
6
7
8
9
/* (C) 2025 Linnea Gräf - Licensed to everyone under the BSD 3 Clause License */
package moe.nea.prickly.auth;

import com.auth0.jwt.algorithms.Algorithm;
import moe.nea.prickly.config.Config;

public class Authorizations {
	public static final Algorithm JWT_ALGORITHM = Algorithm.HMAC256(Config.SECRET);
}