/* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef SSL_CT_SCT_H
#define SSL_CT_SCT_H
#include "apr_pools.h"
#include "apr_tables.h"
#include "httpd.h"
#include "mod_ssl.h"
#include "ssl_ct_log_config.h"
typedef struct cert_chain {
apr_pool_t *p;
} cert_chain;
typedef struct {
unsigned char version;
const unsigned char *extensions;
unsigned char hash_alg;
unsigned char sig_alg;
const unsigned char *sig;
const unsigned char *signed_data;
} sct_fields_t;
server_rec *s, const unsigned char *sct,
#endif /* SSL_CT_SCT_H */