* i386.c (ix86_expand_set_or_movmem): Disable 512bit loops for targets
[official-gcc.git] / gcc / go / gofrontend / go-sha1.h
blob22db5a2b4b95522039eb111be322a399ff5541be
1 // go-sha1.h -- GCC specific sha1 checksum utilities. -*- C++ -*-
3 // Copyright 2016 The Go Authors. All rights reserved.
4 // Use of this source code is governed by a BSD-style
5 // license that can be found in the LICENSE file.
7 #ifndef GO_SHA1_H
8 #define GO_SHA1_H
10 #include "go-system.h"
13 // Interface class for computation of SHA1 checksums. Front end requests
14 // one of these objects from the back end to use for computing
15 // checksums (each back end tends to have a different SHA1 implementation).
16 // Back ends are expected to create a new class that derives from this
17 // one containing an implementation.
20 class Go_sha1_helper
22 public:
23 virtual ~Go_sha1_helper() { }
24 virtual void process_bytes(const void* buffer, size_t len) = 0;
25 virtual std::string finish() = 0;
26 static const int checksum_len = 20;
29 // Call to create and return a new sha1 helper (this routine defined
30 // by the backend). Caller is responsible for deletion.
31 extern Go_sha1_helper* go_create_sha1_helper();
33 #endif // !defined(GO_SHA1_H)