Home | History | Annotate | Download | only in security

Lines Matching refs:expectations

107     private static final Map<String, Map<String, byte[]>> EXPECTATIONS
111 Map<String, byte[]> expectations = EXPECTATIONS.get(algorithm);
112 if (expectations == null) {
113 expectations = new HashMap<String, byte[]>();
114 EXPECTATIONS.put(algorithm, expectations);
116 expectations.put(inputName, expected);
120 Map<String, byte[]> expectations = EXPECTATIONS.get(algorithm);
121 if (expectations == null) {
122 throw new Exception("No expectations for MessageDigest." + algorithm);
124 return expectations;