summaryrefslogtreecommitdiff
path: root/chromium/crypto/openpgp_symmetric_encryption.h
blob: bcc81d68d474aa4da469635f0bf6a67293beea6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// Copyright (c) 2012 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.

#ifndef CRYPTO_OPENPGP_SYMMETRIC_ENCRYPTION_H_
#define CRYPTO_OPENPGP_SYMMETRIC_ENCRYPTION_H_

#include <string>

#include "base/strings/string_piece.h"
#include "crypto/crypto_export.h"

namespace crypto {

// OpenPGPSymmetricEncrytion implements enough of RFC 4880 to read and write
// uncompressed, symmetrically encrypted data. You can create ciphertext
// compatable with this code from the command line with:
//    gpg --compress-algo=NONE --cipher-algo=AES -c
//
// Likewise, the output of this can be decrypted on the command line with:
//    gpg < input
class CRYPTO_EXPORT OpenPGPSymmetricEncrytion {
 public:
  enum Result {
    OK,
    UNKNOWN_CIPHER,  // you forgot to pass --cipher-algo=AES to gpg
    UNKNOWN_HASH,
    NOT_SYMMETRICALLY_ENCRYPTED,  // it's OpenPGP data, but not correct form
    COMPRESSED,  // you forgot to pass --compress-algo=NONE
    PARSE_ERROR,  // it's not OpenPGP data.
    INTERNAL_ERROR,
  };

  static Result Decrypt(base::StringPiece encrypted,
                        base::StringPiece passphrase,
                        std::string *out);

  static std::string Encrypt(base::StringPiece plaintext,
                             base::StringPiece passphrase);
};

}  // namespace crypto

#endif  // CRYPTO_OPENPGP_SYMMETRIC_ENCRYPTION_H_