Posts

Showing posts from August, 2015

How “Going Mobile” can improve information security

Encryption Geo-location Biometrics OTP (One Time Pass code/ Password) OOB (Out of Band) Secure Element

The Five Myths of Enterprise Mobility

Companies can afford to wait until technology has stabilized before deploying a mobility strategy Increased mobility for workforces means increased risk of security breaches The consumerisation of IT is having no impact on sectors that use rugged mobile devices A Mobile Device Management strategy is an optional extra, not an essential tool Enterprises can manage mobility in-house behind the firewall without outsourcing to a cloud-based platform

How to encrypt & decrypt the password in JAVA for Selenium Web Driver

package org.processmining.plugins.security; import java.io.BufferedReader; import java.io.BufferedWriter; import java.io.DataInputStream; import java.io.File; import java.io.FileInputStream; import java.io.FileWriter; import java.io.InputStreamReader; import java.security.Key; import javax.crypto.Cipher; import javax.crypto.spec.SecretKeySpec; import sun.misc.BASE64Decoder; import sun.misc.BASE64Encoder; public class AESencrp {          private static final String ALGO = "AES";   private static final byte[] keyValue =  new byte[] { 'T', 'h', 'e', 'B', 'e', 's', 't','S', 'e', 'c', 'r','e', 't', 'K', 'e', 'y' }; public static String encrypt(String Data) throws Exception {         Key key = generateKey();         Cipher c = Cipher.getInstance(ALGO);         c.init(Cipher.ENCRYPT_MODE, key);         byte[