Java String Descrypt decryptL(byte[] bytes, int length)

Here you can find the source of decryptL(byte[] bytes, int length)

Description

decrypt L

License

Apache License

Declaration

public static void decryptL(byte[] bytes, int length) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

public class Main {
    public static void decryptL(byte[] bytes, int length) {
        for (int i = 0; i < bytes.length; i++) {
            bytes[i] = (byte) (bytes[i] - 29);
        }//from   w w w .  j a  v a2 s.c o  m
    }
}

Related

  1. decrypt2(byte[] arg0, int arg1, String arg2, byte arg3)
  2. decryptBytes(final byte[] b, final int i)
  3. decryptChar(String pwd, int offset, int pos)
  4. decryptCharcode(char c, int start, int end, int offset)
  5. decryptEmailId(String encryptedEmailId)
  6. decryptMailAdress(String enc, int offset)
  7. decryptPwd(String enc)