X-Git-Url: https://git.saurik.com/apple/security.git/blobdiff_plain/5dd5f9ec28f304ca377c42fd7f711d6cf12b90e1..5c19dc3ae3bd8e40a9c028b0deddd50ff337692c:/OSX/libsecurity_transform/lib/SecNullTransform.cpp diff --git a/OSX/libsecurity_transform/lib/SecNullTransform.cpp b/OSX/libsecurity_transform/lib/SecNullTransform.cpp new file mode 100644 index 00000000..575e2a04 --- /dev/null +++ b/OSX/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(); +}