Back to project page swazam.
The source code is released under:
MIT License
If you think the Android project swazam listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package ac.tuwien.sa13.utilities; /*from w ww .j ava 2 s . c o m*/ import java.math.BigInteger; import java.security.SecureRandom; public final class SessionIdentifierGenerator { private static SecureRandom random = new SecureRandom(); public static String nextSessionId() { return new BigInteger(130, random).toString(32); } }