blob: 3d5db60164350acda363a294c4b18e32489d896c [file] [log] [blame]
Marcel van Lohuizenb5dc1922018-12-11 11:49:57 +01001// Copyright 2018 The CUE Authors
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15// Copyright 2018 The Go Authors. All rights reserved.
16// Use of this source code is governed by a BSD-style
17// license that can be found in the LICENSE file.
18
19//go:generate qgo extract crypto/sha512
20
21package sha512
22
23import "crypto/sha512"
24
25const (
26 // Size is the size, in bytes, of a SHA-512 checksum.
27 Size = 64
28
29 // Size224 is the size, in bytes, of a SHA-512/224 checksum.
30 Size224 = 28
31
32 // Size256 is the size, in bytes, of a SHA-512/256 checksum.
33 Size256 = 32
34
35 // Size384 is the size, in bytes, of a SHA-384 checksum.
36 Size384 = 48
37
38 // BlockSize is the block size, in bytes, of the SHA-512/224,
39 // SHA-512/256, SHA-384 and SHA-512 hash functions.
40 BlockSize = 128
41)
42
43// Sum512 returns the SHA512 checksum of the data.
44func Sum512(data []byte) [Size]byte {
45 return sha512.Sum512(data)
46}
47
48// Sum384 returns the SHA384 checksum of the data.
49func Sum384(data []byte) (sum384 [Size384]byte) {
50 return sha512.Sum384(data)
51}
52
53// Sum512_224 returns the Sum512/224 checksum of the data.
54func Sum512_224(data []byte) (sum224 [Size224]byte) {
55 return sha512.Sum512_224(data)
56}
57
58// Sum512_256 returns the Sum512/256 checksum of the data.
59func Sum512_256(data []byte) (sum256 [Size256]byte) {
60 return sha512.Sum512_256(data)
61}