| Index: base/crypto/signature_creator.h
|
| diff --git a/base/crypto/signature_creator.h b/base/crypto/signature_creator.h
|
| index c405560f7e48ce92086ca32c9cbbeabb57d0c353..3e3afd27d9337002be3844a871e378cd2eb38823 100644
|
| --- a/base/crypto/signature_creator.h
|
| +++ b/base/crypto/signature_creator.h
|
| @@ -1,4 +1,4 @@
|
| -// Copyright (c) 2009 The Chromium Authors. All rights reserved.
|
| +// Copyright (c) 2011 The Chromium Authors. All rights reserved.
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| @@ -33,12 +33,12 @@ namespace base {
|
| // Currently can only sign data using SHA-1 with RSA encryption.
|
| class SignatureCreator {
|
| public:
|
| + ~SignatureCreator();
|
| +
|
| // Create an instance. The caller must ensure that the provided PrivateKey
|
| // instance outlives the created SignatureCreator.
|
| static SignatureCreator* Create(RSAPrivateKey* key);
|
|
|
| - ~SignatureCreator();
|
| -
|
| // Update the signature with more data.
|
| bool Update(const uint8* data_part, int data_part_len);
|
|
|
|
|