package stdlib
import (
"crypto/sha512"
"go/constant"
"go/token"
"reflect"
)
func init() {
Symbols ["crypto/sha512/sha512" ] = map [string ]reflect .Value {
"BlockSize" : reflect .ValueOf (constant .MakeFromLiteral ("128" , token .INT , 0 )),
"New" : reflect .ValueOf (sha512 .New ),
"New384" : reflect .ValueOf (sha512 .New384 ),
"New512_224" : reflect .ValueOf (sha512 .New512_224 ),
"New512_256" : reflect .ValueOf (sha512 .New512_256 ),
"Size" : reflect .ValueOf (constant .MakeFromLiteral ("64" , token .INT , 0 )),
"Size224" : reflect .ValueOf (constant .MakeFromLiteral ("28" , token .INT , 0 )),
"Size256" : reflect .ValueOf (constant .MakeFromLiteral ("32" , token .INT , 0 )),
"Size384" : reflect .ValueOf (constant .MakeFromLiteral ("48" , token .INT , 0 )),
"Sum384" : reflect .ValueOf (sha512 .Sum384 ),
"Sum512" : reflect .ValueOf (sha512 .Sum512 ),
"Sum512_224" : reflect .ValueOf (sha512 .Sum512_224 ),
"Sum512_256" : reflect .ValueOf (sha512 .Sum512_256 ),
}
}
The pages are generated with Golds v0.8.4 . (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu .
PR and bug reports are welcome and can be submitted to the issue list .
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds .