Page Speed Optimization Libraries  1.13.35.1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
signature.h
Go to the documentation of this file.
1 /*
2  * Copyright 2014 Google Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http:///www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
20 
21 #ifndef PAGESPEED_KERNEL_BASE_SIGNATURE_H_
22 #define PAGESPEED_KERNEL_BASE_SIGNATURE_H_
23 
27 
35 
36 #ifndef ENABLE_URL_SIGNATURES
37 #define ENABLE_URL_SIGNATURES 1
38 #endif
39 
40 namespace net_instaweb {
41 
42 class Signature {
43  public:
46  explicit Signature();
47  virtual ~Signature();
48 
53  GoogleString Sign(StringPiece key, StringPiece data) const;
54 
56  virtual int SignatureSizeInChars() const = 0;
57 
58  protected:
60  virtual GoogleString RawSign(StringPiece key, StringPiece data) const = 0;
62  virtual int RawSignatureSizeInBytes() const = 0;
63 
64  private:
65 
66 };
67 
68 }
69 
70 
71 #endif
virtual int RawSignatureSizeInBytes() const =0
The number of bytes RawSign will produce.
Definition: signature.h:42
virtual GoogleString RawSign(StringPiece key, StringPiece data) const =0
Computes a binary signature of a given data under key.
std::string GoogleString
PAGESPEED_KERNEL_BASE_STRING_H_.
Definition: string.h:24
GoogleString Sign(StringPiece key, StringPiece data) const
virtual int SignatureSizeInChars() const =0
Returns the string length of the signatures produced by the Sign() method.