blob: d5b9267938bec9ccdce2ee84fef4f9704f456db1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
//
// MCCertificateUtils.h
// mailcore2
//
// Created by DINH Viêt Hoà on 7/25/13.
// Copyright (c) 2013 MailCore. All rights reserved.
//
#ifndef MAILCORE_MCCERTIFICATEUTILS_H
#define MAILCORE_MCCERTIFICATEUTILS_H
#include <libetpan/libetpan.h>
#include <MailCore/MCString.h>
namespace mailcore {
bool checkCertificate(mailstream * stream, String * hostname);
}
#endif
|