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