Home | History | Annotate | Download | only in jsse

Lines Matching refs:fragment

97      * @param fragment - the byte array containing the
100 protected byte[] encrypt(byte type, byte[] fragment) {
101 return encrypt(type, fragment, 0, fragment.length);
108 * @param fragment - the byte array containing the
114 (byte type, byte[] fragment, int offset, int len);
117 * Retrieves the fragment of the Plaintext structure of
120 * @param fragment - the byte array containing the
123 protected byte[] decrypt(byte type, byte[] fragment) {
124 return decrypt(type, fragment, 0, fragment.length);
128 * Retrieves the fragment of the Plaintext structure of
131 * @param fragment - the byte array containing the
137 (byte type, byte[] fragment, int offset, int len);