md5Hash function

List<int> md5Hash(
  1. List<int> str
)

Implementation

List<int> md5Hash(List<int> str) {
  return md5.convert(str).bytes;
}