func (d *digest) Sum(b []byte) []byte { buf := make([]C.uchar, d.Size()) // make a copy of the pointer, so our context does not get freed. // this allows further writes. // TODO perhaps we should think about runtime.SetFinalizer to free the context? ctxTmp := C.SHA512_CTX(d.ctx) switch d.function { case crypto.SHA384: if C.SHA384_Final(&buf[0], &ctxTmp) != 1 { return make([]byte, 0) } default: if C.SHA512_Final(&buf[0], &ctxTmp) != 1 { return make([]byte, 0) } } var result []byte if b != nil { result = make([]byte, 0) } else { result = b } for _, value := range buf { result = append(result, byte(value)) } return result }
func (h *sha384) Sum(b []byte) []byte { c := h.ctx d := make([]byte, C.SHA384_DIGEST_LENGTH) if C.SHA384_Final((*C.uchar)(unsafe.Pointer(&d[0])), &c) == 0 { panic("SHA384_Final failed") } return append(b, d...) }
func (self *SHA384Hash) Sum(b []byte) []byte { digest := make([]C.uchar, self.Size()) if C.SHA384_Final(&digest[0], &self.sha) != 1 { panic("couldn't finalize digest") } var result []byte if b != nil { result = make([]byte, 0) } else { result = b } for _, value := range digest { result = append(result, byte(value)) } return result }
func (self *SHA384Hash) Sum(b []byte) []byte { digest := make([]C.uchar, self.Size()) // make a copy of the pointer, so our context does not get freed. // this allows further writes. // TODO perhaps we should think about runtime.SetFinalizer to free the context? s_tmp := C.SHA512_CTX(self.sha) if C.SHA384_Final(&digest[0], &s_tmp) != 1 { panic("couldn't finalize digest") } var result []byte if b != nil { result = make([]byte, 0) } else { result = b } for _, value := range digest { result = append(result, byte(value)) } return result }