The Go Programming Language

Text file src/cmd/gc/md5.h

     1	// Copyright 2009 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	typedef struct MD5 MD5;
     6	struct MD5
     7	{
     8		uint32 s[4];
     9		uchar x[64];
    10		int nx;
    11		uint64 len;
    12	};
    13	
    14	void md5reset(MD5*);
    15	void md5write(MD5*, uchar*, int);
    16	uint64 md5sum(MD5*);

release.r60.3. Except as noted, this content is licensed under a Creative Commons Attribution 3.0 License.