Adapter for libpepmime, offering ObjC API.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
//
|
|
// PEPMessage2MIMEUtil.m
|
|
// pEpMimeObjCAdapter_macOS
|
|
//
|
|
// Created by Andreas Buff on 01.07.21.
|
|
//
|
|
|
|
#import "PEPMessage2MIMEUtil.h"
|
|
|
|
#import <PEPObjCAdapterTypes_macOS/PEPObjCAdapterTypes_macOS.h>
|
|
#include <pEpMIME.hh>
|
|
|
|
@implementation PEPMessage2MIMEUtil
|
|
|
|
|
|
- (nullable NSData*)mimeDataFromPEPMessage:(PEPMessage *)pEpMessage error:(NSError **)error {
|
|
// PEPMSG 2 message
|
|
// msg to mimestring
|
|
//string to data
|
|
|
|
|
|
return nil;
|
|
}
|
|
|
|
@end
|