sha1 function

List<int> sha1(
  1. List<int> data
)

Implementation

List<int> sha1(List<int> data) {
  return crypto.sha1.convert(data).bytes;
}