]> git.saurik.com Git - apple/security.git/blobdiff - OSX/libsecurity_ssl/lib/sslMemory.h
Security-59306.61.1.tar.gz
[apple/security.git] / OSX / libsecurity_ssl / lib / sslMemory.h
index 563090a1ff82aa75d3b085482197df6faee35491..f2fb8ded8e9f72aa58fe90ff7f45add3f3e14ab9 100644 (file)
@@ -41,22 +41,17 @@ extern "C" {
  */
 void *sslMalloc(size_t length);
 void sslFree(void *p);
-void *sslRealloc(void *oldPtr, size_t oldLen, size_t newLen);
 
 /*
  * SSLBuffer-oriented allocators
  */
 int SSLAllocBuffer(SSLBuffer *buf, size_t length);
 int SSLFreeBuffer(SSLBuffer *buf);
-int SSLReallocBuffer(SSLBuffer *buf, size_t newSize);
 
 /*
  * Convenience routines
  */
 uint8_t *sslAllocCopy(const uint8_t *src, size_t len);
-int SSLAllocCopyBuffer(
-       const SSLBuffer *src, 
-       SSLBuffer **dst);               // buffer itself and data mallocd and returned 
 int SSLCopyBufferFromData(
        const void *src,
        size_t len,