Home | History | Annotate | Download | only in os

Lines Matching refs:footer

156             byte[] footer = new byte[6];
157 raf.readFully(footer);
159 if (footer[2] != (byte)0xff || footer[3] != (byte)0xff) {
160 throw new SignatureException("no signature in file (no footer)");
163 int commentSize = (footer[4] & 0xff) | ((footer[5] & 0xff) << 8);
164 int signatureStart = (footer[0] & 0xff) | ((footer[1] & 0xff) << 8);
176 throw new SignatureException("no signature in file (bad footer)");