136137138139140141142143144
{ MessageDigest md; try { md = MessageDigest.getInstance(algorithm); } catch (NoSuchAlgorithmException ex) { throw new CannotHappenException(ex); } return new BuiltInDigest(md); }