Home | History | Annotate | Download | only in security

Lines Matching refs:off

44  * <p>It is possible to turn this stream on or off (see
47 * an update on the message digest. But when it is off, the message
134 * @param off the offset into {@code b} of the first byte to
138 * from {@code b}, starting at offset {@code off}.
144 public void write(byte[] b, int off, int len) throws IOException {
147 if (b == null || off + len > b.length) {
150 if (off < 0 || len < 0) {
154 out.write(b, off, len);
156 digest.update(b, off, len);
161 * Turns the digest function on or off. The default is on. When
163 * update on the message digest. But when it is off, the message
167 * off.