X-Git-Url: https://git.saurik.com/apple/security.git/blobdiff_plain/80e2389990082500d76eb566d4946be3e786c3ef..d8f41ccd20de16f8ebe2ccc84d47bf1cb2b26bbb:/Security/libsecurity_transform/lib/SecNullTransform.cpp diff --git a/Security/libsecurity_transform/lib/SecNullTransform.cpp b/Security/libsecurity_transform/lib/SecNullTransform.cpp new file mode 100644 index 00000000..575e2a04 --- /dev/null +++ b/Security/libsecurity_transform/lib/SecNullTransform.cpp @@ -0,0 +1,9 @@ +#include "SecNullTransform.h" +#include "NullTransform.h" + +const CFStringRef kSecNullTransformName = CFSTR("Null Transform"); + +SecNullTransformRef SecNullTransformCreate() +{ + return (SecNullTransformRef) NullTransform::Make(); +}