├── ASAN.xcconfig ├── Android.mk ├── Application.mk ├── CCRegression ├── CommonCrypto.plist ├── CommonCrypto │ ├── CCCryptorTestFuncs.c │ ├── CCCryptorTestFuncs.h │ ├── CommonANSIKDF.c │ ├── CommonBigDigest.c │ ├── CommonBigNum.c │ ├── CommonCMac.c │ ├── CommonCPP.cpp │ ├── CommonCollabKeyGen.c │ ├── CommonCryptoBlowfish.c │ ├── CommonCryptoCTSPadding.c │ ├── CommonCryptoNoPad.c │ ├── CommonCryptoOutputLength.c │ ├── CommonCryptoReset.c │ ├── CommonCryptoSymCBC.c │ ├── CommonCryptoSymCCM.c │ ├── CommonCryptoSymCFB.c │ ├── CommonCryptoSymCTR.c │ ├── CommonCryptoSymChaCha20.c │ ├── CommonCryptoSymChaCha20Poly1305.c │ ├── CommonCryptoSymECB.c │ ├── CommonCryptoSymGCM.c │ ├── CommonCryptoSymOFB.c │ ├── CommonCryptoSymOffset.c │ ├── CommonCryptoSymRC2.c │ ├── CommonCryptoSymRegression.c │ ├── CommonCryptoSymXTS.c │ ├── CommonCryptoSymZeroLength.c │ ├── CommonCryptoSymmetricWrap.c │ ├── CommonCryptorWithData.c │ ├── CommonDHtest.c │ ├── CommonDigest.c │ ├── CommonEC.c │ ├── CommonHKDF.c │ ├── CommonHMac.c │ ├── CommonHMacClone.c │ ├── CommonKeyDerivation.c │ ├── CommonNISTKDF.c │ ├── CommonRSA.c │ ├── CommonRSA_key_8k_vect.inc │ ├── CommonRSA_key_vects.inc │ ├── CommonRandom.c │ └── CryptorPadFailure.c ├── CommonNumerics │ ├── CommonBaseEncoding.c │ └── CommonCRC.c ├── README ├── main.c ├── runscript │ └── security.pl ├── test │ ├── run_tests.sh │ ├── testcpp.h │ ├── testenv.c │ ├── testenv.h │ ├── testlist.c │ ├── testlist.h │ ├── testlistInc.h │ ├── testmore.c │ └── testmore.h └── util │ ├── capabilities.h │ ├── testbyteBuffer.c │ ├── testbyteBuffer.h │ ├── testutil.c │ └── testutil.h ├── CommonCrypto.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ ├── CCRegression.xcscheme │ ├── CCRegressionASAN.xcscheme │ ├── CommonCryptoExecutables.xcscheme │ ├── CommonCrypto_Headers.xcscheme │ ├── CommonCrypto_Sim.xcscheme │ ├── CommonNumerics_Headers.xcscheme │ ├── Man Pages.xcscheme │ ├── OpenSource Docs.xcscheme │ ├── cn.xcscheme │ ├── commonCryptoMacIOS.xcscheme │ └── libCommonCryptoMacOSX.xcscheme ├── Makefile.android ├── android ├── build.gradle ├── commoncrypto_test │ ├── build.gradle │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── apple │ │ │ └── commoncrypto │ │ │ └── CommonCryptoTest.java │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── apple │ │ │ └── commoncrypto │ │ │ └── CommonCryptoTestShim.java │ │ ├── jni │ │ └── CommonCryptoTestShim.c │ │ └── res │ │ └── values │ │ └── strings.xml ├── gradle.properties ├── gradlew ├── include │ ├── AssertMacros.h │ ├── TargetConditionals.h │ └── os │ │ ├── AvailabilityInternal.h │ │ └── availability.h ├── repo.gradle └── settings.gradle ├── cn_tool ├── cn.1 └── main.c ├── doc ├── CCCrypt.3cc ├── CCCryptor.3cc ├── CCCryptorCreate.3cc ├── CCCryptorCreateWithMode.3cc ├── CCCryptorFinal.3cc ├── CCCryptorGetOutputLength.3cc ├── CCCryptorRelease.3cc ├── CCCryptorReset.3cc ├── CCCryptorUpdate.3cc ├── CCHmac.3cc ├── CCHmacFinal.3cc ├── CCHmacInit.3cc ├── CCHmacUpdate.3cc ├── CC_MD2.3cc ├── CC_MD2_Final.3cc ├── CC_MD2_Init.3cc ├── CC_MD2_Update.3cc ├── CC_MD4.3cc ├── CC_MD4_Final.3cc ├── CC_MD4_Init.3cc ├── CC_MD4_Update.3cc ├── CC_MD5.3cc ├── CC_MD5_Final.3cc ├── CC_MD5_Init.3cc ├── CC_MD5_Update.3cc ├── CC_SHA.3cc ├── CC_SHA1.3cc ├── CC_SHA1_Final.3cc ├── CC_SHA1_Init.3cc ├── CC_SHA1_Update.3cc ├── CC_SHA224.3cc ├── CC_SHA224_Final.3cc ├── CC_SHA224_Init.3cc ├── CC_SHA224_Update.3cc ├── CC_SHA256.3cc ├── CC_SHA256_Final.3cc ├── CC_SHA256_Init.3cc ├── CC_SHA256_Update.3cc ├── CC_SHA384.3cc ├── CC_SHA384_Final.3cc ├── CC_SHA384_Init.3cc ├── CC_SHA384_Update.3cc ├── CC_SHA512.3cc ├── CC_SHA512_Final.3cc ├── CC_SHA512_Init.3cc ├── CC_SHA512_Update.3cc ├── CC_crypto.3cc ├── CCryptorCreateFromData.3cc ├── Common Crypto.3cc ├── CommonCrypto.plist └── CommonCrypto.txt ├── exports.exp-in ├── include ├── CommonCrypto.h ├── CommonCryptoError.h ├── CommonCryptor.h ├── CommonDigest.h ├── CommonHMAC.h ├── CommonKeyDerivation.h ├── CommonRandom.h ├── CommonSymmetricKeywrap.h ├── Private │ ├── CommonBaseXX.h │ ├── CommonBigNum.h │ ├── CommonCMACSPI.h │ ├── CommonCRC.h │ ├── CommonCollabKeyGen.h │ ├── CommonCryptoErrorSPI.h │ ├── CommonCryptoPriv.h │ ├── CommonCrypto_private.modulemap │ ├── CommonCryptorSPI.h │ ├── CommonDH.h │ ├── CommonDigestSPI.h │ ├── CommonECCryptor.h │ ├── CommonHMacSPI.h │ ├── CommonKeyDerivationSPI.h │ ├── CommonNumerics.h │ ├── CommonRSACryptor.h │ ├── CommonRSACryptorSPI.h │ └── CommonRandomSPI.h └── module.modulemap ├── install-modulemap.sh ├── lib ├── CCCryptorReset_internal.h ├── CommonBigNum.c ├── CommonBigNumPriv.h ├── CommonCMAC.c ├── CommonCollabKeyGen.c ├── CommonCryptor.c ├── CommonCryptorChaCha20.c ├── CommonCryptorChaCha20Poly1305.c ├── CommonCryptorDES.c ├── CommonCryptorGCM.c ├── CommonCryptorPriv.h ├── CommonDH.c ├── CommonDigest.c ├── CommonDigestPriv.h ├── CommonECCryptor.c ├── CommonHMAC.c ├── CommonKeyDerivation.c ├── CommonKeyDerivationSPI.c ├── CommonRSACryptor.c ├── CommonRandom.c ├── CommonSymmetricKeywrap.c ├── ccDispatch.c ├── ccDispatch.h ├── ccErrors.h ├── ccGlobals.c ├── ccGlobals.h ├── cc_macros_priv.h ├── ccdebug.h ├── corecryptoSymmetricBridge.c ├── corecryptoSymmetricBridge.h ├── dummy.c └── timingsafe_bcmp.c ├── libcn ├── CommonBaseXX.c ├── CommonBuffering.c ├── CommonBufferingPriv.h ├── CommonCRC.c ├── adler32.c ├── basexx.h ├── cn_globals.h ├── crc.h ├── crc16-a.c ├── crc16-b.c ├── crc16-ccitt-false.c ├── crc16-ccitt-true.c ├── crc16-dect-r.c ├── crc16-dect-x.c ├── crc16-icode.c ├── crc16-usb.c ├── crc16-verifone.c ├── crc16-xmodem.c ├── crc16.c ├── crc32-bzip2.c ├── crc32-castagnoli.c ├── crc32-mpeg-2.c ├── crc32-posix.c ├── crc32-xfer.c ├── crc32.c ├── crc64-ecma-182.c ├── crc8-icode.c ├── crc8-itu.c ├── crc8-rohc.c ├── crc8-wcdma.c ├── crc8.c ├── gen_std_crc_table.c ├── normal_crc.c ├── reflect.c ├── reverse_crc.c └── reverse_poly.c └── windows ├── CCRegression ├── CCRegression.vcxproj └── CCRegression.vcxproj.filters ├── CommonCrypto.sln ├── allConfigs.proj └── lib ├── lib.vcxproj └── lib.vcxproj.filters /ASAN.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/ASAN.xcconfig -------------------------------------------------------------------------------- /Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/Android.mk -------------------------------------------------------------------------------- /Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/Application.mk -------------------------------------------------------------------------------- /CCRegression/CommonCrypto.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/CCRegression/CommonCrypto.plist -------------------------------------------------------------------------------- /CCRegression/CommonCrypto/CCCryptorTestFuncs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/CCRegression/CommonCrypto/CCCryptorTestFuncs.c -------------------------------------------------------------------------------- /CCRegression/CommonCrypto/CCCryptorTestFuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/CCRegression/CommonCrypto/CCCryptorTestFuncs.h -------------------------------------------------------------------------------- /CCRegression/CommonCrypto/CommonANSIKDF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/CCRegression/CommonCrypto/CommonANSIKDF.c -------------------------------------------------------------------------------- /CCRegression/CommonCrypto/CommonBigDigest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/CCRegression/CommonCrypto/CommonBigDigest.c -------------------------------------------------------------------------------- /CCRegression/CommonCrypto/CommonBigNum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/CCRegression/CommonCrypto/CommonBigNum.c -------------------------------------------------------------------------------- /CCRegression/CommonCrypto/CommonCMac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/CCRegression/CommonCrypto/CommonCMac.c -------------------------------------------------------------------------------- /CCRegression/CommonCrypto/CommonCPP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/CCRegression/CommonCrypto/CommonCPP.cpp -------------------------------------------------------------------------------- /CCRegression/CommonCrypto/CommonCollabKeyGen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/CCRegression/CommonCrypto/CommonCollabKeyGen.c -------------------------------------------------------------------------------- /CCRegression/CommonCrypto/CommonCryptoBlowfish.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/CCRegression/CommonCrypto/CommonCryptoBlowfish.c -------------------------------------------------------------------------------- /CCRegression/CommonCrypto/CommonCryptoCTSPadding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/CCRegression/CommonCrypto/CommonCryptoCTSPadding.c -------------------------------------------------------------------------------- /CCRegression/CommonCrypto/CommonCryptoNoPad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/CCRegression/CommonCrypto/CommonCryptoNoPad.c -------------------------------------------------------------------------------- /CCRegression/CommonCrypto/CommonCryptoOutputLength.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/CCRegression/CommonCrypto/CommonCryptoOutputLength.c -------------------------------------------------------------------------------- /CCRegression/CommonCrypto/CommonCryptoReset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/CCRegression/CommonCrypto/CommonCryptoReset.c -------------------------------------------------------------------------------- /CCRegression/CommonCrypto/CommonCryptoSymCBC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/CCRegression/CommonCrypto/CommonCryptoSymCBC.c -------------------------------------------------------------------------------- /CCRegression/CommonCrypto/CommonCryptoSymCCM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/CCRegression/CommonCrypto/CommonCryptoSymCCM.c -------------------------------------------------------------------------------- /CCRegression/CommonCrypto/CommonCryptoSymCFB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/CCRegression/CommonCrypto/CommonCryptoSymCFB.c -------------------------------------------------------------------------------- /CCRegression/CommonCrypto/CommonCryptoSymCTR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/CCRegression/CommonCrypto/CommonCryptoSymCTR.c -------------------------------------------------------------------------------- /CCRegression/CommonCrypto/CommonCryptoSymChaCha20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/CCRegression/CommonCrypto/CommonCryptoSymChaCha20.c -------------------------------------------------------------------------------- /CCRegression/CommonCrypto/CommonCryptoSymChaCha20Poly1305.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/CCRegression/CommonCrypto/CommonCryptoSymChaCha20Poly1305.c -------------------------------------------------------------------------------- /CCRegression/CommonCrypto/CommonCryptoSymECB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/CCRegression/CommonCrypto/CommonCryptoSymECB.c -------------------------------------------------------------------------------- /CCRegression/CommonCrypto/CommonCryptoSymGCM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/CCRegression/CommonCrypto/CommonCryptoSymGCM.c -------------------------------------------------------------------------------- /CCRegression/CommonCrypto/CommonCryptoSymOFB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/CCRegression/CommonCrypto/CommonCryptoSymOFB.c -------------------------------------------------------------------------------- /CCRegression/CommonCrypto/CommonCryptoSymOffset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/CCRegression/CommonCrypto/CommonCryptoSymOffset.c -------------------------------------------------------------------------------- /CCRegression/CommonCrypto/CommonCryptoSymRC2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/CCRegression/CommonCrypto/CommonCryptoSymRC2.c -------------------------------------------------------------------------------- /CCRegression/CommonCrypto/CommonCryptoSymRegression.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/CCRegression/CommonCrypto/CommonCryptoSymRegression.c -------------------------------------------------------------------------------- /CCRegression/CommonCrypto/CommonCryptoSymXTS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/CCRegression/CommonCrypto/CommonCryptoSymXTS.c -------------------------------------------------------------------------------- /CCRegression/CommonCrypto/CommonCryptoSymZeroLength.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/CCRegression/CommonCrypto/CommonCryptoSymZeroLength.c -------------------------------------------------------------------------------- /CCRegression/CommonCrypto/CommonCryptoSymmetricWrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/CCRegression/CommonCrypto/CommonCryptoSymmetricWrap.c -------------------------------------------------------------------------------- /CCRegression/CommonCrypto/CommonCryptorWithData.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/CCRegression/CommonCrypto/CommonCryptorWithData.c -------------------------------------------------------------------------------- /CCRegression/CommonCrypto/CommonDHtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/CCRegression/CommonCrypto/CommonDHtest.c -------------------------------------------------------------------------------- /CCRegression/CommonCrypto/CommonDigest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/CCRegression/CommonCrypto/CommonDigest.c -------------------------------------------------------------------------------- /CCRegression/CommonCrypto/CommonEC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/CCRegression/CommonCrypto/CommonEC.c -------------------------------------------------------------------------------- /CCRegression/CommonCrypto/CommonHKDF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/CCRegression/CommonCrypto/CommonHKDF.c -------------------------------------------------------------------------------- /CCRegression/CommonCrypto/CommonHMac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/CCRegression/CommonCrypto/CommonHMac.c -------------------------------------------------------------------------------- /CCRegression/CommonCrypto/CommonHMacClone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/CCRegression/CommonCrypto/CommonHMacClone.c -------------------------------------------------------------------------------- /CCRegression/CommonCrypto/CommonKeyDerivation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/CCRegression/CommonCrypto/CommonKeyDerivation.c -------------------------------------------------------------------------------- /CCRegression/CommonCrypto/CommonNISTKDF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/CCRegression/CommonCrypto/CommonNISTKDF.c -------------------------------------------------------------------------------- /CCRegression/CommonCrypto/CommonRSA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/CCRegression/CommonCrypto/CommonRSA.c -------------------------------------------------------------------------------- /CCRegression/CommonCrypto/CommonRSA_key_8k_vect.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/CCRegression/CommonCrypto/CommonRSA_key_8k_vect.inc -------------------------------------------------------------------------------- /CCRegression/CommonCrypto/CommonRSA_key_vects.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/CCRegression/CommonCrypto/CommonRSA_key_vects.inc -------------------------------------------------------------------------------- /CCRegression/CommonCrypto/CommonRandom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/CCRegression/CommonCrypto/CommonRandom.c -------------------------------------------------------------------------------- /CCRegression/CommonCrypto/CryptorPadFailure.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/CCRegression/CommonCrypto/CryptorPadFailure.c -------------------------------------------------------------------------------- /CCRegression/CommonNumerics/CommonBaseEncoding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/CCRegression/CommonNumerics/CommonBaseEncoding.c -------------------------------------------------------------------------------- /CCRegression/CommonNumerics/CommonCRC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/CCRegression/CommonNumerics/CommonCRC.c -------------------------------------------------------------------------------- /CCRegression/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/CCRegression/README -------------------------------------------------------------------------------- /CCRegression/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/CCRegression/main.c -------------------------------------------------------------------------------- /CCRegression/runscript/security.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/CCRegression/runscript/security.pl -------------------------------------------------------------------------------- /CCRegression/test/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/CCRegression/test/run_tests.sh -------------------------------------------------------------------------------- /CCRegression/test/testcpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/CCRegression/test/testcpp.h -------------------------------------------------------------------------------- /CCRegression/test/testenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/CCRegression/test/testenv.c -------------------------------------------------------------------------------- /CCRegression/test/testenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/CCRegression/test/testenv.h -------------------------------------------------------------------------------- /CCRegression/test/testlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/CCRegression/test/testlist.c -------------------------------------------------------------------------------- /CCRegression/test/testlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/CCRegression/test/testlist.h -------------------------------------------------------------------------------- /CCRegression/test/testlistInc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/CCRegression/test/testlistInc.h -------------------------------------------------------------------------------- /CCRegression/test/testmore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/CCRegression/test/testmore.c -------------------------------------------------------------------------------- /CCRegression/test/testmore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/CCRegression/test/testmore.h -------------------------------------------------------------------------------- /CCRegression/util/capabilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/CCRegression/util/capabilities.h -------------------------------------------------------------------------------- /CCRegression/util/testbyteBuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/CCRegression/util/testbyteBuffer.c -------------------------------------------------------------------------------- /CCRegression/util/testbyteBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/CCRegression/util/testbyteBuffer.h -------------------------------------------------------------------------------- /CCRegression/util/testutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/CCRegression/util/testutil.c -------------------------------------------------------------------------------- /CCRegression/util/testutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/CCRegression/util/testutil.h -------------------------------------------------------------------------------- /CommonCrypto.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/CommonCrypto.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CommonCrypto.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/CommonCrypto.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CommonCrypto.xcodeproj/xcshareddata/xcschemes/CCRegression.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/CommonCrypto.xcodeproj/xcshareddata/xcschemes/CCRegression.xcscheme -------------------------------------------------------------------------------- /CommonCrypto.xcodeproj/xcshareddata/xcschemes/CCRegressionASAN.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/CommonCrypto.xcodeproj/xcshareddata/xcschemes/CCRegressionASAN.xcscheme -------------------------------------------------------------------------------- /CommonCrypto.xcodeproj/xcshareddata/xcschemes/CommonCryptoExecutables.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/CommonCrypto.xcodeproj/xcshareddata/xcschemes/CommonCryptoExecutables.xcscheme -------------------------------------------------------------------------------- /CommonCrypto.xcodeproj/xcshareddata/xcschemes/CommonCrypto_Headers.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/CommonCrypto.xcodeproj/xcshareddata/xcschemes/CommonCrypto_Headers.xcscheme -------------------------------------------------------------------------------- /CommonCrypto.xcodeproj/xcshareddata/xcschemes/CommonCrypto_Sim.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/CommonCrypto.xcodeproj/xcshareddata/xcschemes/CommonCrypto_Sim.xcscheme -------------------------------------------------------------------------------- /CommonCrypto.xcodeproj/xcshareddata/xcschemes/CommonNumerics_Headers.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/CommonCrypto.xcodeproj/xcshareddata/xcschemes/CommonNumerics_Headers.xcscheme -------------------------------------------------------------------------------- /CommonCrypto.xcodeproj/xcshareddata/xcschemes/Man Pages.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/CommonCrypto.xcodeproj/xcshareddata/xcschemes/Man Pages.xcscheme -------------------------------------------------------------------------------- /CommonCrypto.xcodeproj/xcshareddata/xcschemes/OpenSource Docs.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/CommonCrypto.xcodeproj/xcshareddata/xcschemes/OpenSource Docs.xcscheme -------------------------------------------------------------------------------- /CommonCrypto.xcodeproj/xcshareddata/xcschemes/cn.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/CommonCrypto.xcodeproj/xcshareddata/xcschemes/cn.xcscheme -------------------------------------------------------------------------------- /CommonCrypto.xcodeproj/xcshareddata/xcschemes/commonCryptoMacIOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/CommonCrypto.xcodeproj/xcshareddata/xcschemes/commonCryptoMacIOS.xcscheme -------------------------------------------------------------------------------- /CommonCrypto.xcodeproj/xcshareddata/xcschemes/libCommonCryptoMacOSX.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/CommonCrypto.xcodeproj/xcshareddata/xcschemes/libCommonCryptoMacOSX.xcscheme -------------------------------------------------------------------------------- /Makefile.android: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/Makefile.android -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/commoncrypto_test/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/android/commoncrypto_test/build.gradle -------------------------------------------------------------------------------- /android/commoncrypto_test/src/androidTest/java/com/apple/commoncrypto/CommonCryptoTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/android/commoncrypto_test/src/androidTest/java/com/apple/commoncrypto/CommonCryptoTest.java -------------------------------------------------------------------------------- /android/commoncrypto_test/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/android/commoncrypto_test/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/commoncrypto_test/src/main/java/com/apple/commoncrypto/CommonCryptoTestShim.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/android/commoncrypto_test/src/main/java/com/apple/commoncrypto/CommonCryptoTestShim.java -------------------------------------------------------------------------------- /android/commoncrypto_test/src/main/jni/CommonCryptoTestShim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/android/commoncrypto_test/src/main/jni/CommonCryptoTestShim.c -------------------------------------------------------------------------------- /android/commoncrypto_test/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/android/commoncrypto_test/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx2048M 2 | swePath=/SWE 3 | -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/include/AssertMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/android/include/AssertMacros.h -------------------------------------------------------------------------------- /android/include/TargetConditionals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/android/include/TargetConditionals.h -------------------------------------------------------------------------------- /android/include/os/AvailabilityInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/android/include/os/AvailabilityInternal.h -------------------------------------------------------------------------------- /android/include/os/availability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/android/include/os/availability.h -------------------------------------------------------------------------------- /android/repo.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/android/repo.gradle -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':commoncrypto_test' 2 | -------------------------------------------------------------------------------- /cn_tool/cn.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/cn_tool/cn.1 -------------------------------------------------------------------------------- /cn_tool/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/cn_tool/main.c -------------------------------------------------------------------------------- /doc/CCCrypt.3cc: -------------------------------------------------------------------------------- 1 | .so man3/CCCryptor.3cc -------------------------------------------------------------------------------- /doc/CCCryptor.3cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/doc/CCCryptor.3cc -------------------------------------------------------------------------------- /doc/CCCryptorCreate.3cc: -------------------------------------------------------------------------------- 1 | .so man3/CCCryptor.3cc -------------------------------------------------------------------------------- /doc/CCCryptorCreateWithMode.3cc: -------------------------------------------------------------------------------- 1 | .so man3/CCCryptor.3cc -------------------------------------------------------------------------------- /doc/CCCryptorFinal.3cc: -------------------------------------------------------------------------------- 1 | .so man3/CCCryptor.3cc -------------------------------------------------------------------------------- /doc/CCCryptorGetOutputLength.3cc: -------------------------------------------------------------------------------- 1 | .so man3/CCCryptor.3cc -------------------------------------------------------------------------------- /doc/CCCryptorRelease.3cc: -------------------------------------------------------------------------------- 1 | .so man3/CCCryptor.3cc -------------------------------------------------------------------------------- /doc/CCCryptorReset.3cc: -------------------------------------------------------------------------------- 1 | .so man3/CCCryptor.3cc -------------------------------------------------------------------------------- /doc/CCCryptorUpdate.3cc: -------------------------------------------------------------------------------- 1 | .so man3/CCCryptor.3cc -------------------------------------------------------------------------------- /doc/CCHmac.3cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/doc/CCHmac.3cc -------------------------------------------------------------------------------- /doc/CCHmacFinal.3cc: -------------------------------------------------------------------------------- 1 | .so man3/CCHmac.3cc -------------------------------------------------------------------------------- /doc/CCHmacInit.3cc: -------------------------------------------------------------------------------- 1 | .so man3/CCHmac.3cc -------------------------------------------------------------------------------- /doc/CCHmacUpdate.3cc: -------------------------------------------------------------------------------- 1 | .so man3/CCHmac.3cc -------------------------------------------------------------------------------- /doc/CC_MD2.3cc: -------------------------------------------------------------------------------- 1 | .so man3/CC_MD5.3cc 2 | -------------------------------------------------------------------------------- /doc/CC_MD2_Final.3cc: -------------------------------------------------------------------------------- 1 | .so man3/CC_MD5.3cc -------------------------------------------------------------------------------- /doc/CC_MD2_Init.3cc: -------------------------------------------------------------------------------- 1 | .so man3/CC_MD5.3cc -------------------------------------------------------------------------------- /doc/CC_MD2_Update.3cc: -------------------------------------------------------------------------------- 1 | .so man3/CC_MD5.3cc -------------------------------------------------------------------------------- /doc/CC_MD4.3cc: -------------------------------------------------------------------------------- 1 | .so man3/CC_MD5.3cc -------------------------------------------------------------------------------- /doc/CC_MD4_Final.3cc: -------------------------------------------------------------------------------- 1 | .so man3/CC_MD5.3cc -------------------------------------------------------------------------------- /doc/CC_MD4_Init.3cc: -------------------------------------------------------------------------------- 1 | .so man3/CC_MD5.3cc -------------------------------------------------------------------------------- /doc/CC_MD4_Update.3cc: -------------------------------------------------------------------------------- 1 | .so man3/CC_MD5.3cc -------------------------------------------------------------------------------- /doc/CC_MD5.3cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/doc/CC_MD5.3cc -------------------------------------------------------------------------------- /doc/CC_MD5_Final.3cc: -------------------------------------------------------------------------------- 1 | .so man3/CC_MD5.3cc -------------------------------------------------------------------------------- /doc/CC_MD5_Init.3cc: -------------------------------------------------------------------------------- 1 | .so man3/CC_MD5.3cc -------------------------------------------------------------------------------- /doc/CC_MD5_Update.3cc: -------------------------------------------------------------------------------- 1 | .so man3/CC_MD5.3cc -------------------------------------------------------------------------------- /doc/CC_SHA.3cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/doc/CC_SHA.3cc -------------------------------------------------------------------------------- /doc/CC_SHA1.3cc: -------------------------------------------------------------------------------- 1 | .so man3/CC_SHA.3cc -------------------------------------------------------------------------------- /doc/CC_SHA1_Final.3cc: -------------------------------------------------------------------------------- 1 | .so man3/CC_SHA.3cc -------------------------------------------------------------------------------- /doc/CC_SHA1_Init.3cc: -------------------------------------------------------------------------------- 1 | .so man3/CC_SHA.3cc -------------------------------------------------------------------------------- /doc/CC_SHA1_Update.3cc: -------------------------------------------------------------------------------- 1 | .so man3/CC_SHA.3cc -------------------------------------------------------------------------------- /doc/CC_SHA224.3cc: -------------------------------------------------------------------------------- 1 | .so man3/CC_SHA.3cc -------------------------------------------------------------------------------- /doc/CC_SHA224_Final.3cc: -------------------------------------------------------------------------------- 1 | .so man3/CC_SHA.3cc -------------------------------------------------------------------------------- /doc/CC_SHA224_Init.3cc: -------------------------------------------------------------------------------- 1 | .so man3/CC_SHA.3cc -------------------------------------------------------------------------------- /doc/CC_SHA224_Update.3cc: -------------------------------------------------------------------------------- 1 | .so man3/CC_SHA.3cc -------------------------------------------------------------------------------- /doc/CC_SHA256.3cc: -------------------------------------------------------------------------------- 1 | .so man3/CC_SHA.3cc -------------------------------------------------------------------------------- /doc/CC_SHA256_Final.3cc: -------------------------------------------------------------------------------- 1 | .so man3/CC_SHA.3cc -------------------------------------------------------------------------------- /doc/CC_SHA256_Init.3cc: -------------------------------------------------------------------------------- 1 | .so man3/CC_SHA.3cc -------------------------------------------------------------------------------- /doc/CC_SHA256_Update.3cc: -------------------------------------------------------------------------------- 1 | .so man3/CC_SHA.3cc -------------------------------------------------------------------------------- /doc/CC_SHA384.3cc: -------------------------------------------------------------------------------- 1 | .so man3/CC_SHA.3cc -------------------------------------------------------------------------------- /doc/CC_SHA384_Final.3cc: -------------------------------------------------------------------------------- 1 | .so man3/CC_SHA.3cc -------------------------------------------------------------------------------- /doc/CC_SHA384_Init.3cc: -------------------------------------------------------------------------------- 1 | .so man3/CC_SHA.3cc -------------------------------------------------------------------------------- /doc/CC_SHA384_Update.3cc: -------------------------------------------------------------------------------- 1 | .so man3/CC_SHA.3cc -------------------------------------------------------------------------------- /doc/CC_SHA512.3cc: -------------------------------------------------------------------------------- 1 | .so man3/CC_SHA.3cc -------------------------------------------------------------------------------- /doc/CC_SHA512_Final.3cc: -------------------------------------------------------------------------------- 1 | .so man3/CC_SHA.3cc -------------------------------------------------------------------------------- /doc/CC_SHA512_Init.3cc: -------------------------------------------------------------------------------- 1 | .so man3/CC_SHA.3cc -------------------------------------------------------------------------------- /doc/CC_SHA512_Update.3cc: -------------------------------------------------------------------------------- 1 | .so man3/CC_SHA.3cc -------------------------------------------------------------------------------- /doc/CC_crypto.3cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/doc/CC_crypto.3cc -------------------------------------------------------------------------------- /doc/CCryptorCreateFromData.3cc: -------------------------------------------------------------------------------- 1 | .so man3/CCCryptor.3cc -------------------------------------------------------------------------------- /doc/Common Crypto.3cc: -------------------------------------------------------------------------------- 1 | .so man3/CC_crypto.3cc -------------------------------------------------------------------------------- /doc/CommonCrypto.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/doc/CommonCrypto.plist -------------------------------------------------------------------------------- /doc/CommonCrypto.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/doc/CommonCrypto.txt -------------------------------------------------------------------------------- /exports.exp-in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/exports.exp-in -------------------------------------------------------------------------------- /include/CommonCrypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/include/CommonCrypto.h -------------------------------------------------------------------------------- /include/CommonCryptoError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/include/CommonCryptoError.h -------------------------------------------------------------------------------- /include/CommonCryptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/include/CommonCryptor.h -------------------------------------------------------------------------------- /include/CommonDigest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/include/CommonDigest.h -------------------------------------------------------------------------------- /include/CommonHMAC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/include/CommonHMAC.h -------------------------------------------------------------------------------- /include/CommonKeyDerivation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/include/CommonKeyDerivation.h -------------------------------------------------------------------------------- /include/CommonRandom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/include/CommonRandom.h -------------------------------------------------------------------------------- /include/CommonSymmetricKeywrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/include/CommonSymmetricKeywrap.h -------------------------------------------------------------------------------- /include/Private/CommonBaseXX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/include/Private/CommonBaseXX.h -------------------------------------------------------------------------------- /include/Private/CommonBigNum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/include/Private/CommonBigNum.h -------------------------------------------------------------------------------- /include/Private/CommonCMACSPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/include/Private/CommonCMACSPI.h -------------------------------------------------------------------------------- /include/Private/CommonCRC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/include/Private/CommonCRC.h -------------------------------------------------------------------------------- /include/Private/CommonCollabKeyGen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/include/Private/CommonCollabKeyGen.h -------------------------------------------------------------------------------- /include/Private/CommonCryptoErrorSPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/include/Private/CommonCryptoErrorSPI.h -------------------------------------------------------------------------------- /include/Private/CommonCryptoPriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/include/Private/CommonCryptoPriv.h -------------------------------------------------------------------------------- /include/Private/CommonCrypto_private.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/include/Private/CommonCrypto_private.modulemap -------------------------------------------------------------------------------- /include/Private/CommonCryptorSPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/include/Private/CommonCryptorSPI.h -------------------------------------------------------------------------------- /include/Private/CommonDH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/include/Private/CommonDH.h -------------------------------------------------------------------------------- /include/Private/CommonDigestSPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/include/Private/CommonDigestSPI.h -------------------------------------------------------------------------------- /include/Private/CommonECCryptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/include/Private/CommonECCryptor.h -------------------------------------------------------------------------------- /include/Private/CommonHMacSPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/include/Private/CommonHMacSPI.h -------------------------------------------------------------------------------- /include/Private/CommonKeyDerivationSPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/include/Private/CommonKeyDerivationSPI.h -------------------------------------------------------------------------------- /include/Private/CommonNumerics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/include/Private/CommonNumerics.h -------------------------------------------------------------------------------- /include/Private/CommonRSACryptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/include/Private/CommonRSACryptor.h -------------------------------------------------------------------------------- /include/Private/CommonRSACryptorSPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/include/Private/CommonRSACryptorSPI.h -------------------------------------------------------------------------------- /include/Private/CommonRandomSPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/include/Private/CommonRandomSPI.h -------------------------------------------------------------------------------- /include/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/include/module.modulemap -------------------------------------------------------------------------------- /install-modulemap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/install-modulemap.sh -------------------------------------------------------------------------------- /lib/CCCryptorReset_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/lib/CCCryptorReset_internal.h -------------------------------------------------------------------------------- /lib/CommonBigNum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/lib/CommonBigNum.c -------------------------------------------------------------------------------- /lib/CommonBigNumPriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/lib/CommonBigNumPriv.h -------------------------------------------------------------------------------- /lib/CommonCMAC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/lib/CommonCMAC.c -------------------------------------------------------------------------------- /lib/CommonCollabKeyGen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/lib/CommonCollabKeyGen.c -------------------------------------------------------------------------------- /lib/CommonCryptor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/lib/CommonCryptor.c -------------------------------------------------------------------------------- /lib/CommonCryptorChaCha20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/lib/CommonCryptorChaCha20.c -------------------------------------------------------------------------------- /lib/CommonCryptorChaCha20Poly1305.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/lib/CommonCryptorChaCha20Poly1305.c -------------------------------------------------------------------------------- /lib/CommonCryptorDES.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/lib/CommonCryptorDES.c -------------------------------------------------------------------------------- /lib/CommonCryptorGCM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/lib/CommonCryptorGCM.c -------------------------------------------------------------------------------- /lib/CommonCryptorPriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/lib/CommonCryptorPriv.h -------------------------------------------------------------------------------- /lib/CommonDH.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/lib/CommonDH.c -------------------------------------------------------------------------------- /lib/CommonDigest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/lib/CommonDigest.c -------------------------------------------------------------------------------- /lib/CommonDigestPriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/lib/CommonDigestPriv.h -------------------------------------------------------------------------------- /lib/CommonECCryptor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/lib/CommonECCryptor.c -------------------------------------------------------------------------------- /lib/CommonHMAC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/lib/CommonHMAC.c -------------------------------------------------------------------------------- /lib/CommonKeyDerivation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/lib/CommonKeyDerivation.c -------------------------------------------------------------------------------- /lib/CommonKeyDerivationSPI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/lib/CommonKeyDerivationSPI.c -------------------------------------------------------------------------------- /lib/CommonRSACryptor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/lib/CommonRSACryptor.c -------------------------------------------------------------------------------- /lib/CommonRandom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/lib/CommonRandom.c -------------------------------------------------------------------------------- /lib/CommonSymmetricKeywrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/lib/CommonSymmetricKeywrap.c -------------------------------------------------------------------------------- /lib/ccDispatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/lib/ccDispatch.c -------------------------------------------------------------------------------- /lib/ccDispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/lib/ccDispatch.h -------------------------------------------------------------------------------- /lib/ccErrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/lib/ccErrors.h -------------------------------------------------------------------------------- /lib/ccGlobals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/lib/ccGlobals.c -------------------------------------------------------------------------------- /lib/ccGlobals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/lib/ccGlobals.h -------------------------------------------------------------------------------- /lib/cc_macros_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/lib/cc_macros_priv.h -------------------------------------------------------------------------------- /lib/ccdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/lib/ccdebug.h -------------------------------------------------------------------------------- /lib/corecryptoSymmetricBridge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/lib/corecryptoSymmetricBridge.c -------------------------------------------------------------------------------- /lib/corecryptoSymmetricBridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/lib/corecryptoSymmetricBridge.h -------------------------------------------------------------------------------- /lib/dummy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/lib/dummy.c -------------------------------------------------------------------------------- /lib/timingsafe_bcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/lib/timingsafe_bcmp.c -------------------------------------------------------------------------------- /libcn/CommonBaseXX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/libcn/CommonBaseXX.c -------------------------------------------------------------------------------- /libcn/CommonBuffering.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/libcn/CommonBuffering.c -------------------------------------------------------------------------------- /libcn/CommonBufferingPriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/libcn/CommonBufferingPriv.h -------------------------------------------------------------------------------- /libcn/CommonCRC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/libcn/CommonCRC.c -------------------------------------------------------------------------------- /libcn/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/libcn/adler32.c -------------------------------------------------------------------------------- /libcn/basexx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/libcn/basexx.h -------------------------------------------------------------------------------- /libcn/cn_globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/libcn/cn_globals.h -------------------------------------------------------------------------------- /libcn/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/libcn/crc.h -------------------------------------------------------------------------------- /libcn/crc16-a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/libcn/crc16-a.c -------------------------------------------------------------------------------- /libcn/crc16-b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/libcn/crc16-b.c -------------------------------------------------------------------------------- /libcn/crc16-ccitt-false.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/libcn/crc16-ccitt-false.c -------------------------------------------------------------------------------- /libcn/crc16-ccitt-true.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/libcn/crc16-ccitt-true.c -------------------------------------------------------------------------------- /libcn/crc16-dect-r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/libcn/crc16-dect-r.c -------------------------------------------------------------------------------- /libcn/crc16-dect-x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/libcn/crc16-dect-x.c -------------------------------------------------------------------------------- /libcn/crc16-icode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/libcn/crc16-icode.c -------------------------------------------------------------------------------- /libcn/crc16-usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/libcn/crc16-usb.c -------------------------------------------------------------------------------- /libcn/crc16-verifone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/libcn/crc16-verifone.c -------------------------------------------------------------------------------- /libcn/crc16-xmodem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/libcn/crc16-xmodem.c -------------------------------------------------------------------------------- /libcn/crc16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/libcn/crc16.c -------------------------------------------------------------------------------- /libcn/crc32-bzip2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/libcn/crc32-bzip2.c -------------------------------------------------------------------------------- /libcn/crc32-castagnoli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/libcn/crc32-castagnoli.c -------------------------------------------------------------------------------- /libcn/crc32-mpeg-2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/libcn/crc32-mpeg-2.c -------------------------------------------------------------------------------- /libcn/crc32-posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/libcn/crc32-posix.c -------------------------------------------------------------------------------- /libcn/crc32-xfer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/libcn/crc32-xfer.c -------------------------------------------------------------------------------- /libcn/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/libcn/crc32.c -------------------------------------------------------------------------------- /libcn/crc64-ecma-182.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/libcn/crc64-ecma-182.c -------------------------------------------------------------------------------- /libcn/crc8-icode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/libcn/crc8-icode.c -------------------------------------------------------------------------------- /libcn/crc8-itu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/libcn/crc8-itu.c -------------------------------------------------------------------------------- /libcn/crc8-rohc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/libcn/crc8-rohc.c -------------------------------------------------------------------------------- /libcn/crc8-wcdma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/libcn/crc8-wcdma.c -------------------------------------------------------------------------------- /libcn/crc8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/libcn/crc8.c -------------------------------------------------------------------------------- /libcn/gen_std_crc_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/libcn/gen_std_crc_table.c -------------------------------------------------------------------------------- /libcn/normal_crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/libcn/normal_crc.c -------------------------------------------------------------------------------- /libcn/reflect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/libcn/reflect.c -------------------------------------------------------------------------------- /libcn/reverse_crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/libcn/reverse_crc.c -------------------------------------------------------------------------------- /libcn/reverse_poly.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/libcn/reverse_poly.c -------------------------------------------------------------------------------- /windows/CCRegression/CCRegression.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/windows/CCRegression/CCRegression.vcxproj -------------------------------------------------------------------------------- /windows/CCRegression/CCRegression.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/windows/CCRegression/CCRegression.vcxproj.filters -------------------------------------------------------------------------------- /windows/CommonCrypto.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/windows/CommonCrypto.sln -------------------------------------------------------------------------------- /windows/allConfigs.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/windows/allConfigs.proj -------------------------------------------------------------------------------- /windows/lib/lib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/windows/lib/lib.vcxproj -------------------------------------------------------------------------------- /windows/lib/lib.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/CommonCrypto/HEAD/windows/lib/lib.vcxproj.filters --------------------------------------------------------------------------------