You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
392 B

  1. // +build appengine
  2. // This file contains the safe implementations of otherwise unsafe-using code.
  3. package xxhash
  4. // Sum64String computes the 64-bit xxHash digest of s.
  5. func Sum64String(s string) uint64 {
  6. return Sum64([]byte(s))
  7. }
  8. // WriteString adds more data to d. It always returns len(s), nil.
  9. func (d *Digest) WriteString(s string) (n int, err error) {
  10. return d.Write([]byte(s))
  11. }