Searched defs:sha512Hash (Results 1 – 1 of 1) sorted by relevance
418 type sha512Hash struct { struct419 ctx C.GO_SHA512_CTX420 out [512 / 8]byte423 func (h *sha512Hash) noescapeCtx() *C.GO_SHA512_CTX {427 func (h *sha512Hash) Reset() {430 func (h *sha512Hash) Size() int { return 512 / 8 }431 func (h *sha512Hash) BlockSize() int { return 128 }432 func (h *sha512Hash) Sum(dst []byte) []byte { return h.sum(dst) }434 func (h *sha512Hash) Write(p []byte) (int, error) {441 func (h0 *sha512Hash) sum(dst []byte) []byte {[all …]