Back to project page RavenChat.
The source code is released under:
Copyright (c) 2014 Sumit Gouthaman. All rights reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Softwar...
If you think the Android project RavenChat 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 com.sumitgouthaman.raven.utils.crypto; //from www .j a v a 2 s .c o m import java.security.NoSuchAlgorithmException; import java.security.SecureRandom; import javax.crypto.KeyGenerator; /** * Created by sumit on 15/5/14. */ /** * That that helps generate unique keys. * * Generates 256 bit keys for AES encryption. */ public class KeyGeneratorUtils { /** * Generate a new key (256 bit for AES encryption) * @param secretUsername - Secret username of user * @return - The generated secret key */ public static String getNewKey(String secretUsername) { String salt = "KNzFSWX7hCcG3qoZJx0V"; String timestamp = System.currentTimeMillis() + ""; String seed = salt + secretUsername + timestamp + salt; byte[] arr = null; try { SecureRandom sr = SecureRandom.getInstance("SHA1PRNG"); sr.setSeed(seed.getBytes()); KeyGenerator kg = KeyGenerator.getInstance("AES"); kg.init(256, sr); arr = (kg.generateKey()).getEncoded(); } catch (NoSuchAlgorithmException e) { e.printStackTrace(); } if (arr == null) { return null; } else { return Base64Utils.encode(arr); } } }