Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//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;
    }
}