github.com/shogo82148/std@v1.22.1-0.20240327122250-4e474527810c/crypto/md5/gen.go (about) 1 // Copyright 2012 The Go Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style 3 // license that can be found in the LICENSE file. 4 5 //go:build ignore 6 7 // This program generates md5block.go 8 // Invoke as 9 // 10 // go run gen.go -output md5block.go 11 12 package main 13 14 type Data struct { 15 a, b, c, d string 16 Shift1 []int 17 Shift2 []int 18 Shift3 []int 19 Shift4 []int 20 Table1 []uint32 21 Table2 []uint32 22 Table3 []uint32 23 Table4 []uint32 24 }