-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
package azion_secure_token; | ||
|
||
import java.security.MessageDigest; | ||
import java.security.NoSuchAlgorithmException; | ||
|
||
import sun.misc.BASE64Encoder; | ||
|
||
public class secure_token { | ||
|
||
|
||
public static void main(String[] args) throws NoSuchAlgorithmException { | ||
|
||
String secretKey = "mysecret"; | ||
String uri = "/my/uri"; | ||
long expire = 1470055000; | ||
|
||
|
||
String aValidar = secretKey + uri + expire; | ||
|
||
MessageDigest md = MessageDigest.getInstance("MD5"); | ||
md.update(aValidar.getBytes()); | ||
|
||
String token = new BASE64Encoder().encode(md.digest()).replace("=","").replace("+","-").replace("/","_"); | ||
|
||
System.out.printf("http://www.example.org%s?st=%s&e=%s",uri,token,expire); | ||
} | ||
} |