Home
last modified time | relevance | path

Searched defs:sha384Hash (Results 1 – 1 of 1) sorted by relevance

/aosp_15_r20/prebuilts/go/linux-x86/src/crypto/internal/boring/
Dsha.go380 type sha384Hash struct { struct
381 ctx C.GO_SHA512_CTX
382 out [384 / 8]byte
385 func (h *sha384Hash) noescapeCtx() *C.GO_SHA512_CTX {
389 func (h *sha384Hash) Reset() {
392 func (h *sha384Hash) Size() int { return 384 / 8 }
393 func (h *sha384Hash) BlockSize() int { return 128 }
394 func (h *sha384Hash) Sum(dst []byte) []byte { return h.sum(dst) }
396 func (h *sha384Hash) Write(p []byte) (int, error) {
403 func (h0 *sha384Hash) sum(dst []byte) []byte {
[all …]