]> git.saurik.com Git - apple/security.git/blob - OSX/libsecurity_transform/lib/SecNullTransform.cpp
Security-58286.1.32.tar.gz
[apple/security.git] / OSX / libsecurity_transform / lib / SecNullTransform.cpp
1 #include "SecNullTransform.h"
2 #include "NullTransform.h"
3
4 const CFStringRef kSecNullTransformName = CFSTR("Null Transform");
5
6 SecNullTransformRef SecNullTransformCreate()
7 {
8 return (SecNullTransformRef) NullTransform::Make();
9 }