blob: be44a35170dec37086b7955000d520360f6dc8c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include <stdio.h>
#include <string.h>
#include "opencdk.h"
#include "main.h"
#include "filters.h"
#include "packet.h"
cdk_error_t
_cdk_proc_packets (cdk_ctx_t hd, cdk_stream_t inp, cdk_stream_t data,
const char *output, cdk_stream_t outstream,
digest_hd_st * md)
{
return 0;
}
|