root/content/common/ssl_status_serialization.h

/* [<][>][^][v][top][bottom][index][help] */

INCLUDED FROM


// 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 CONTENT_COMMON_SSL_STATUS_SERIALIZATION_H_
#define CONTENT_COMMON_SSL_STATUS_SERIALIZATION_H_

#include <string>

#include "content/common/content_export.h"
#include "content/public/common/signed_certificate_timestamp_id_and_status.h"
#include "net/cert/cert_status_flags.h"

namespace content {

// Convenience methods for serializing/deserializing the security info.
CONTENT_EXPORT std::string SerializeSecurityInfo(
    int cert_id,
    net::CertStatus cert_status,
    int security_bits,
    int connection_status,
    const SignedCertificateTimestampIDStatusList&
        signed_certificate_timestamp_ids);

bool DeserializeSecurityInfo(
    const std::string& state,
    int* cert_id,
    net::CertStatus* cert_status,
    int* security_bits,
    int* connection_status,
    SignedCertificateTimestampIDStatusList* signed_certificate_timestamp_ids);

}  // namespace content

#endif  // CONTENT_COMMON_SSL_STATUS_SERIALIZATION_H_

/* [<][>][^][v][top][bottom][index][help] */