blob: be48b7a168c4a35c56046d827f71fb2d2ea3bb74 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
module dmagick.c.cipher;
import dmagick.c.exception;
import dmagick.c.image;
import dmagick.c.magickString;
import dmagick.c.magickType;
extern(C)
{
MagickBooleanType DecipherImage(Image*, const char*, ExceptionInfo*);
MagickBooleanType EncipherImage(Image*, const char*, ExceptionInfo*);
MagickBooleanType PasskeyDecipherImage(Image*, const StringInfo*, ExceptionInfo*);
MagickBooleanType PasskeyEncipherImage(Image*, const StringInfo*, ExceptionInfo*);
}
|