Home | History | Annotate | Download | only in jsse

Lines Matching refs:fragment

105      * @param fragment - the byte array containing the
108 protected byte[] encrypt(byte type, byte[] fragment) {
109 return encrypt(type, fragment, 0, fragment.length);
116 * @param fragment - the byte array containing the
122 (byte type, byte[] fragment, int offset, int len);
125 * Retrieves the fragment of the Plaintext structure of
128 * @param fragment - the byte array containing the
131 protected byte[] decrypt(byte type, byte[] fragment) {
132 return decrypt(type, fragment, 0, fragment.length);
136 * Retrieves the fragment of the Plaintext structure of
139 * @param fragment - the byte array containing the
145 (byte type, byte[] fragment, int offset, int len);