Java tutorial
//package com.java2s; public class Main { public static byte[] encrypotByte16(String key) { byte[] tempBytes = new byte[16]; byte keyByte[] = key.getBytes(); for (int i = 0; i < keyByte.length; i++) { tempBytes[i] = keyByte[i]; } return tempBytes; } }