File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
gamutils/src/main/java/com/genexus/gam Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
package com .genexus .gam ;
2
2
3
- import com .genexus .gam .utils .EncodingUtil ;
3
+ import com .genexus .gam .utils .Encoding ;
4
4
import com .genexus .gam .utils .Random ;
5
5
import com .genexus .gam .utils .cryptography .Encryption ;
6
6
import com .genexus .gam .utils .cryptography .Hash ;
@@ -75,7 +75,7 @@ public static String getJwtPayload(String token) {
75
75
76
76
//**ENCODING**//
77
77
public static String base64ToBase64Url (String base64 ) {
78
- return EncodingUtil .b64ToB64Url (base64 );
78
+ return Encoding .b64ToB64Url (base64 );
79
79
}
80
80
81
81
/********EXTERNAL OBJECT PUBLIC METHODS - END ********/
Original file line number Diff line number Diff line change 6
6
import org .bouncycastle .util .encoders .Base64 ;
7
7
import org .bouncycastle .util .encoders .UrlBase64 ;
8
8
9
- public class EncodingUtil {
9
+ public class Encoding {
10
10
11
- private static final Logger logger = LogManager .getLogger (EncodingUtil .class );
11
+ private static final Logger logger = LogManager .getLogger (Encoding .class );
12
12
13
13
public static String b64ToB64Url (String input ) {
14
14
logger .debug ("b64ToB64Url" );
You can’t perform that action at this time.
0 commit comments