1 20 21 22 23 24 25 package org.snmp4j.security; 26 27 32 public class DecryptParams 33 { 34 43 public DecryptParams(byte[] array, int offset, int length) 44 { 45 this.array = array; 46 this.offset = offset; 47 this.length = length; 48 } 49 50 53 public DecryptParams() 54 { 55 this.array = null; 56 this.offset = 0; 57 this.length = 0; 58 } 59 60 69 public void setValues(byte[] array, int offset, int length) 70 { 71 this.array = array; 72 this.offset = offset; 73 this.length = length; 74 } 75 76 public byte[] array; 77 public int offset; 78 public int length; 79 } 80 | Popular Tags |