Home | History | Annotate | Download | only in util

Lines Matching refs:digests

60     /** the digests in use for a given entry*/
61 ArrayList<MessageDigest> digests;
63 /** the manifest hashes for the digests in use */
82 digests = new ArrayList<MessageDigest>();
97 digests.clear();
110 /* if there aren't any, we can't verify any digests for this entry */
148 digests.add(digest);
157 * update the digests for the digests we are interested in
162 for (int i=0; i < digests.size(); i++) {
163 digests.get(i).update(buffer);
168 * update the digests for the digests we are interested in
173 for (int i=0; i < digests.size(); i++) {
174 digests.get(i).update(buffer, off, len);
187 * go through all the digests, calculating the final digest
205 for (int i=0; i < digests.size(); i++) {
207 MessageDigest digest = digests.get(i);