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