pull/128/head
parent
a6ea0f3c9a
commit
5f80ebc89a
@ -0,0 +1,23 @@
|
||||
package org.mitre.jwt.encryption;
|
||||
|
||||
public enum JweAlgorithms {
|
||||
|
||||
//Key Derivation Function Values
|
||||
CS256("256"),
|
||||
CS384("384"),
|
||||
CS512("512"),
|
||||
//Encryption Method Values
|
||||
A128GCM("GCM"),
|
||||
A256GCM("GCM"),
|
||||
A128CBC("CBC"),
|
||||
A256CBC("CBC");
|
||||
|
||||
|
||||
|
||||
private final String value;
|
||||
|
||||
JweAlgorithms(String value) {
|
||||
this.value = value;
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in new issue