├── Podfile ├── Podfile.lock ├── Pods ├── Headers │ ├── Private │ │ └── OpenSSL-Universal │ │ │ └── openssl │ │ │ ├── aes.h │ │ │ ├── asn1.h │ │ │ ├── asn1_mac.h │ │ │ ├── asn1t.h │ │ │ ├── bio.h │ │ │ ├── blowfish.h │ │ │ ├── bn.h │ │ │ ├── buffer.h │ │ │ ├── camellia.h │ │ │ ├── cast.h │ │ │ ├── cmac.h │ │ │ ├── cms.h │ │ │ ├── comp.h │ │ │ ├── conf.h │ │ │ ├── conf_api.h │ │ │ ├── crypto.h │ │ │ ├── des.h │ │ │ ├── des_old.h │ │ │ ├── dh.h │ │ │ ├── dsa.h │ │ │ ├── dso.h │ │ │ ├── dtls1.h │ │ │ ├── e_os2.h │ │ │ ├── ebcdic.h │ │ │ ├── ec.h │ │ │ ├── ecdh.h │ │ │ ├── ecdsa.h │ │ │ ├── engine.h │ │ │ ├── err.h │ │ │ ├── evp.h │ │ │ ├── hmac.h │ │ │ ├── idea.h │ │ │ ├── krb5_asn.h │ │ │ ├── kssl.h │ │ │ ├── lhash.h │ │ │ ├── md4.h │ │ │ ├── md5.h │ │ │ ├── mdc2.h │ │ │ ├── modes.h │ │ │ ├── obj_mac.h │ │ │ ├── objects.h │ │ │ ├── ocsp.h │ │ │ ├── opensslconf-x86_64.h │ │ │ ├── opensslconf.h │ │ │ ├── opensslv.h │ │ │ ├── ossl_typ.h │ │ │ ├── pem.h │ │ │ ├── pem2.h │ │ │ ├── pkcs12.h │ │ │ ├── pkcs7.h │ │ │ ├── pqueue.h │ │ │ ├── rand.h │ │ │ ├── rc2.h │ │ │ ├── rc4.h │ │ │ ├── ripemd.h │ │ │ ├── rsa.h │ │ │ ├── safestack.h │ │ │ ├── seed.h │ │ │ ├── sha.h │ │ │ ├── shim.h │ │ │ ├── srp.h │ │ │ ├── srtp.h │ │ │ ├── ssl.h │ │ │ ├── ssl2.h │ │ │ ├── ssl23.h │ │ │ ├── ssl3.h │ │ │ ├── stack.h │ │ │ ├── symhacks.h │ │ │ ├── tls1.h │ │ │ ├── ts.h │ │ │ ├── txt_db.h │ │ │ ├── ui.h │ │ │ ├── ui_compat.h │ │ │ ├── whrlpool.h │ │ │ ├── x509.h │ │ │ ├── x509_vfy.h │ │ │ └── x509v3.h │ └── Public │ │ └── OpenSSL-Universal │ │ └── openssl │ │ ├── aes.h │ │ ├── asn1.h │ │ ├── asn1_mac.h │ │ ├── asn1t.h │ │ ├── bio.h │ │ ├── blowfish.h │ │ ├── bn.h │ │ ├── buffer.h │ │ ├── camellia.h │ │ ├── cast.h │ │ ├── cmac.h │ │ ├── cms.h │ │ ├── comp.h │ │ ├── conf.h │ │ ├── conf_api.h │ │ ├── crypto.h │ │ ├── des.h │ │ ├── des_old.h │ │ ├── dh.h │ │ ├── dsa.h │ │ ├── dso.h │ │ ├── dtls1.h │ │ ├── e_os2.h │ │ ├── ebcdic.h │ │ ├── ec.h │ │ ├── ecdh.h │ │ ├── ecdsa.h │ │ ├── engine.h │ │ ├── err.h │ │ ├── evp.h │ │ ├── hmac.h │ │ ├── idea.h │ │ ├── krb5_asn.h │ │ ├── kssl.h │ │ ├── lhash.h │ │ ├── md4.h │ │ ├── md5.h │ │ ├── mdc2.h │ │ ├── modes.h │ │ ├── obj_mac.h │ │ ├── objects.h │ │ ├── ocsp.h │ │ ├── opensslconf-x86_64.h │ │ ├── opensslconf.h │ │ ├── opensslv.h │ │ ├── ossl_typ.h │ │ ├── pem.h │ │ ├── pem2.h │ │ ├── pkcs12.h │ │ ├── pkcs7.h │ │ ├── pqueue.h │ │ ├── rand.h │ │ ├── rc2.h │ │ ├── rc4.h │ │ ├── ripemd.h │ │ ├── rsa.h │ │ ├── safestack.h │ │ ├── seed.h │ │ ├── sha.h │ │ ├── shim.h │ │ ├── srp.h │ │ ├── srtp.h │ │ ├── ssl.h │ │ ├── ssl2.h │ │ ├── ssl23.h │ │ ├── ssl3.h │ │ ├── stack.h │ │ ├── symhacks.h │ │ ├── tls1.h │ │ ├── ts.h │ │ ├── txt_db.h │ │ ├── ui.h │ │ ├── ui_compat.h │ │ ├── whrlpool.h │ │ ├── x509.h │ │ ├── x509_vfy.h │ │ └── x509v3.h ├── Manifest.lock ├── OpenSSL-Universal │ ├── LICENSE.txt │ ├── README.md │ └── macos │ │ ├── include │ │ └── openssl │ │ │ ├── aes.h │ │ │ ├── asn1.h │ │ │ ├── asn1_mac.h │ │ │ ├── asn1t.h │ │ │ ├── bio.h │ │ │ ├── blowfish.h │ │ │ ├── bn.h │ │ │ ├── buffer.h │ │ │ ├── camellia.h │ │ │ ├── cast.h │ │ │ ├── cmac.h │ │ │ ├── cms.h │ │ │ ├── comp.h │ │ │ ├── conf.h │ │ │ ├── conf_api.h │ │ │ ├── crypto.h │ │ │ ├── des.h │ │ │ ├── des_old.h │ │ │ ├── dh.h │ │ │ ├── dsa.h │ │ │ ├── dso.h │ │ │ ├── dtls1.h │ │ │ ├── e_os2.h │ │ │ ├── ebcdic.h │ │ │ ├── ec.h │ │ │ ├── ecdh.h │ │ │ ├── ecdsa.h │ │ │ ├── engine.h │ │ │ ├── err.h │ │ │ ├── evp.h │ │ │ ├── hmac.h │ │ │ ├── idea.h │ │ │ ├── krb5_asn.h │ │ │ ├── kssl.h │ │ │ ├── lhash.h │ │ │ ├── md4.h │ │ │ ├── md5.h │ │ │ ├── mdc2.h │ │ │ ├── modes.h │ │ │ ├── obj_mac.h │ │ │ ├── objects.h │ │ │ ├── ocsp.h │ │ │ ├── opensslconf-x86_64.h │ │ │ ├── opensslconf.h │ │ │ ├── opensslv.h │ │ │ ├── ossl_typ.h │ │ │ ├── pem.h │ │ │ ├── pem2.h │ │ │ ├── pkcs12.h │ │ │ ├── pkcs7.h │ │ │ ├── pqueue.h │ │ │ ├── rand.h │ │ │ ├── rc2.h │ │ │ ├── rc4.h │ │ │ ├── ripemd.h │ │ │ ├── rsa.h │ │ │ ├── safestack.h │ │ │ ├── seed.h │ │ │ ├── sha.h │ │ │ ├── shim.h │ │ │ ├── srp.h │ │ │ ├── srtp.h │ │ │ ├── ssl.h │ │ │ ├── ssl2.h │ │ │ ├── ssl23.h │ │ │ ├── ssl3.h │ │ │ ├── stack.h │ │ │ ├── symhacks.h │ │ │ ├── tls1.h │ │ │ ├── ts.h │ │ │ ├── txt_db.h │ │ │ ├── ui.h │ │ │ ├── ui_compat.h │ │ │ ├── whrlpool.h │ │ │ ├── x509.h │ │ │ ├── x509_vfy.h │ │ │ └── x509v3.h │ │ └── lib │ │ ├── libcrypto.a │ │ └── libssl.a ├── Pods.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ ├── fxn.xcuserdatad │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ │ └── v.xcuserdatad │ │ └── xcschemes │ │ ├── OpenSSL-Universal.xcscheme │ │ ├── Pods-SN.xcscheme │ │ └── xcschememanagement.plist └── Target Support Files │ ├── OpenSSL-Universal │ └── OpenSSL-Universal.xcconfig │ └── Pods-SN │ ├── Pods-SN-Info.plist │ ├── Pods-SN-acknowledgements.markdown │ ├── Pods-SN-acknowledgements.plist │ ├── Pods-SN-dummy.m │ ├── Pods-SN-umbrella.h │ ├── Pods-SN.debug.xcconfig │ ├── Pods-SN.modulemap │ └── Pods-SN.release.xcconfig ├── README.md ├── archo.cpp ├── archo.h ├── bundle.cpp ├── bundle.h ├── common ├── base64.cpp ├── base64.h ├── common.cpp ├── common.h ├── json.cpp ├── json.h └── mach-o.h ├── macho.cpp ├── macho.h ├── openssl.cpp ├── openssl.h ├── signing.cpp ├── signing.h ├── zsign.cpp ├── zsign.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ ├── macbook.xcuserdatad │ │ └── UserInterfaceState.xcuserstate │ │ └── v.xcuserdatad │ │ └── UserInterfaceState.xcuserstate ├── xcshareddata │ └── xcschemes │ │ └── zsign.xcscheme └── xcuserdata │ ├── fxn.xcuserdatad │ └── xcschemes │ │ └── xcschememanagement.plist │ ├── macbook.xcuserdatad │ └── xcschemes │ │ └── xcschememanagement.plist │ └── v.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist └── zsign.xcworkspace ├── contents.xcworkspacedata ├── xcshareddata └── IDEWorkspaceChecks.plist └── xcuserdata ├── fxn.xcuserdatad ├── UserInterfaceState.xcuserstate └── xcdebugger │ └── Breakpoints_v2.xcbkptlist └── v.xcuserdatad ├── UserInterfaceState.xcuserstate └── xcdebugger └── Breakpoints_v2.xcbkptlist /Podfile: -------------------------------------------------------------------------------- 1 | # Uncomment the next line to define a global platform for your project 2 | # platform :ios, '9.0' 3 | source 'https://cdn.cocoapods.org/' 4 | 5 | target 'zsign' do 6 | # Comment the next line if you don't want to use dynamic frameworks 7 | use_frameworks! 8 | 9 | # Pods for HelloWorld 10 | pod 'OpenSSL-Universal' 11 | end 12 | -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - OpenSSL-Universal (1.0.2.19): 3 | - OpenSSL-Universal/Static (= 1.0.2.19) 4 | - OpenSSL-Universal/Static (1.0.2.19) 5 | 6 | DEPENDENCIES: 7 | - OpenSSL-Universal 8 | 9 | SPEC REPOS: 10 | trunk: 11 | - OpenSSL-Universal 12 | 13 | SPEC CHECKSUMS: 14 | OpenSSL-Universal: 8b48cc0d10c1b2923617dfe5c178aa9ed2689355 15 | 16 | PODFILE CHECKSUM: e8602aff207bbc6641954d983c2606a18ee58d20 17 | 18 | COCOAPODS: 1.8.4 19 | -------------------------------------------------------------------------------- /Pods/Headers/Private/OpenSSL-Universal/openssl/aes.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/aes.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OpenSSL-Universal/openssl/asn1.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/asn1.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OpenSSL-Universal/openssl/asn1_mac.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/asn1_mac.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OpenSSL-Universal/openssl/asn1t.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/asn1t.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OpenSSL-Universal/openssl/bio.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/bio.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OpenSSL-Universal/openssl/blowfish.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/blowfish.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OpenSSL-Universal/openssl/bn.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/bn.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OpenSSL-Universal/openssl/buffer.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/buffer.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OpenSSL-Universal/openssl/camellia.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/camellia.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OpenSSL-Universal/openssl/cast.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/cast.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OpenSSL-Universal/openssl/cmac.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/cmac.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OpenSSL-Universal/openssl/cms.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/cms.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OpenSSL-Universal/openssl/comp.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/comp.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OpenSSL-Universal/openssl/conf.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/conf.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OpenSSL-Universal/openssl/conf_api.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/conf_api.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OpenSSL-Universal/openssl/crypto.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/crypto.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OpenSSL-Universal/openssl/des.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/des.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OpenSSL-Universal/openssl/des_old.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/des_old.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OpenSSL-Universal/openssl/dh.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/dh.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OpenSSL-Universal/openssl/dsa.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/dsa.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OpenSSL-Universal/openssl/dso.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/dso.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OpenSSL-Universal/openssl/dtls1.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/dtls1.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OpenSSL-Universal/openssl/e_os2.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/e_os2.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OpenSSL-Universal/openssl/ebcdic.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/ebcdic.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OpenSSL-Universal/openssl/ec.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/ec.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OpenSSL-Universal/openssl/ecdh.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/ecdh.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OpenSSL-Universal/openssl/ecdsa.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/ecdsa.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OpenSSL-Universal/openssl/engine.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/engine.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OpenSSL-Universal/openssl/err.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/err.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OpenSSL-Universal/openssl/evp.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/evp.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OpenSSL-Universal/openssl/hmac.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/hmac.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OpenSSL-Universal/openssl/idea.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/idea.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OpenSSL-Universal/openssl/krb5_asn.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/krb5_asn.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OpenSSL-Universal/openssl/kssl.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/kssl.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OpenSSL-Universal/openssl/lhash.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/lhash.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OpenSSL-Universal/openssl/md4.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/md4.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OpenSSL-Universal/openssl/md5.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/md5.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OpenSSL-Universal/openssl/mdc2.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/mdc2.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OpenSSL-Universal/openssl/modes.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/modes.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OpenSSL-Universal/openssl/obj_mac.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/obj_mac.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OpenSSL-Universal/openssl/objects.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/objects.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OpenSSL-Universal/openssl/ocsp.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/ocsp.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OpenSSL-Universal/openssl/opensslconf-x86_64.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/opensslconf-x86_64.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OpenSSL-Universal/openssl/opensslconf.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/opensslconf.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OpenSSL-Universal/openssl/opensslv.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/opensslv.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OpenSSL-Universal/openssl/ossl_typ.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/ossl_typ.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OpenSSL-Universal/openssl/pem.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/pem.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OpenSSL-Universal/openssl/pem2.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/pem2.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OpenSSL-Universal/openssl/pkcs12.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/pkcs12.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OpenSSL-Universal/openssl/pkcs7.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/pkcs7.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OpenSSL-Universal/openssl/pqueue.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/pqueue.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OpenSSL-Universal/openssl/rand.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/rand.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OpenSSL-Universal/openssl/rc2.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/rc2.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OpenSSL-Universal/openssl/rc4.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/rc4.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OpenSSL-Universal/openssl/ripemd.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/ripemd.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OpenSSL-Universal/openssl/rsa.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/rsa.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OpenSSL-Universal/openssl/safestack.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/safestack.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OpenSSL-Universal/openssl/seed.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/seed.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OpenSSL-Universal/openssl/sha.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/sha.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OpenSSL-Universal/openssl/shim.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/shim.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OpenSSL-Universal/openssl/srp.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/srp.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OpenSSL-Universal/openssl/srtp.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/srtp.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OpenSSL-Universal/openssl/ssl.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/ssl.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OpenSSL-Universal/openssl/ssl2.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/ssl2.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OpenSSL-Universal/openssl/ssl23.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/ssl23.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OpenSSL-Universal/openssl/ssl3.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/ssl3.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OpenSSL-Universal/openssl/stack.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/stack.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OpenSSL-Universal/openssl/symhacks.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/symhacks.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OpenSSL-Universal/openssl/tls1.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/tls1.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OpenSSL-Universal/openssl/ts.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/ts.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OpenSSL-Universal/openssl/txt_db.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/txt_db.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OpenSSL-Universal/openssl/ui.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/ui.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OpenSSL-Universal/openssl/ui_compat.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/ui_compat.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OpenSSL-Universal/openssl/whrlpool.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/whrlpool.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OpenSSL-Universal/openssl/x509.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/x509.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OpenSSL-Universal/openssl/x509_vfy.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/x509_vfy.h -------------------------------------------------------------------------------- /Pods/Headers/Private/OpenSSL-Universal/openssl/x509v3.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/x509v3.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OpenSSL-Universal/openssl/aes.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/aes.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OpenSSL-Universal/openssl/asn1.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/asn1.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OpenSSL-Universal/openssl/asn1_mac.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/asn1_mac.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OpenSSL-Universal/openssl/asn1t.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/asn1t.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OpenSSL-Universal/openssl/bio.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/bio.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OpenSSL-Universal/openssl/blowfish.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/blowfish.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OpenSSL-Universal/openssl/bn.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/bn.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OpenSSL-Universal/openssl/buffer.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/buffer.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OpenSSL-Universal/openssl/camellia.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/camellia.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OpenSSL-Universal/openssl/cast.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/cast.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OpenSSL-Universal/openssl/cmac.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/cmac.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OpenSSL-Universal/openssl/cms.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/cms.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OpenSSL-Universal/openssl/comp.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/comp.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OpenSSL-Universal/openssl/conf.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/conf.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OpenSSL-Universal/openssl/conf_api.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/conf_api.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OpenSSL-Universal/openssl/crypto.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/crypto.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OpenSSL-Universal/openssl/des.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/des.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OpenSSL-Universal/openssl/des_old.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/des_old.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OpenSSL-Universal/openssl/dh.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/dh.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OpenSSL-Universal/openssl/dsa.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/dsa.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OpenSSL-Universal/openssl/dso.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/dso.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OpenSSL-Universal/openssl/dtls1.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/dtls1.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OpenSSL-Universal/openssl/e_os2.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/e_os2.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OpenSSL-Universal/openssl/ebcdic.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/ebcdic.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OpenSSL-Universal/openssl/ec.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/ec.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OpenSSL-Universal/openssl/ecdh.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/ecdh.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OpenSSL-Universal/openssl/ecdsa.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/ecdsa.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OpenSSL-Universal/openssl/engine.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/engine.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OpenSSL-Universal/openssl/err.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/err.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OpenSSL-Universal/openssl/evp.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/evp.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OpenSSL-Universal/openssl/hmac.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/hmac.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OpenSSL-Universal/openssl/idea.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/idea.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OpenSSL-Universal/openssl/krb5_asn.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/krb5_asn.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OpenSSL-Universal/openssl/kssl.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/kssl.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OpenSSL-Universal/openssl/lhash.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/lhash.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OpenSSL-Universal/openssl/md4.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/md4.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OpenSSL-Universal/openssl/md5.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/md5.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OpenSSL-Universal/openssl/mdc2.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/mdc2.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OpenSSL-Universal/openssl/modes.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/modes.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OpenSSL-Universal/openssl/obj_mac.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/obj_mac.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OpenSSL-Universal/openssl/objects.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/objects.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OpenSSL-Universal/openssl/ocsp.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/ocsp.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OpenSSL-Universal/openssl/opensslconf-x86_64.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/opensslconf-x86_64.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OpenSSL-Universal/openssl/opensslconf.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/opensslconf.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OpenSSL-Universal/openssl/opensslv.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/opensslv.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OpenSSL-Universal/openssl/ossl_typ.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/ossl_typ.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OpenSSL-Universal/openssl/pem.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/pem.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OpenSSL-Universal/openssl/pem2.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/pem2.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OpenSSL-Universal/openssl/pkcs12.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/pkcs12.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OpenSSL-Universal/openssl/pkcs7.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/pkcs7.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OpenSSL-Universal/openssl/pqueue.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/pqueue.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OpenSSL-Universal/openssl/rand.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/rand.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OpenSSL-Universal/openssl/rc2.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/rc2.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OpenSSL-Universal/openssl/rc4.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/rc4.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OpenSSL-Universal/openssl/ripemd.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/ripemd.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OpenSSL-Universal/openssl/rsa.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/rsa.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OpenSSL-Universal/openssl/safestack.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/safestack.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OpenSSL-Universal/openssl/seed.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/seed.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OpenSSL-Universal/openssl/sha.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/sha.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OpenSSL-Universal/openssl/shim.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/shim.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OpenSSL-Universal/openssl/srp.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/srp.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OpenSSL-Universal/openssl/srtp.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/srtp.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OpenSSL-Universal/openssl/ssl.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/ssl.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OpenSSL-Universal/openssl/ssl2.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/ssl2.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OpenSSL-Universal/openssl/ssl23.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/ssl23.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OpenSSL-Universal/openssl/ssl3.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/ssl3.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OpenSSL-Universal/openssl/stack.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/stack.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OpenSSL-Universal/openssl/symhacks.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/symhacks.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OpenSSL-Universal/openssl/tls1.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/tls1.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OpenSSL-Universal/openssl/ts.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/ts.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OpenSSL-Universal/openssl/txt_db.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/txt_db.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OpenSSL-Universal/openssl/ui.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/ui.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OpenSSL-Universal/openssl/ui_compat.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/ui_compat.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OpenSSL-Universal/openssl/whrlpool.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/whrlpool.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OpenSSL-Universal/openssl/x509.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/x509.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OpenSSL-Universal/openssl/x509_vfy.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/x509_vfy.h -------------------------------------------------------------------------------- /Pods/Headers/Public/OpenSSL-Universal/openssl/x509v3.h: -------------------------------------------------------------------------------- 1 | ../../../../OpenSSL-Universal/macos/include/openssl/x509v3.h -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - OpenSSL-Universal (1.0.2.19): 3 | - OpenSSL-Universal/Static (= 1.0.2.19) 4 | - OpenSSL-Universal/Static (1.0.2.19) 5 | 6 | DEPENDENCIES: 7 | - OpenSSL-Universal 8 | 9 | SPEC REPOS: 10 | trunk: 11 | - OpenSSL-Universal 12 | 13 | SPEC CHECKSUMS: 14 | OpenSSL-Universal: 8b48cc0d10c1b2923617dfe5c178aa9ed2689355 15 | 16 | PODFILE CHECKSUM: e8602aff207bbc6641954d983c2606a18ee58d20 17 | 18 | COCOAPODS: 1.8.4 19 | -------------------------------------------------------------------------------- /Pods/OpenSSL-Universal/README.md: -------------------------------------------------------------------------------- 1 | # OpenSSL-Universal 2 | 3 | OpenSSL CocoaPod and Carthage for iOS and OSX. Complete solution to OpenSSL on iOS and OSX. Package came with precompiled libraries, and include script to build newer version if necessary. 4 | 5 | Current version contains binaries build with latest iOS SDK iOS (target 6.0), and latest OSX SDK (target 10.8) for all supported architectures. 6 | 7 | ### Architectures 8 | 9 | - iOS with architectures: armv7, armv7s, arm64 + simulator (x86_64) 10 | - OSX with architectures: x86_64 11 | 12 | ### Why? 13 | 14 | [Apple says](https://developer.apple.com/library/mac/documentation/security/Conceptual/cryptoservices/GeneralPurposeCrypto/GeneralPurposeCrypto.html): 15 | "Although OpenSSL is commonly used in the open source community, OpenSSL does not provide a stable API from version to version. For this reason, although OS X provides OpenSSL libraries, the OpenSSL libraries in OS X are deprecated, and OpenSSL has never been provided as part of iOS." 16 | 17 | ### Installation 18 | 19 | #### CocoaPods 20 | 21 | ```` 22 | pod 'OpenSSL-Universal' 23 | ```` 24 | 25 | #### Carthage 26 | 27 | Latest stable version: 28 | 29 | ``` 30 | github "krzyzanowskim/OpenSSL" 31 | ``` 32 | 33 | ### Authors 34 | 35 | [Marcin Krzyżanowski](https://twitter.com/krzyzanowskim) 36 | 37 | ## Tutorial 38 | **This tutorial assumes you want to:**
39 | - Write a C application.
40 | - Use OpenSSL libraries for some crypto operation.
41 | - Use a Mac and Xcode 8+.
42 | - Use CocoaPods and the OpenSSL-Universal pod as an elegant way to stay updated with the latest libraries and headers.
43 | 44 | #### Step 1 - Create your macOS HelloWorld C app 45 | If you have not done this before with Xcode, select `File / New Project / macOS / Command Line Tool`. Hit build and run. You just successfully build the default Hello World C project. 46 | 47 | #### Step 2 - Setup Cocoa Pods 48 | Make sure your machine is setup for CocoaPods. 49 | After CocoaPods is setup, open `Terminal` and navigate to your project folder and run `pod init`. 50 | After that has completed, type `open -a Xcode Podfile`. 51 | 52 | #### Step 3 - get the OpenSSL-Universal pod 53 | Add `pod 'OpenSSL-Universal'` inside the podfile. 54 | Save the file. 55 | Return to `Terminal` and run `Pod Install`. 56 | After that download completes, make sure to close the C project and open the workspace file that was created. 57 | 58 | #### Step 4 - What is inside of the OpenSSL-Universal pod? 59 | Once this successfully completed, you have now got access to a pre-compiled version of the static OpenSSL libraries and the C header files required to call these functions. 60 | 61 | 62 | 63 | ## FAQ etc. 64 | #### Where can I use OpenSSL-Universal?# 65 | These libraries work for both iOS and MacOS. There are two OpenSSL static libraries; `libcrypto.a` and `libssl.a` 

::Do NOT expect these OpenSSL files to work on every CPU architecture in the world. It is your prerogative to check. Ask yourself, are you trying to write an app for old devices? new devices only? all iOS devices? only macOS?, etc :: 66 | 67 | #### Fat Binaries 68 | The OpenSSL-Universal Framework is a Fat Binary. That means it supports multiple CPU architectures in a single file. 

To understand this, return to `Terminal`. Navigate to your OpenSSL-Universal macOS files and run the command `file libcrypto.a` This will tell you architecture the file is compiled against `x86_64`. If you tried the iOS OpenSSL-Universal files it would have said `armv7`, `armv7s`, `arm64` + Simulators (`x86_64`). 69 | 70 | #### Xcode Setup 71 | You want to ensure Xcode knows; 72 | 73 | 1. Where the OpenSSL static libraries are located. 74 | 2. Where the OpenSSL header files are located for the C include statements. 75 | Inside your workspace, go to the Target (not the Project). The Target is the C app that is produced after a successful build. Select `Build Phases` and `Link Binary With Libraries`. Select `+` and navigate to the static OpenSSL libraries that was included in the framework. The magical result was, your `Target` and `Building Settings` `Library Search Paths` were populated without you typing anything. Now go to the Target. In `Build Settings` set the `Always Search User Paths` to `Yes`. Then add a new entry to the `User Header Search Paths`. This should be the location of the OpenSSL header files that were included in OpenSSLUniversal. -------------------------------------------------------------------------------- /Pods/OpenSSL-Universal/macos/include/openssl/blowfish.h: -------------------------------------------------------------------------------- 1 | /* crypto/bf/blowfish.h */ 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 3 | * All rights reserved. 4 | * 5 | * This package is an SSL implementation written 6 | * by Eric Young (eay@cryptsoft.com). 7 | * The implementation was written so as to conform with Netscapes SSL. 8 | * 9 | * This library is free for commercial and non-commercial use as long as 10 | * the following conditions are aheared to. The following conditions 11 | * apply to all code found in this distribution, be it the RC4, RSA, 12 | * lhash, DES, etc., code; not just the SSL code. The SSL documentation 13 | * included with this distribution is covered by the same copyright terms 14 | * except that the holder is Tim Hudson (tjh@cryptsoft.com). 15 | * 16 | * Copyright remains Eric Young's, and as such any Copyright notices in 17 | * the code are not to be removed. 18 | * If this package is used in a product, Eric Young should be given attribution 19 | * as the author of the parts of the library used. 20 | * This can be in the form of a textual message at program startup or 21 | * in documentation (online or textual) provided with the package. 22 | * 23 | * Redistribution and use in source and binary forms, with or without 24 | * modification, are permitted provided that the following conditions 25 | * are met: 26 | * 1. Redistributions of source code must retain the copyright 27 | * notice, this list of conditions and the following disclaimer. 28 | * 2. Redistributions in binary form must reproduce the above copyright 29 | * notice, this list of conditions and the following disclaimer in the 30 | * documentation and/or other materials provided with the distribution. 31 | * 3. All advertising materials mentioning features or use of this software 32 | * must display the following acknowledgement: 33 | * "This product includes cryptographic software written by 34 | * Eric Young (eay@cryptsoft.com)" 35 | * The word 'cryptographic' can be left out if the rouines from the library 36 | * being used are not cryptographic related :-). 37 | * 4. If you include any Windows specific code (or a derivative thereof) from 38 | * the apps directory (application code) you must include an acknowledgement: 39 | * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" 40 | * 41 | * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND 42 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 43 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 44 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 45 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 46 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 47 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 48 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 49 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 50 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 51 | * SUCH DAMAGE. 52 | * 53 | * The licence and distribution terms for any publically available version or 54 | * derivative of this code cannot be changed. i.e. this code cannot simply be 55 | * copied and put under another distribution licence 56 | * [including the GNU Public Licence.] 57 | */ 58 | 59 | #ifndef HEADER_BLOWFISH_H 60 | # define HEADER_BLOWFISH_H 61 | 62 | # include 63 | 64 | #ifdef __cplusplus 65 | extern "C" { 66 | #endif 67 | 68 | # ifdef OPENSSL_NO_BF 69 | # error BF is disabled. 70 | # endif 71 | 72 | # define BF_ENCRYPT 1 73 | # define BF_DECRYPT 0 74 | 75 | /*- 76 | * !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 77 | * ! BF_LONG has to be at least 32 bits wide. If it's wider, then ! 78 | * ! BF_LONG_LOG2 has to be defined along. ! 79 | * !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 80 | */ 81 | 82 | # if defined(__LP32__) 83 | # define BF_LONG unsigned long 84 | # elif defined(OPENSSL_SYS_CRAY) || defined(__ILP64__) 85 | # define BF_LONG unsigned long 86 | # define BF_LONG_LOG2 3 87 | /* 88 | * _CRAY note. I could declare short, but I have no idea what impact 89 | * does it have on performance on none-T3E machines. I could declare 90 | * int, but at least on C90 sizeof(int) can be chosen at compile time. 91 | * So I've chosen long... 92 | * 93 | */ 94 | # else 95 | # define BF_LONG unsigned int 96 | # endif 97 | 98 | # define BF_ROUNDS 16 99 | # define BF_BLOCK 8 100 | 101 | typedef struct bf_key_st { 102 | BF_LONG P[BF_ROUNDS + 2]; 103 | BF_LONG S[4 * 256]; 104 | } BF_KEY; 105 | 106 | # ifdef OPENSSL_FIPS 107 | void private_BF_set_key(BF_KEY *key, int len, const unsigned char *data); 108 | # endif 109 | void BF_set_key(BF_KEY *key, int len, const unsigned char *data); 110 | 111 | void BF_encrypt(BF_LONG *data, const BF_KEY *key); 112 | void BF_decrypt(BF_LONG *data, const BF_KEY *key); 113 | 114 | void BF_ecb_encrypt(const unsigned char *in, unsigned char *out, 115 | const BF_KEY *key, int enc); 116 | void BF_cbc_encrypt(const unsigned char *in, unsigned char *out, long length, 117 | const BF_KEY *schedule, unsigned char *ivec, int enc); 118 | void BF_cfb64_encrypt(const unsigned char *in, unsigned char *out, 119 | long length, const BF_KEY *schedule, 120 | unsigned char *ivec, int *num, int enc); 121 | void BF_ofb64_encrypt(const unsigned char *in, unsigned char *out, 122 | long length, const BF_KEY *schedule, 123 | unsigned char *ivec, int *num); 124 | const char *BF_options(void); 125 | 126 | #ifdef __cplusplus 127 | } 128 | #endif 129 | 130 | #endif 131 | -------------------------------------------------------------------------------- /Pods/OpenSSL-Universal/macos/include/openssl/buffer.h: -------------------------------------------------------------------------------- 1 | /* crypto/buffer/buffer.h */ 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 3 | * All rights reserved. 4 | * 5 | * This package is an SSL implementation written 6 | * by Eric Young (eay@cryptsoft.com). 7 | * The implementation was written so as to conform with Netscapes SSL. 8 | * 9 | * This library is free for commercial and non-commercial use as long as 10 | * the following conditions are aheared to. The following conditions 11 | * apply to all code found in this distribution, be it the RC4, RSA, 12 | * lhash, DES, etc., code; not just the SSL code. The SSL documentation 13 | * included with this distribution is covered by the same copyright terms 14 | * except that the holder is Tim Hudson (tjh@cryptsoft.com). 15 | * 16 | * Copyright remains Eric Young's, and as such any Copyright notices in 17 | * the code are not to be removed. 18 | * If this package is used in a product, Eric Young should be given attribution 19 | * as the author of the parts of the library used. 20 | * This can be in the form of a textual message at program startup or 21 | * in documentation (online or textual) provided with the package. 22 | * 23 | * Redistribution and use in source and binary forms, with or without 24 | * modification, are permitted provided that the following conditions 25 | * are met: 26 | * 1. Redistributions of source code must retain the copyright 27 | * notice, this list of conditions and the following disclaimer. 28 | * 2. Redistributions in binary form must reproduce the above copyright 29 | * notice, this list of conditions and the following disclaimer in the 30 | * documentation and/or other materials provided with the distribution. 31 | * 3. All advertising materials mentioning features or use of this software 32 | * must display the following acknowledgement: 33 | * "This product includes cryptographic software written by 34 | * Eric Young (eay@cryptsoft.com)" 35 | * The word 'cryptographic' can be left out if the rouines from the library 36 | * being used are not cryptographic related :-). 37 | * 4. If you include any Windows specific code (or a derivative thereof) from 38 | * the apps directory (application code) you must include an acknowledgement: 39 | * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" 40 | * 41 | * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND 42 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 43 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 44 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 45 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 46 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 47 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 48 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 49 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 50 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 51 | * SUCH DAMAGE. 52 | * 53 | * The licence and distribution terms for any publically available version or 54 | * derivative of this code cannot be changed. i.e. this code cannot simply be 55 | * copied and put under another distribution licence 56 | * [including the GNU Public Licence.] 57 | */ 58 | 59 | #ifndef HEADER_BUFFER_H 60 | # define HEADER_BUFFER_H 61 | 62 | # include 63 | 64 | #ifdef __cplusplus 65 | extern "C" { 66 | #endif 67 | 68 | # include 69 | 70 | # if !defined(NO_SYS_TYPES_H) 71 | # include 72 | # endif 73 | 74 | /* Already declared in ossl_typ.h */ 75 | /* typedef struct buf_mem_st BUF_MEM; */ 76 | 77 | struct buf_mem_st { 78 | size_t length; /* current number of bytes */ 79 | char *data; 80 | size_t max; /* size of buffer */ 81 | }; 82 | 83 | BUF_MEM *BUF_MEM_new(void); 84 | void BUF_MEM_free(BUF_MEM *a); 85 | int BUF_MEM_grow(BUF_MEM *str, size_t len); 86 | int BUF_MEM_grow_clean(BUF_MEM *str, size_t len); 87 | size_t BUF_strnlen(const char *str, size_t maxlen); 88 | char *BUF_strdup(const char *str); 89 | 90 | /* 91 | * Like strndup, but in addition, explicitly guarantees to never read past the 92 | * first |siz| bytes of |str|. 93 | */ 94 | char *BUF_strndup(const char *str, size_t siz); 95 | 96 | void *BUF_memdup(const void *data, size_t siz); 97 | void BUF_reverse(unsigned char *out, const unsigned char *in, size_t siz); 98 | 99 | /* safe string functions */ 100 | size_t BUF_strlcpy(char *dst, const char *src, size_t siz); 101 | size_t BUF_strlcat(char *dst, const char *src, size_t siz); 102 | 103 | /* BEGIN ERROR CODES */ 104 | /* 105 | * The following lines are auto generated by the script mkerr.pl. Any changes 106 | * made after this point may be overwritten when the script is next run. 107 | */ 108 | void ERR_load_BUF_strings(void); 109 | 110 | /* Error codes for the BUF functions. */ 111 | 112 | /* Function codes. */ 113 | # define BUF_F_BUF_MEMDUP 103 114 | # define BUF_F_BUF_MEM_GROW 100 115 | # define BUF_F_BUF_MEM_GROW_CLEAN 105 116 | # define BUF_F_BUF_MEM_NEW 101 117 | # define BUF_F_BUF_STRDUP 102 118 | # define BUF_F_BUF_STRNDUP 104 119 | 120 | /* Reason codes. */ 121 | 122 | #ifdef __cplusplus 123 | } 124 | #endif 125 | #endif 126 | -------------------------------------------------------------------------------- /Pods/OpenSSL-Universal/macos/include/openssl/camellia.h: -------------------------------------------------------------------------------- 1 | /* crypto/camellia/camellia.h */ 2 | /* ==================================================================== 3 | * Copyright (c) 2006 The OpenSSL Project. All rights reserved. 4 | * 5 | * Redistribution and use in source and binary forms, with or without 6 | * modification, are permitted provided that the following conditions 7 | * are met: 8 | * 9 | * 1. Redistributions of source code must retain the above copyright 10 | * notice, this list of conditions and the following disclaimer. 11 | * 12 | * 2. Redistributions in binary form must reproduce the above copyright 13 | * notice, this list of conditions and the following disclaimer in 14 | * the documentation and/or other materials provided with the 15 | * distribution. 16 | * 17 | * 3. All advertising materials mentioning features or use of this 18 | * software must display the following acknowledgment: 19 | * "This product includes software developed by the OpenSSL Project 20 | * for use in the OpenSSL Toolkit. (http://www.openssl.org/)" 21 | * 22 | * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to 23 | * endorse or promote products derived from this software without 24 | * prior written permission. For written permission, please contact 25 | * openssl-core@openssl.org. 26 | * 27 | * 5. Products derived from this software may not be called "OpenSSL" 28 | * nor may "OpenSSL" appear in their names without prior written 29 | * permission of the OpenSSL Project. 30 | * 31 | * 6. Redistributions of any form whatsoever must retain the following 32 | * acknowledgment: 33 | * "This product includes software developed by the OpenSSL Project 34 | * for use in the OpenSSL Toolkit (http://www.openssl.org/)" 35 | * 36 | * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY 37 | * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 38 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 39 | * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR 40 | * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 41 | * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 42 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 43 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 44 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, 45 | * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 46 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 47 | * OF THE POSSIBILITY OF SUCH DAMAGE. 48 | * ==================================================================== 49 | * 50 | */ 51 | 52 | #ifndef HEADER_CAMELLIA_H 53 | # define HEADER_CAMELLIA_H 54 | 55 | # include 56 | 57 | # ifdef OPENSSL_NO_CAMELLIA 58 | # error CAMELLIA is disabled. 59 | # endif 60 | 61 | # include 62 | 63 | # define CAMELLIA_ENCRYPT 1 64 | # define CAMELLIA_DECRYPT 0 65 | 66 | /* 67 | * Because array size can't be a const in C, the following two are macros. 68 | * Both sizes are in bytes. 69 | */ 70 | 71 | #ifdef __cplusplus 72 | extern "C" { 73 | #endif 74 | 75 | /* This should be a hidden type, but EVP requires that the size be known */ 76 | 77 | # define CAMELLIA_BLOCK_SIZE 16 78 | # define CAMELLIA_TABLE_BYTE_LEN 272 79 | # define CAMELLIA_TABLE_WORD_LEN (CAMELLIA_TABLE_BYTE_LEN / 4) 80 | 81 | typedef unsigned int KEY_TABLE_TYPE[CAMELLIA_TABLE_WORD_LEN]; /* to match 82 | * with WORD */ 83 | 84 | struct camellia_key_st { 85 | union { 86 | double d; /* ensures 64-bit align */ 87 | KEY_TABLE_TYPE rd_key; 88 | } u; 89 | int grand_rounds; 90 | }; 91 | typedef struct camellia_key_st CAMELLIA_KEY; 92 | 93 | # ifdef OPENSSL_FIPS 94 | int private_Camellia_set_key(const unsigned char *userKey, const int bits, 95 | CAMELLIA_KEY *key); 96 | # endif 97 | int Camellia_set_key(const unsigned char *userKey, const int bits, 98 | CAMELLIA_KEY *key); 99 | 100 | void Camellia_encrypt(const unsigned char *in, unsigned char *out, 101 | const CAMELLIA_KEY *key); 102 | void Camellia_decrypt(const unsigned char *in, unsigned char *out, 103 | const CAMELLIA_KEY *key); 104 | 105 | void Camellia_ecb_encrypt(const unsigned char *in, unsigned char *out, 106 | const CAMELLIA_KEY *key, const int enc); 107 | void Camellia_cbc_encrypt(const unsigned char *in, unsigned char *out, 108 | size_t length, const CAMELLIA_KEY *key, 109 | unsigned char *ivec, const int enc); 110 | void Camellia_cfb128_encrypt(const unsigned char *in, unsigned char *out, 111 | size_t length, const CAMELLIA_KEY *key, 112 | unsigned char *ivec, int *num, const int enc); 113 | void Camellia_cfb1_encrypt(const unsigned char *in, unsigned char *out, 114 | size_t length, const CAMELLIA_KEY *key, 115 | unsigned char *ivec, int *num, const int enc); 116 | void Camellia_cfb8_encrypt(const unsigned char *in, unsigned char *out, 117 | size_t length, const CAMELLIA_KEY *key, 118 | unsigned char *ivec, int *num, const int enc); 119 | void Camellia_ofb128_encrypt(const unsigned char *in, unsigned char *out, 120 | size_t length, const CAMELLIA_KEY *key, 121 | unsigned char *ivec, int *num); 122 | void Camellia_ctr128_encrypt(const unsigned char *in, unsigned char *out, 123 | size_t length, const CAMELLIA_KEY *key, 124 | unsigned char ivec[CAMELLIA_BLOCK_SIZE], 125 | unsigned char ecount_buf[CAMELLIA_BLOCK_SIZE], 126 | unsigned int *num); 127 | 128 | #ifdef __cplusplus 129 | } 130 | #endif 131 | 132 | #endif /* !HEADER_Camellia_H */ 133 | -------------------------------------------------------------------------------- /Pods/OpenSSL-Universal/macos/include/openssl/cast.h: -------------------------------------------------------------------------------- 1 | /* crypto/cast/cast.h */ 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 3 | * All rights reserved. 4 | * 5 | * This package is an SSL implementation written 6 | * by Eric Young (eay@cryptsoft.com). 7 | * The implementation was written so as to conform with Netscapes SSL. 8 | * 9 | * This library is free for commercial and non-commercial use as long as 10 | * the following conditions are aheared to. The following conditions 11 | * apply to all code found in this distribution, be it the RC4, RSA, 12 | * lhash, DES, etc., code; not just the SSL code. The SSL documentation 13 | * included with this distribution is covered by the same copyright terms 14 | * except that the holder is Tim Hudson (tjh@cryptsoft.com). 15 | * 16 | * Copyright remains Eric Young's, and as such any Copyright notices in 17 | * the code are not to be removed. 18 | * If this package is used in a product, Eric Young should be given attribution 19 | * as the author of the parts of the library used. 20 | * This can be in the form of a textual message at program startup or 21 | * in documentation (online or textual) provided with the package. 22 | * 23 | * Redistribution and use in source and binary forms, with or without 24 | * modification, are permitted provided that the following conditions 25 | * are met: 26 | * 1. Redistributions of source code must retain the copyright 27 | * notice, this list of conditions and the following disclaimer. 28 | * 2. Redistributions in binary form must reproduce the above copyright 29 | * notice, this list of conditions and the following disclaimer in the 30 | * documentation and/or other materials provided with the distribution. 31 | * 3. All advertising materials mentioning features or use of this software 32 | * must display the following acknowledgement: 33 | * "This product includes cryptographic software written by 34 | * Eric Young (eay@cryptsoft.com)" 35 | * The word 'cryptographic' can be left out if the rouines from the library 36 | * being used are not cryptographic related :-). 37 | * 4. If you include any Windows specific code (or a derivative thereof) from 38 | * the apps directory (application code) you must include an acknowledgement: 39 | * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" 40 | * 41 | * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND 42 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 43 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 44 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 45 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 46 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 47 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 48 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 49 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 50 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 51 | * SUCH DAMAGE. 52 | * 53 | * The licence and distribution terms for any publically available version or 54 | * derivative of this code cannot be changed. i.e. this code cannot simply be 55 | * copied and put under another distribution licence 56 | * [including the GNU Public Licence.] 57 | */ 58 | 59 | #ifndef HEADER_CAST_H 60 | # define HEADER_CAST_H 61 | 62 | #ifdef __cplusplus 63 | extern "C" { 64 | #endif 65 | 66 | # include 67 | 68 | # ifdef OPENSSL_NO_CAST 69 | # error CAST is disabled. 70 | # endif 71 | 72 | # define CAST_ENCRYPT 1 73 | # define CAST_DECRYPT 0 74 | 75 | # define CAST_LONG unsigned int 76 | 77 | # define CAST_BLOCK 8 78 | # define CAST_KEY_LENGTH 16 79 | 80 | typedef struct cast_key_st { 81 | CAST_LONG data[32]; 82 | int short_key; /* Use reduced rounds for short key */ 83 | } CAST_KEY; 84 | 85 | # ifdef OPENSSL_FIPS 86 | void private_CAST_set_key(CAST_KEY *key, int len, const unsigned char *data); 87 | # endif 88 | void CAST_set_key(CAST_KEY *key, int len, const unsigned char *data); 89 | void CAST_ecb_encrypt(const unsigned char *in, unsigned char *out, 90 | const CAST_KEY *key, int enc); 91 | void CAST_encrypt(CAST_LONG *data, const CAST_KEY *key); 92 | void CAST_decrypt(CAST_LONG *data, const CAST_KEY *key); 93 | void CAST_cbc_encrypt(const unsigned char *in, unsigned char *out, 94 | long length, const CAST_KEY *ks, unsigned char *iv, 95 | int enc); 96 | void CAST_cfb64_encrypt(const unsigned char *in, unsigned char *out, 97 | long length, const CAST_KEY *schedule, 98 | unsigned char *ivec, int *num, int enc); 99 | void CAST_ofb64_encrypt(const unsigned char *in, unsigned char *out, 100 | long length, const CAST_KEY *schedule, 101 | unsigned char *ivec, int *num); 102 | 103 | #ifdef __cplusplus 104 | } 105 | #endif 106 | 107 | #endif 108 | -------------------------------------------------------------------------------- /Pods/OpenSSL-Universal/macos/include/openssl/cmac.h: -------------------------------------------------------------------------------- 1 | /* crypto/cmac/cmac.h */ 2 | /* 3 | * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL 4 | * project. 5 | */ 6 | /* ==================================================================== 7 | * Copyright (c) 2010 The OpenSSL Project. All rights reserved. 8 | * 9 | * Redistribution and use in source and binary forms, with or without 10 | * modification, are permitted provided that the following conditions 11 | * are met: 12 | * 13 | * 1. Redistributions of source code must retain the above copyright 14 | * notice, this list of conditions and the following disclaimer. 15 | * 16 | * 2. Redistributions in binary form must reproduce the above copyright 17 | * notice, this list of conditions and the following disclaimer in 18 | * the documentation and/or other materials provided with the 19 | * distribution. 20 | * 21 | * 3. All advertising materials mentioning features or use of this 22 | * software must display the following acknowledgment: 23 | * "This product includes software developed by the OpenSSL Project 24 | * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" 25 | * 26 | * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to 27 | * endorse or promote products derived from this software without 28 | * prior written permission. For written permission, please contact 29 | * licensing@OpenSSL.org. 30 | * 31 | * 5. Products derived from this software may not be called "OpenSSL" 32 | * nor may "OpenSSL" appear in their names without prior written 33 | * permission of the OpenSSL Project. 34 | * 35 | * 6. Redistributions of any form whatsoever must retain the following 36 | * acknowledgment: 37 | * "This product includes software developed by the OpenSSL Project 38 | * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" 39 | * 40 | * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY 41 | * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 42 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 43 | * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR 44 | * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 45 | * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 46 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 47 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 48 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, 49 | * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 50 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 51 | * OF THE POSSIBILITY OF SUCH DAMAGE. 52 | * ==================================================================== 53 | */ 54 | 55 | #ifndef HEADER_CMAC_H 56 | # define HEADER_CMAC_H 57 | 58 | #ifdef __cplusplus 59 | extern "C" { 60 | #endif 61 | 62 | # include 63 | 64 | /* Opaque */ 65 | typedef struct CMAC_CTX_st CMAC_CTX; 66 | 67 | CMAC_CTX *CMAC_CTX_new(void); 68 | void CMAC_CTX_cleanup(CMAC_CTX *ctx); 69 | void CMAC_CTX_free(CMAC_CTX *ctx); 70 | EVP_CIPHER_CTX *CMAC_CTX_get0_cipher_ctx(CMAC_CTX *ctx); 71 | int CMAC_CTX_copy(CMAC_CTX *out, const CMAC_CTX *in); 72 | 73 | int CMAC_Init(CMAC_CTX *ctx, const void *key, size_t keylen, 74 | const EVP_CIPHER *cipher, ENGINE *impl); 75 | int CMAC_Update(CMAC_CTX *ctx, const void *data, size_t dlen); 76 | int CMAC_Final(CMAC_CTX *ctx, unsigned char *out, size_t *poutlen); 77 | int CMAC_resume(CMAC_CTX *ctx); 78 | 79 | #ifdef __cplusplus 80 | } 81 | #endif 82 | #endif 83 | -------------------------------------------------------------------------------- /Pods/OpenSSL-Universal/macos/include/openssl/comp.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef HEADER_COMP_H 3 | # define HEADER_COMP_H 4 | 5 | # include 6 | 7 | # ifdef OPENSSL_NO_COMP 8 | # error COMP is disabled. 9 | # endif 10 | 11 | #ifdef __cplusplus 12 | extern "C" { 13 | #endif 14 | 15 | typedef struct comp_ctx_st COMP_CTX; 16 | 17 | struct comp_method_st { 18 | int type; /* NID for compression library */ 19 | const char *name; /* A text string to identify the library */ 20 | int (*init) (COMP_CTX *ctx); 21 | void (*finish) (COMP_CTX *ctx); 22 | int (*compress) (COMP_CTX *ctx, 23 | unsigned char *out, unsigned int olen, 24 | unsigned char *in, unsigned int ilen); 25 | int (*expand) (COMP_CTX *ctx, 26 | unsigned char *out, unsigned int olen, 27 | unsigned char *in, unsigned int ilen); 28 | /* 29 | * The following two do NOTHING, but are kept for backward compatibility 30 | */ 31 | long (*ctrl) (void); 32 | long (*callback_ctrl) (void); 33 | }; 34 | 35 | struct comp_ctx_st { 36 | COMP_METHOD *meth; 37 | unsigned long compress_in; 38 | unsigned long compress_out; 39 | unsigned long expand_in; 40 | unsigned long expand_out; 41 | CRYPTO_EX_DATA ex_data; 42 | }; 43 | 44 | COMP_CTX *COMP_CTX_new(COMP_METHOD *meth); 45 | void COMP_CTX_free(COMP_CTX *ctx); 46 | int COMP_compress_block(COMP_CTX *ctx, unsigned char *out, int olen, 47 | unsigned char *in, int ilen); 48 | int COMP_expand_block(COMP_CTX *ctx, unsigned char *out, int olen, 49 | unsigned char *in, int ilen); 50 | COMP_METHOD *COMP_rle(void); 51 | COMP_METHOD *COMP_zlib(void); 52 | void COMP_zlib_cleanup(void); 53 | 54 | # ifdef HEADER_BIO_H 55 | # ifdef ZLIB 56 | BIO_METHOD *BIO_f_zlib(void); 57 | # endif 58 | # endif 59 | 60 | /* BEGIN ERROR CODES */ 61 | /* 62 | * The following lines are auto generated by the script mkerr.pl. Any changes 63 | * made after this point may be overwritten when the script is next run. 64 | */ 65 | void ERR_load_COMP_strings(void); 66 | 67 | /* Error codes for the COMP functions. */ 68 | 69 | /* Function codes. */ 70 | # define COMP_F_BIO_ZLIB_FLUSH 99 71 | # define COMP_F_BIO_ZLIB_NEW 100 72 | # define COMP_F_BIO_ZLIB_READ 101 73 | # define COMP_F_BIO_ZLIB_WRITE 102 74 | 75 | /* Reason codes. */ 76 | # define COMP_R_ZLIB_DEFLATE_ERROR 99 77 | # define COMP_R_ZLIB_INFLATE_ERROR 100 78 | # define COMP_R_ZLIB_NOT_SUPPORTED 101 79 | 80 | #ifdef __cplusplus 81 | } 82 | #endif 83 | #endif 84 | -------------------------------------------------------------------------------- /Pods/OpenSSL-Universal/macos/include/openssl/conf_api.h: -------------------------------------------------------------------------------- 1 | /* conf_api.h */ 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 3 | * All rights reserved. 4 | * 5 | * This package is an SSL implementation written 6 | * by Eric Young (eay@cryptsoft.com). 7 | * The implementation was written so as to conform with Netscapes SSL. 8 | * 9 | * This library is free for commercial and non-commercial use as long as 10 | * the following conditions are aheared to. The following conditions 11 | * apply to all code found in this distribution, be it the RC4, RSA, 12 | * lhash, DES, etc., code; not just the SSL code. The SSL documentation 13 | * included with this distribution is covered by the same copyright terms 14 | * except that the holder is Tim Hudson (tjh@cryptsoft.com). 15 | * 16 | * Copyright remains Eric Young's, and as such any Copyright notices in 17 | * the code are not to be removed. 18 | * If this package is used in a product, Eric Young should be given attribution 19 | * as the author of the parts of the library used. 20 | * This can be in the form of a textual message at program startup or 21 | * in documentation (online or textual) provided with the package. 22 | * 23 | * Redistribution and use in source and binary forms, with or without 24 | * modification, are permitted provided that the following conditions 25 | * are met: 26 | * 1. Redistributions of source code must retain the copyright 27 | * notice, this list of conditions and the following disclaimer. 28 | * 2. Redistributions in binary form must reproduce the above copyright 29 | * notice, this list of conditions and the following disclaimer in the 30 | * documentation and/or other materials provided with the distribution. 31 | * 3. All advertising materials mentioning features or use of this software 32 | * must display the following acknowledgement: 33 | * "This product includes cryptographic software written by 34 | * Eric Young (eay@cryptsoft.com)" 35 | * The word 'cryptographic' can be left out if the rouines from the library 36 | * being used are not cryptographic related :-). 37 | * 4. If you include any Windows specific code (or a derivative thereof) from 38 | * the apps directory (application code) you must include an acknowledgement: 39 | * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" 40 | * 41 | * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND 42 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 43 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 44 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 45 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 46 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 47 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 48 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 49 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 50 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 51 | * SUCH DAMAGE. 52 | * 53 | * The licence and distribution terms for any publically available version or 54 | * derivative of this code cannot be changed. i.e. this code cannot simply be 55 | * copied and put under another distribution licence 56 | * [including the GNU Public Licence.] 57 | */ 58 | 59 | #ifndef HEADER_CONF_API_H 60 | # define HEADER_CONF_API_H 61 | 62 | # include 63 | # include 64 | 65 | #ifdef __cplusplus 66 | extern "C" { 67 | #endif 68 | 69 | /* Up until OpenSSL 0.9.5a, this was new_section */ 70 | CONF_VALUE *_CONF_new_section(CONF *conf, const char *section); 71 | /* Up until OpenSSL 0.9.5a, this was get_section */ 72 | CONF_VALUE *_CONF_get_section(const CONF *conf, const char *section); 73 | /* Up until OpenSSL 0.9.5a, this was CONF_get_section */ 74 | STACK_OF(CONF_VALUE) *_CONF_get_section_values(const CONF *conf, 75 | const char *section); 76 | 77 | int _CONF_add_string(CONF *conf, CONF_VALUE *section, CONF_VALUE *value); 78 | char *_CONF_get_string(const CONF *conf, const char *section, 79 | const char *name); 80 | long _CONF_get_number(const CONF *conf, const char *section, 81 | const char *name); 82 | 83 | int _CONF_new_data(CONF *conf); 84 | void _CONF_free_data(CONF *conf); 85 | 86 | #ifdef __cplusplus 87 | } 88 | #endif 89 | #endif 90 | -------------------------------------------------------------------------------- /Pods/OpenSSL-Universal/macos/include/openssl/ebcdic.h: -------------------------------------------------------------------------------- 1 | /* crypto/ebcdic.h */ 2 | 3 | #ifndef HEADER_EBCDIC_H 4 | # define HEADER_EBCDIC_H 5 | 6 | # include 7 | 8 | #ifdef __cplusplus 9 | extern "C" { 10 | #endif 11 | 12 | /* Avoid name clashes with other applications */ 13 | # define os_toascii _openssl_os_toascii 14 | # define os_toebcdic _openssl_os_toebcdic 15 | # define ebcdic2ascii _openssl_ebcdic2ascii 16 | # define ascii2ebcdic _openssl_ascii2ebcdic 17 | 18 | extern const unsigned char os_toascii[256]; 19 | extern const unsigned char os_toebcdic[256]; 20 | void *ebcdic2ascii(void *dest, const void *srce, size_t count); 21 | void *ascii2ebcdic(void *dest, const void *srce, size_t count); 22 | 23 | #ifdef __cplusplus 24 | } 25 | #endif 26 | #endif 27 | -------------------------------------------------------------------------------- /Pods/OpenSSL-Universal/macos/include/openssl/ecdh.h: -------------------------------------------------------------------------------- 1 | /* crypto/ecdh/ecdh.h */ 2 | /* ==================================================================== 3 | * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. 4 | * 5 | * The Elliptic Curve Public-Key Crypto Library (ECC Code) included 6 | * herein is developed by SUN MICROSYSTEMS, INC., and is contributed 7 | * to the OpenSSL project. 8 | * 9 | * The ECC Code is licensed pursuant to the OpenSSL open source 10 | * license provided below. 11 | * 12 | * The ECDH software is originally written by Douglas Stebila of 13 | * Sun Microsystems Laboratories. 14 | * 15 | */ 16 | /* ==================================================================== 17 | * Copyright (c) 2000-2002 The OpenSSL Project. All rights reserved. 18 | * 19 | * Redistribution and use in source and binary forms, with or without 20 | * modification, are permitted provided that the following conditions 21 | * are met: 22 | * 23 | * 1. Redistributions of source code must retain the above copyright 24 | * notice, this list of conditions and the following disclaimer. 25 | * 26 | * 2. Redistributions in binary form must reproduce the above copyright 27 | * notice, this list of conditions and the following disclaimer in 28 | * the documentation and/or other materials provided with the 29 | * distribution. 30 | * 31 | * 3. All advertising materials mentioning features or use of this 32 | * software must display the following acknowledgment: 33 | * "This product includes software developed by the OpenSSL Project 34 | * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" 35 | * 36 | * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to 37 | * endorse or promote products derived from this software without 38 | * prior written permission. For written permission, please contact 39 | * licensing@OpenSSL.org. 40 | * 41 | * 5. Products derived from this software may not be called "OpenSSL" 42 | * nor may "OpenSSL" appear in their names without prior written 43 | * permission of the OpenSSL Project. 44 | * 45 | * 6. Redistributions of any form whatsoever must retain the following 46 | * acknowledgment: 47 | * "This product includes software developed by the OpenSSL Project 48 | * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" 49 | * 50 | * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY 51 | * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 52 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 53 | * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR 54 | * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 55 | * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 56 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 57 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 58 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, 59 | * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 60 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 61 | * OF THE POSSIBILITY OF SUCH DAMAGE. 62 | * ==================================================================== 63 | * 64 | * This product includes cryptographic software written by Eric Young 65 | * (eay@cryptsoft.com). This product includes software written by Tim 66 | * Hudson (tjh@cryptsoft.com). 67 | * 68 | */ 69 | #ifndef HEADER_ECDH_H 70 | # define HEADER_ECDH_H 71 | 72 | # include 73 | 74 | # ifdef OPENSSL_NO_ECDH 75 | # error ECDH is disabled. 76 | # endif 77 | 78 | # include 79 | # include 80 | # ifndef OPENSSL_NO_DEPRECATED 81 | # include 82 | # endif 83 | 84 | #ifdef __cplusplus 85 | extern "C" { 86 | #endif 87 | 88 | # define EC_FLAG_COFACTOR_ECDH 0x1000 89 | 90 | const ECDH_METHOD *ECDH_OpenSSL(void); 91 | 92 | void ECDH_set_default_method(const ECDH_METHOD *); 93 | const ECDH_METHOD *ECDH_get_default_method(void); 94 | int ECDH_set_method(EC_KEY *, const ECDH_METHOD *); 95 | 96 | int ECDH_compute_key(void *out, size_t outlen, const EC_POINT *pub_key, 97 | EC_KEY *ecdh, void *(*KDF) (const void *in, size_t inlen, 98 | void *out, size_t *outlen)); 99 | 100 | int ECDH_get_ex_new_index(long argl, void *argp, CRYPTO_EX_new 101 | *new_func, CRYPTO_EX_dup *dup_func, 102 | CRYPTO_EX_free *free_func); 103 | int ECDH_set_ex_data(EC_KEY *d, int idx, void *arg); 104 | void *ECDH_get_ex_data(EC_KEY *d, int idx); 105 | 106 | int ECDH_KDF_X9_62(unsigned char *out, size_t outlen, 107 | const unsigned char *Z, size_t Zlen, 108 | const unsigned char *sinfo, size_t sinfolen, 109 | const EVP_MD *md); 110 | 111 | /* BEGIN ERROR CODES */ 112 | /* 113 | * The following lines are auto generated by the script mkerr.pl. Any changes 114 | * made after this point may be overwritten when the script is next run. 115 | */ 116 | void ERR_load_ECDH_strings(void); 117 | 118 | /* Error codes for the ECDH functions. */ 119 | 120 | /* Function codes. */ 121 | # define ECDH_F_ECDH_CHECK 102 122 | # define ECDH_F_ECDH_COMPUTE_KEY 100 123 | # define ECDH_F_ECDH_DATA_NEW_METHOD 101 124 | 125 | /* Reason codes. */ 126 | # define ECDH_R_KDF_FAILED 102 127 | # define ECDH_R_NON_FIPS_METHOD 103 128 | # define ECDH_R_NO_PRIVATE_VALUE 100 129 | # define ECDH_R_POINT_ARITHMETIC_FAILURE 101 130 | 131 | #ifdef __cplusplus 132 | } 133 | #endif 134 | #endif 135 | -------------------------------------------------------------------------------- /Pods/OpenSSL-Universal/macos/include/openssl/hmac.h: -------------------------------------------------------------------------------- 1 | /* crypto/hmac/hmac.h */ 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 3 | * All rights reserved. 4 | * 5 | * This package is an SSL implementation written 6 | * by Eric Young (eay@cryptsoft.com). 7 | * The implementation was written so as to conform with Netscapes SSL. 8 | * 9 | * This library is free for commercial and non-commercial use as long as 10 | * the following conditions are aheared to. The following conditions 11 | * apply to all code found in this distribution, be it the RC4, RSA, 12 | * lhash, DES, etc., code; not just the SSL code. The SSL documentation 13 | * included with this distribution is covered by the same copyright terms 14 | * except that the holder is Tim Hudson (tjh@cryptsoft.com). 15 | * 16 | * Copyright remains Eric Young's, and as such any Copyright notices in 17 | * the code are not to be removed. 18 | * If this package is used in a product, Eric Young should be given attribution 19 | * as the author of the parts of the library used. 20 | * This can be in the form of a textual message at program startup or 21 | * in documentation (online or textual) provided with the package. 22 | * 23 | * Redistribution and use in source and binary forms, with or without 24 | * modification, are permitted provided that the following conditions 25 | * are met: 26 | * 1. Redistributions of source code must retain the copyright 27 | * notice, this list of conditions and the following disclaimer. 28 | * 2. Redistributions in binary form must reproduce the above copyright 29 | * notice, this list of conditions and the following disclaimer in the 30 | * documentation and/or other materials provided with the distribution. 31 | * 3. All advertising materials mentioning features or use of this software 32 | * must display the following acknowledgement: 33 | * "This product includes cryptographic software written by 34 | * Eric Young (eay@cryptsoft.com)" 35 | * The word 'cryptographic' can be left out if the rouines from the library 36 | * being used are not cryptographic related :-). 37 | * 4. If you include any Windows specific code (or a derivative thereof) from 38 | * the apps directory (application code) you must include an acknowledgement: 39 | * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" 40 | * 41 | * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND 42 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 43 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 44 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 45 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 46 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 47 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 48 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 49 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 50 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 51 | * SUCH DAMAGE. 52 | * 53 | * The licence and distribution terms for any publically available version or 54 | * derivative of this code cannot be changed. i.e. this code cannot simply be 55 | * copied and put under another distribution licence 56 | * [including the GNU Public Licence.] 57 | */ 58 | #ifndef HEADER_HMAC_H 59 | # define HEADER_HMAC_H 60 | 61 | # include 62 | 63 | # ifdef OPENSSL_NO_HMAC 64 | # error HMAC is disabled. 65 | # endif 66 | 67 | # include 68 | 69 | # define HMAC_MAX_MD_CBLOCK 128/* largest known is SHA512 */ 70 | 71 | #ifdef __cplusplus 72 | extern "C" { 73 | #endif 74 | 75 | typedef struct hmac_ctx_st { 76 | const EVP_MD *md; 77 | EVP_MD_CTX md_ctx; 78 | EVP_MD_CTX i_ctx; 79 | EVP_MD_CTX o_ctx; 80 | unsigned int key_length; 81 | unsigned char key[HMAC_MAX_MD_CBLOCK]; 82 | } HMAC_CTX; 83 | 84 | # define HMAC_size(e) (EVP_MD_size((e)->md)) 85 | 86 | void HMAC_CTX_init(HMAC_CTX *ctx); 87 | void HMAC_CTX_cleanup(HMAC_CTX *ctx); 88 | 89 | /* deprecated */ 90 | # define HMAC_cleanup(ctx) HMAC_CTX_cleanup(ctx) 91 | 92 | /* deprecated */ 93 | int HMAC_Init(HMAC_CTX *ctx, const void *key, int len, const EVP_MD *md); 94 | int HMAC_Init_ex(HMAC_CTX *ctx, const void *key, int len, 95 | const EVP_MD *md, ENGINE *impl); 96 | int HMAC_Update(HMAC_CTX *ctx, const unsigned char *data, size_t len); 97 | int HMAC_Final(HMAC_CTX *ctx, unsigned char *md, unsigned int *len); 98 | unsigned char *HMAC(const EVP_MD *evp_md, const void *key, int key_len, 99 | const unsigned char *d, size_t n, unsigned char *md, 100 | unsigned int *md_len); 101 | int HMAC_CTX_copy(HMAC_CTX *dctx, HMAC_CTX *sctx); 102 | 103 | void HMAC_CTX_set_flags(HMAC_CTX *ctx, unsigned long flags); 104 | 105 | #ifdef __cplusplus 106 | } 107 | #endif 108 | 109 | #endif 110 | -------------------------------------------------------------------------------- /Pods/OpenSSL-Universal/macos/include/openssl/idea.h: -------------------------------------------------------------------------------- 1 | /* crypto/idea/idea.h */ 2 | /* Copyright (C) 1995-1997 Eric Young (eay@cryptsoft.com) 3 | * All rights reserved. 4 | * 5 | * This package is an SSL implementation written 6 | * by Eric Young (eay@cryptsoft.com). 7 | * The implementation was written so as to conform with Netscapes SSL. 8 | * 9 | * This library is free for commercial and non-commercial use as long as 10 | * the following conditions are aheared to. The following conditions 11 | * apply to all code found in this distribution, be it the RC4, RSA, 12 | * lhash, DES, etc., code; not just the SSL code. The SSL documentation 13 | * included with this distribution is covered by the same copyright terms 14 | * except that the holder is Tim Hudson (tjh@cryptsoft.com). 15 | * 16 | * Copyright remains Eric Young's, and as such any Copyright notices in 17 | * the code are not to be removed. 18 | * If this package is used in a product, Eric Young should be given attribution 19 | * as the author of the parts of the library used. 20 | * This can be in the form of a textual message at program startup or 21 | * in documentation (online or textual) provided with the package. 22 | * 23 | * Redistribution and use in source and binary forms, with or without 24 | * modification, are permitted provided that the following conditions 25 | * are met: 26 | * 1. Redistributions of source code must retain the copyright 27 | * notice, this list of conditions and the following disclaimer. 28 | * 2. Redistributions in binary form must reproduce the above copyright 29 | * notice, this list of conditions and the following disclaimer in the 30 | * documentation and/or other materials provided with the distribution. 31 | * 3. All advertising materials mentioning features or use of this software 32 | * must display the following acknowledgement: 33 | * "This product includes cryptographic software written by 34 | * Eric Young (eay@cryptsoft.com)" 35 | * The word 'cryptographic' can be left out if the rouines from the library 36 | * being used are not cryptographic related :-). 37 | * 4. If you include any Windows specific code (or a derivative thereof) from 38 | * the apps directory (application code) you must include an acknowledgement: 39 | * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" 40 | * 41 | * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND 42 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 43 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 44 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 45 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 46 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 47 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 48 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 49 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 50 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 51 | * SUCH DAMAGE. 52 | * 53 | * The licence and distribution terms for any publically available version or 54 | * derivative of this code cannot be changed. i.e. this code cannot simply be 55 | * copied and put under another distribution licence 56 | * [including the GNU Public Licence.] 57 | */ 58 | 59 | #ifndef HEADER_IDEA_H 60 | # define HEADER_IDEA_H 61 | 62 | # include /* IDEA_INT, OPENSSL_NO_IDEA */ 63 | 64 | # ifdef OPENSSL_NO_IDEA 65 | # error IDEA is disabled. 66 | # endif 67 | 68 | # define IDEA_ENCRYPT 1 69 | # define IDEA_DECRYPT 0 70 | 71 | # define IDEA_BLOCK 8 72 | # define IDEA_KEY_LENGTH 16 73 | 74 | #ifdef __cplusplus 75 | extern "C" { 76 | #endif 77 | 78 | typedef struct idea_key_st { 79 | IDEA_INT data[9][6]; 80 | } IDEA_KEY_SCHEDULE; 81 | 82 | const char *idea_options(void); 83 | void idea_ecb_encrypt(const unsigned char *in, unsigned char *out, 84 | IDEA_KEY_SCHEDULE *ks); 85 | # ifdef OPENSSL_FIPS 86 | void private_idea_set_encrypt_key(const unsigned char *key, 87 | IDEA_KEY_SCHEDULE *ks); 88 | # endif 89 | void idea_set_encrypt_key(const unsigned char *key, IDEA_KEY_SCHEDULE *ks); 90 | void idea_set_decrypt_key(IDEA_KEY_SCHEDULE *ek, IDEA_KEY_SCHEDULE *dk); 91 | void idea_cbc_encrypt(const unsigned char *in, unsigned char *out, 92 | long length, IDEA_KEY_SCHEDULE *ks, unsigned char *iv, 93 | int enc); 94 | void idea_cfb64_encrypt(const unsigned char *in, unsigned char *out, 95 | long length, IDEA_KEY_SCHEDULE *ks, unsigned char *iv, 96 | int *num, int enc); 97 | void idea_ofb64_encrypt(const unsigned char *in, unsigned char *out, 98 | long length, IDEA_KEY_SCHEDULE *ks, unsigned char *iv, 99 | int *num); 100 | void idea_encrypt(unsigned long *in, IDEA_KEY_SCHEDULE *ks); 101 | #ifdef __cplusplus 102 | } 103 | #endif 104 | 105 | #endif 106 | -------------------------------------------------------------------------------- /Pods/OpenSSL-Universal/macos/include/openssl/md4.h: -------------------------------------------------------------------------------- 1 | /* crypto/md4/md4.h */ 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 3 | * All rights reserved. 4 | * 5 | * This package is an SSL implementation written 6 | * by Eric Young (eay@cryptsoft.com). 7 | * The implementation was written so as to conform with Netscapes SSL. 8 | * 9 | * This library is free for commercial and non-commercial use as long as 10 | * the following conditions are aheared to. The following conditions 11 | * apply to all code found in this distribution, be it the RC4, RSA, 12 | * lhash, DES, etc., code; not just the SSL code. The SSL documentation 13 | * included with this distribution is covered by the same copyright terms 14 | * except that the holder is Tim Hudson (tjh@cryptsoft.com). 15 | * 16 | * Copyright remains Eric Young's, and as such any Copyright notices in 17 | * the code are not to be removed. 18 | * If this package is used in a product, Eric Young should be given attribution 19 | * as the author of the parts of the library used. 20 | * This can be in the form of a textual message at program startup or 21 | * in documentation (online or textual) provided with the package. 22 | * 23 | * Redistribution and use in source and binary forms, with or without 24 | * modification, are permitted provided that the following conditions 25 | * are met: 26 | * 1. Redistributions of source code must retain the copyright 27 | * notice, this list of conditions and the following disclaimer. 28 | * 2. Redistributions in binary form must reproduce the above copyright 29 | * notice, this list of conditions and the following disclaimer in the 30 | * documentation and/or other materials provided with the distribution. 31 | * 3. All advertising materials mentioning features or use of this software 32 | * must display the following acknowledgement: 33 | * "This product includes cryptographic software written by 34 | * Eric Young (eay@cryptsoft.com)" 35 | * The word 'cryptographic' can be left out if the rouines from the library 36 | * being used are not cryptographic related :-). 37 | * 4. If you include any Windows specific code (or a derivative thereof) from 38 | * the apps directory (application code) you must include an acknowledgement: 39 | * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" 40 | * 41 | * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND 42 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 43 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 44 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 45 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 46 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 47 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 48 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 49 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 50 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 51 | * SUCH DAMAGE. 52 | * 53 | * The licence and distribution terms for any publically available version or 54 | * derivative of this code cannot be changed. i.e. this code cannot simply be 55 | * copied and put under another distribution licence 56 | * [including the GNU Public Licence.] 57 | */ 58 | 59 | #ifndef HEADER_MD4_H 60 | # define HEADER_MD4_H 61 | 62 | # include 63 | # include 64 | 65 | #ifdef __cplusplus 66 | extern "C" { 67 | #endif 68 | 69 | # ifdef OPENSSL_NO_MD4 70 | # error MD4 is disabled. 71 | # endif 72 | 73 | /*- 74 | * !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 75 | * ! MD4_LONG has to be at least 32 bits wide. If it's wider, then ! 76 | * ! MD4_LONG_LOG2 has to be defined along. ! 77 | * !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 78 | */ 79 | 80 | # if defined(__LP32__) 81 | # define MD4_LONG unsigned long 82 | # elif defined(OPENSSL_SYS_CRAY) || defined(__ILP64__) 83 | # define MD4_LONG unsigned long 84 | # define MD4_LONG_LOG2 3 85 | /* 86 | * _CRAY note. I could declare short, but I have no idea what impact 87 | * does it have on performance on none-T3E machines. I could declare 88 | * int, but at least on C90 sizeof(int) can be chosen at compile time. 89 | * So I've chosen long... 90 | * 91 | */ 92 | # else 93 | # define MD4_LONG unsigned int 94 | # endif 95 | 96 | # define MD4_CBLOCK 64 97 | # define MD4_LBLOCK (MD4_CBLOCK/4) 98 | # define MD4_DIGEST_LENGTH 16 99 | 100 | typedef struct MD4state_st { 101 | MD4_LONG A, B, C, D; 102 | MD4_LONG Nl, Nh; 103 | MD4_LONG data[MD4_LBLOCK]; 104 | unsigned int num; 105 | } MD4_CTX; 106 | 107 | # ifdef OPENSSL_FIPS 108 | int private_MD4_Init(MD4_CTX *c); 109 | # endif 110 | int MD4_Init(MD4_CTX *c); 111 | int MD4_Update(MD4_CTX *c, const void *data, size_t len); 112 | int MD4_Final(unsigned char *md, MD4_CTX *c); 113 | unsigned char *MD4(const unsigned char *d, size_t n, unsigned char *md); 114 | void MD4_Transform(MD4_CTX *c, const unsigned char *b); 115 | #ifdef __cplusplus 116 | } 117 | #endif 118 | 119 | #endif 120 | -------------------------------------------------------------------------------- /Pods/OpenSSL-Universal/macos/include/openssl/md5.h: -------------------------------------------------------------------------------- 1 | /* crypto/md5/md5.h */ 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 3 | * All rights reserved. 4 | * 5 | * This package is an SSL implementation written 6 | * by Eric Young (eay@cryptsoft.com). 7 | * The implementation was written so as to conform with Netscapes SSL. 8 | * 9 | * This library is free for commercial and non-commercial use as long as 10 | * the following conditions are aheared to. The following conditions 11 | * apply to all code found in this distribution, be it the RC4, RSA, 12 | * lhash, DES, etc., code; not just the SSL code. The SSL documentation 13 | * included with this distribution is covered by the same copyright terms 14 | * except that the holder is Tim Hudson (tjh@cryptsoft.com). 15 | * 16 | * Copyright remains Eric Young's, and as such any Copyright notices in 17 | * the code are not to be removed. 18 | * If this package is used in a product, Eric Young should be given attribution 19 | * as the author of the parts of the library used. 20 | * This can be in the form of a textual message at program startup or 21 | * in documentation (online or textual) provided with the package. 22 | * 23 | * Redistribution and use in source and binary forms, with or without 24 | * modification, are permitted provided that the following conditions 25 | * are met: 26 | * 1. Redistributions of source code must retain the copyright 27 | * notice, this list of conditions and the following disclaimer. 28 | * 2. Redistributions in binary form must reproduce the above copyright 29 | * notice, this list of conditions and the following disclaimer in the 30 | * documentation and/or other materials provided with the distribution. 31 | * 3. All advertising materials mentioning features or use of this software 32 | * must display the following acknowledgement: 33 | * "This product includes cryptographic software written by 34 | * Eric Young (eay@cryptsoft.com)" 35 | * The word 'cryptographic' can be left out if the rouines from the library 36 | * being used are not cryptographic related :-). 37 | * 4. If you include any Windows specific code (or a derivative thereof) from 38 | * the apps directory (application code) you must include an acknowledgement: 39 | * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" 40 | * 41 | * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND 42 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 43 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 44 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 45 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 46 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 47 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 48 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 49 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 50 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 51 | * SUCH DAMAGE. 52 | * 53 | * The licence and distribution terms for any publically available version or 54 | * derivative of this code cannot be changed. i.e. this code cannot simply be 55 | * copied and put under another distribution licence 56 | * [including the GNU Public Licence.] 57 | */ 58 | 59 | #ifndef HEADER_MD5_H 60 | # define HEADER_MD5_H 61 | 62 | # include 63 | # include 64 | 65 | #ifdef __cplusplus 66 | extern "C" { 67 | #endif 68 | 69 | # ifdef OPENSSL_NO_MD5 70 | # error MD5 is disabled. 71 | # endif 72 | 73 | /* 74 | * !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 75 | * ! MD5_LONG has to be at least 32 bits wide. If it's wider, then ! 76 | * ! MD5_LONG_LOG2 has to be defined along. ! 77 | * !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 78 | */ 79 | 80 | # if defined(__LP32__) 81 | # define MD5_LONG unsigned long 82 | # elif defined(OPENSSL_SYS_CRAY) || defined(__ILP64__) 83 | # define MD5_LONG unsigned long 84 | # define MD5_LONG_LOG2 3 85 | /* 86 | * _CRAY note. I could declare short, but I have no idea what impact 87 | * does it have on performance on none-T3E machines. I could declare 88 | * int, but at least on C90 sizeof(int) can be chosen at compile time. 89 | * So I've chosen long... 90 | * 91 | */ 92 | # else 93 | # define MD5_LONG unsigned int 94 | # endif 95 | 96 | # define MD5_CBLOCK 64 97 | # define MD5_LBLOCK (MD5_CBLOCK/4) 98 | # define MD5_DIGEST_LENGTH 16 99 | 100 | typedef struct MD5state_st { 101 | MD5_LONG A, B, C, D; 102 | MD5_LONG Nl, Nh; 103 | MD5_LONG data[MD5_LBLOCK]; 104 | unsigned int num; 105 | } MD5_CTX; 106 | 107 | # ifdef OPENSSL_FIPS 108 | int private_MD5_Init(MD5_CTX *c); 109 | # endif 110 | int MD5_Init(MD5_CTX *c); 111 | int MD5_Update(MD5_CTX *c, const void *data, size_t len); 112 | int MD5_Final(unsigned char *md, MD5_CTX *c); 113 | unsigned char *MD5(const unsigned char *d, size_t n, unsigned char *md); 114 | void MD5_Transform(MD5_CTX *c, const unsigned char *b); 115 | #ifdef __cplusplus 116 | } 117 | #endif 118 | 119 | #endif 120 | -------------------------------------------------------------------------------- /Pods/OpenSSL-Universal/macos/include/openssl/mdc2.h: -------------------------------------------------------------------------------- 1 | /* crypto/mdc2/mdc2.h */ 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 3 | * All rights reserved. 4 | * 5 | * This package is an SSL implementation written 6 | * by Eric Young (eay@cryptsoft.com). 7 | * The implementation was written so as to conform with Netscapes SSL. 8 | * 9 | * This library is free for commercial and non-commercial use as long as 10 | * the following conditions are aheared to. The following conditions 11 | * apply to all code found in this distribution, be it the RC4, RSA, 12 | * lhash, DES, etc., code; not just the SSL code. The SSL documentation 13 | * included with this distribution is covered by the same copyright terms 14 | * except that the holder is Tim Hudson (tjh@cryptsoft.com). 15 | * 16 | * Copyright remains Eric Young's, and as such any Copyright notices in 17 | * the code are not to be removed. 18 | * If this package is used in a product, Eric Young should be given attribution 19 | * as the author of the parts of the library used. 20 | * This can be in the form of a textual message at program startup or 21 | * in documentation (online or textual) provided with the package. 22 | * 23 | * Redistribution and use in source and binary forms, with or without 24 | * modification, are permitted provided that the following conditions 25 | * are met: 26 | * 1. Redistributions of source code must retain the copyright 27 | * notice, this list of conditions and the following disclaimer. 28 | * 2. Redistributions in binary form must reproduce the above copyright 29 | * notice, this list of conditions and the following disclaimer in the 30 | * documentation and/or other materials provided with the distribution. 31 | * 3. All advertising materials mentioning features or use of this software 32 | * must display the following acknowledgement: 33 | * "This product includes cryptographic software written by 34 | * Eric Young (eay@cryptsoft.com)" 35 | * The word 'cryptographic' can be left out if the rouines from the library 36 | * being used are not cryptographic related :-). 37 | * 4. If you include any Windows specific code (or a derivative thereof) from 38 | * the apps directory (application code) you must include an acknowledgement: 39 | * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" 40 | * 41 | * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND 42 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 43 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 44 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 45 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 46 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 47 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 48 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 49 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 50 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 51 | * SUCH DAMAGE. 52 | * 53 | * The licence and distribution terms for any publically available version or 54 | * derivative of this code cannot be changed. i.e. this code cannot simply be 55 | * copied and put under another distribution licence 56 | * [including the GNU Public Licence.] 57 | */ 58 | 59 | #ifndef HEADER_MDC2_H 60 | # define HEADER_MDC2_H 61 | 62 | # include 63 | 64 | #ifdef __cplusplus 65 | extern "C" { 66 | #endif 67 | 68 | # ifdef OPENSSL_NO_MDC2 69 | # error MDC2 is disabled. 70 | # endif 71 | 72 | # define MDC2_BLOCK 8 73 | # define MDC2_DIGEST_LENGTH 16 74 | 75 | typedef struct mdc2_ctx_st { 76 | unsigned int num; 77 | unsigned char data[MDC2_BLOCK]; 78 | DES_cblock h, hh; 79 | int pad_type; /* either 1 or 2, default 1 */ 80 | } MDC2_CTX; 81 | 82 | # ifdef OPENSSL_FIPS 83 | int private_MDC2_Init(MDC2_CTX *c); 84 | # endif 85 | int MDC2_Init(MDC2_CTX *c); 86 | int MDC2_Update(MDC2_CTX *c, const unsigned char *data, size_t len); 87 | int MDC2_Final(unsigned char *md, MDC2_CTX *c); 88 | unsigned char *MDC2(const unsigned char *d, size_t n, unsigned char *md); 89 | 90 | #ifdef __cplusplus 91 | } 92 | #endif 93 | 94 | #endif 95 | -------------------------------------------------------------------------------- /Pods/OpenSSL-Universal/macos/include/openssl/opensslconf.h: -------------------------------------------------------------------------------- 1 | 2 | /* opensslconf.h */ 3 | #if defined(__APPLE__) && defined (__x86_64__) 4 | # include 5 | #endif 6 | 7 | #if defined(__APPLE__) && defined (__i386__) 8 | # include 9 | #endif 10 | 11 | #if defined(__APPLE__) && defined (__arm__) && defined (__ARM_ARCH_7A__) 12 | # include 13 | #endif 14 | 15 | #if defined(__APPLE__) && defined (__arm__) && defined (__ARM_ARCH_7S__) 16 | # include 17 | #endif 18 | 19 | #if defined(__APPLE__) && (defined (__arm64__) || defined (__aarch64__)) 20 | # include 21 | #endif 22 | 23 | -------------------------------------------------------------------------------- /Pods/OpenSSL-Universal/macos/include/openssl/opensslv.h: -------------------------------------------------------------------------------- 1 | #ifndef HEADER_OPENSSLV_H 2 | # define HEADER_OPENSSLV_H 3 | 4 | #ifdef __cplusplus 5 | extern "C" { 6 | #endif 7 | 8 | /*- 9 | * Numeric release version identifier: 10 | * MNNFFPPS: major minor fix patch status 11 | * The status nibble has one of the values 0 for development, 1 to e for betas 12 | * 1 to 14, and f for release. The patch level is exactly that. 13 | * For example: 14 | * 0.9.3-dev 0x00903000 15 | * 0.9.3-beta1 0x00903001 16 | * 0.9.3-beta2-dev 0x00903002 17 | * 0.9.3-beta2 0x00903002 (same as ...beta2-dev) 18 | * 0.9.3 0x0090300f 19 | * 0.9.3a 0x0090301f 20 | * 0.9.4 0x0090400f 21 | * 1.2.3z 0x102031af 22 | * 23 | * For continuity reasons (because 0.9.5 is already out, and is coded 24 | * 0x00905100), between 0.9.5 and 0.9.6 the coding of the patch level 25 | * part is slightly different, by setting the highest bit. This means 26 | * that 0.9.5a looks like this: 0x0090581f. At 0.9.6, we can start 27 | * with 0x0090600S... 28 | * 29 | * (Prior to 0.9.3-dev a different scheme was used: 0.9.2b is 0x0922.) 30 | * (Prior to 0.9.5a beta1, a different scheme was used: MMNNFFRBB for 31 | * major minor fix final patch/beta) 32 | */ 33 | # define OPENSSL_VERSION_NUMBER 0x1000214fL 34 | # ifdef OPENSSL_FIPS 35 | # define OPENSSL_VERSION_TEXT "OpenSSL 1.0.2t-fips 10 Sep 2019" 36 | # else 37 | # define OPENSSL_VERSION_TEXT "OpenSSL 1.0.2t 10 Sep 2019" 38 | # endif 39 | # define OPENSSL_VERSION_PTEXT " part of " OPENSSL_VERSION_TEXT 40 | 41 | /*- 42 | * The macros below are to be used for shared library (.so, .dll, ...) 43 | * versioning. That kind of versioning works a bit differently between 44 | * operating systems. The most usual scheme is to set a major and a minor 45 | * number, and have the runtime loader check that the major number is equal 46 | * to what it was at application link time, while the minor number has to 47 | * be greater or equal to what it was at application link time. With this 48 | * scheme, the version number is usually part of the file name, like this: 49 | * 50 | * libcrypto.so.0.9 51 | * 52 | * Some unixen also make a softlink with the major verson number only: 53 | * 54 | * libcrypto.so.0 55 | * 56 | * On Tru64 and IRIX 6.x it works a little bit differently. There, the 57 | * shared library version is stored in the file, and is actually a series 58 | * of versions, separated by colons. The rightmost version present in the 59 | * library when linking an application is stored in the application to be 60 | * matched at run time. When the application is run, a check is done to 61 | * see if the library version stored in the application matches any of the 62 | * versions in the version string of the library itself. 63 | * This version string can be constructed in any way, depending on what 64 | * kind of matching is desired. However, to implement the same scheme as 65 | * the one used in the other unixen, all compatible versions, from lowest 66 | * to highest, should be part of the string. Consecutive builds would 67 | * give the following versions strings: 68 | * 69 | * 3.0 70 | * 3.0:3.1 71 | * 3.0:3.1:3.2 72 | * 4.0 73 | * 4.0:4.1 74 | * 75 | * Notice how version 4 is completely incompatible with version, and 76 | * therefore give the breach you can see. 77 | * 78 | * There may be other schemes as well that I haven't yet discovered. 79 | * 80 | * So, here's the way it works here: first of all, the library version 81 | * number doesn't need at all to match the overall OpenSSL version. 82 | * However, it's nice and more understandable if it actually does. 83 | * The current library version is stored in the macro SHLIB_VERSION_NUMBER, 84 | * which is just a piece of text in the format "M.m.e" (Major, minor, edit). 85 | * For the sake of Tru64, IRIX, and any other OS that behaves in similar ways, 86 | * we need to keep a history of version numbers, which is done in the 87 | * macro SHLIB_VERSION_HISTORY. The numbers are separated by colons and 88 | * should only keep the versions that are binary compatible with the current. 89 | */ 90 | # define SHLIB_VERSION_HISTORY "" 91 | # define SHLIB_VERSION_NUMBER "1.0.0" 92 | 93 | 94 | #ifdef __cplusplus 95 | } 96 | #endif 97 | #endif /* HEADER_OPENSSLV_H */ 98 | -------------------------------------------------------------------------------- /Pods/OpenSSL-Universal/macos/include/openssl/pem2.h: -------------------------------------------------------------------------------- 1 | /* ==================================================================== 2 | * Copyright (c) 1999 The OpenSSL Project. All rights reserved. 3 | * 4 | * Redistribution and use in source and binary forms, with or without 5 | * modification, are permitted provided that the following conditions 6 | * are met: 7 | * 8 | * 1. Redistributions of source code must retain the above copyright 9 | * notice, this list of conditions and the following disclaimer. 10 | * 11 | * 2. Redistributions in binary form must reproduce the above copyright 12 | * notice, this list of conditions and the following disclaimer in 13 | * the documentation and/or other materials provided with the 14 | * distribution. 15 | * 16 | * 3. All advertising materials mentioning features or use of this 17 | * software must display the following acknowledgment: 18 | * "This product includes software developed by the OpenSSL Project 19 | * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" 20 | * 21 | * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to 22 | * endorse or promote products derived from this software without 23 | * prior written permission. For written permission, please contact 24 | * licensing@OpenSSL.org. 25 | * 26 | * 5. Products derived from this software may not be called "OpenSSL" 27 | * nor may "OpenSSL" appear in their names without prior written 28 | * permission of the OpenSSL Project. 29 | * 30 | * 6. Redistributions of any form whatsoever must retain the following 31 | * acknowledgment: 32 | * "This product includes software developed by the OpenSSL Project 33 | * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" 34 | * 35 | * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY 36 | * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 37 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 38 | * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR 39 | * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 40 | * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 41 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 42 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 43 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, 44 | * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 45 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 46 | * OF THE POSSIBILITY OF SUCH DAMAGE. 47 | * ==================================================================== 48 | * 49 | * This product includes cryptographic software written by Eric Young 50 | * (eay@cryptsoft.com). This product includes software written by Tim 51 | * Hudson (tjh@cryptsoft.com). 52 | * 53 | */ 54 | 55 | /* 56 | * This header only exists to break a circular dependency between pem and err 57 | * Ben 30 Jan 1999. 58 | */ 59 | 60 | #ifdef __cplusplus 61 | extern "C" { 62 | #endif 63 | 64 | #ifndef HEADER_PEM_H 65 | void ERR_load_PEM_strings(void); 66 | #endif 67 | 68 | #ifdef __cplusplus 69 | } 70 | #endif 71 | -------------------------------------------------------------------------------- /Pods/OpenSSL-Universal/macos/include/openssl/pqueue.h: -------------------------------------------------------------------------------- 1 | /* crypto/pqueue/pqueue.h */ 2 | /* 3 | * DTLS implementation written by Nagendra Modadugu 4 | * (nagendra@cs.stanford.edu) for the OpenSSL project 2005. 5 | */ 6 | /* ==================================================================== 7 | * Copyright (c) 1999-2005 The OpenSSL Project. All rights reserved. 8 | * 9 | * Redistribution and use in source and binary forms, with or without 10 | * modification, are permitted provided that the following conditions 11 | * are met: 12 | * 13 | * 1. Redistributions of source code must retain the above copyright 14 | * notice, this list of conditions and the following disclaimer. 15 | * 16 | * 2. Redistributions in binary form must reproduce the above copyright 17 | * notice, this list of conditions and the following disclaimer in 18 | * the documentation and/or other materials provided with the 19 | * distribution. 20 | * 21 | * 3. All advertising materials mentioning features or use of this 22 | * software must display the following acknowledgment: 23 | * "This product includes software developed by the OpenSSL Project 24 | * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" 25 | * 26 | * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to 27 | * endorse or promote products derived from this software without 28 | * prior written permission. For written permission, please contact 29 | * openssl-core@OpenSSL.org. 30 | * 31 | * 5. Products derived from this software may not be called "OpenSSL" 32 | * nor may "OpenSSL" appear in their names without prior written 33 | * permission of the OpenSSL Project. 34 | * 35 | * 6. Redistributions of any form whatsoever must retain the following 36 | * acknowledgment: 37 | * "This product includes software developed by the OpenSSL Project 38 | * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" 39 | * 40 | * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY 41 | * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 42 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 43 | * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR 44 | * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 45 | * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 46 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 47 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 48 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, 49 | * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 50 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 51 | * OF THE POSSIBILITY OF SUCH DAMAGE. 52 | * ==================================================================== 53 | * 54 | * This product includes cryptographic software written by Eric Young 55 | * (eay@cryptsoft.com). This product includes software written by Tim 56 | * Hudson (tjh@cryptsoft.com). 57 | * 58 | */ 59 | 60 | #ifndef HEADER_PQUEUE_H 61 | # define HEADER_PQUEUE_H 62 | 63 | # include 64 | # include 65 | # include 66 | 67 | #ifdef __cplusplus 68 | extern "C" { 69 | #endif 70 | typedef struct _pqueue *pqueue; 71 | 72 | typedef struct _pitem { 73 | unsigned char priority[8]; /* 64-bit value in big-endian encoding */ 74 | void *data; 75 | struct _pitem *next; 76 | } pitem; 77 | 78 | typedef struct _pitem *piterator; 79 | 80 | pitem *pitem_new(unsigned char *prio64be, void *data); 81 | void pitem_free(pitem *item); 82 | 83 | pqueue pqueue_new(void); 84 | void pqueue_free(pqueue pq); 85 | 86 | pitem *pqueue_insert(pqueue pq, pitem *item); 87 | pitem *pqueue_peek(pqueue pq); 88 | pitem *pqueue_pop(pqueue pq); 89 | pitem *pqueue_find(pqueue pq, unsigned char *prio64be); 90 | pitem *pqueue_iterator(pqueue pq); 91 | pitem *pqueue_next(piterator *iter); 92 | 93 | void pqueue_print(pqueue pq); 94 | int pqueue_size(pqueue pq); 95 | 96 | #ifdef __cplusplus 97 | } 98 | #endif 99 | #endif /* ! HEADER_PQUEUE_H */ 100 | -------------------------------------------------------------------------------- /Pods/OpenSSL-Universal/macos/include/openssl/rand.h: -------------------------------------------------------------------------------- 1 | /* crypto/rand/rand.h */ 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 3 | * All rights reserved. 4 | * 5 | * This package is an SSL implementation written 6 | * by Eric Young (eay@cryptsoft.com). 7 | * The implementation was written so as to conform with Netscapes SSL. 8 | * 9 | * This library is free for commercial and non-commercial use as long as 10 | * the following conditions are aheared to. The following conditions 11 | * apply to all code found in this distribution, be it the RC4, RSA, 12 | * lhash, DES, etc., code; not just the SSL code. The SSL documentation 13 | * included with this distribution is covered by the same copyright terms 14 | * except that the holder is Tim Hudson (tjh@cryptsoft.com). 15 | * 16 | * Copyright remains Eric Young's, and as such any Copyright notices in 17 | * the code are not to be removed. 18 | * If this package is used in a product, Eric Young should be given attribution 19 | * as the author of the parts of the library used. 20 | * This can be in the form of a textual message at program startup or 21 | * in documentation (online or textual) provided with the package. 22 | * 23 | * Redistribution and use in source and binary forms, with or without 24 | * modification, are permitted provided that the following conditions 25 | * are met: 26 | * 1. Redistributions of source code must retain the copyright 27 | * notice, this list of conditions and the following disclaimer. 28 | * 2. Redistributions in binary form must reproduce the above copyright 29 | * notice, this list of conditions and the following disclaimer in the 30 | * documentation and/or other materials provided with the distribution. 31 | * 3. All advertising materials mentioning features or use of this software 32 | * must display the following acknowledgement: 33 | * "This product includes cryptographic software written by 34 | * Eric Young (eay@cryptsoft.com)" 35 | * The word 'cryptographic' can be left out if the rouines from the library 36 | * being used are not cryptographic related :-). 37 | * 4. If you include any Windows specific code (or a derivative thereof) from 38 | * the apps directory (application code) you must include an acknowledgement: 39 | * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" 40 | * 41 | * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND 42 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 43 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 44 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 45 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 46 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 47 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 48 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 49 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 50 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 51 | * SUCH DAMAGE. 52 | * 53 | * The licence and distribution terms for any publically available version or 54 | * derivative of this code cannot be changed. i.e. this code cannot simply be 55 | * copied and put under another distribution licence 56 | * [including the GNU Public Licence.] 57 | */ 58 | 59 | #ifndef HEADER_RAND_H 60 | # define HEADER_RAND_H 61 | 62 | # include 63 | # include 64 | # include 65 | 66 | # if defined(OPENSSL_SYS_WINDOWS) 67 | # include 68 | # endif 69 | 70 | #ifdef __cplusplus 71 | extern "C" { 72 | #endif 73 | 74 | # if defined(OPENSSL_FIPS) 75 | # define FIPS_RAND_SIZE_T size_t 76 | # endif 77 | 78 | /* Already defined in ossl_typ.h */ 79 | /* typedef struct rand_meth_st RAND_METHOD; */ 80 | 81 | struct rand_meth_st { 82 | void (*seed) (const void *buf, int num); 83 | int (*bytes) (unsigned char *buf, int num); 84 | void (*cleanup) (void); 85 | void (*add) (const void *buf, int num, double entropy); 86 | int (*pseudorand) (unsigned char *buf, int num); 87 | int (*status) (void); 88 | }; 89 | 90 | # ifdef BN_DEBUG 91 | extern int rand_predictable; 92 | # endif 93 | 94 | int RAND_set_rand_method(const RAND_METHOD *meth); 95 | const RAND_METHOD *RAND_get_rand_method(void); 96 | # ifndef OPENSSL_NO_ENGINE 97 | int RAND_set_rand_engine(ENGINE *engine); 98 | # endif 99 | RAND_METHOD *RAND_SSLeay(void); 100 | void RAND_cleanup(void); 101 | int RAND_bytes(unsigned char *buf, int num); 102 | int RAND_pseudo_bytes(unsigned char *buf, int num); 103 | void RAND_seed(const void *buf, int num); 104 | void RAND_add(const void *buf, int num, double entropy); 105 | int RAND_load_file(const char *file, long max_bytes); 106 | int RAND_write_file(const char *file); 107 | const char *RAND_file_name(char *file, size_t num); 108 | int RAND_status(void); 109 | int RAND_query_egd_bytes(const char *path, unsigned char *buf, int bytes); 110 | int RAND_egd(const char *path); 111 | int RAND_egd_bytes(const char *path, int bytes); 112 | int RAND_poll(void); 113 | 114 | # if defined(OPENSSL_SYS_WINDOWS) || defined(OPENSSL_SYS_WIN32) 115 | 116 | void RAND_screen(void); 117 | int RAND_event(UINT, WPARAM, LPARAM); 118 | 119 | # endif 120 | 121 | # ifdef OPENSSL_FIPS 122 | void RAND_set_fips_drbg_type(int type, int flags); 123 | int RAND_init_fips(void); 124 | # endif 125 | 126 | /* BEGIN ERROR CODES */ 127 | /* 128 | * The following lines are auto generated by the script mkerr.pl. Any changes 129 | * made after this point may be overwritten when the script is next run. 130 | */ 131 | void ERR_load_RAND_strings(void); 132 | 133 | /* Error codes for the RAND functions. */ 134 | 135 | /* Function codes. */ 136 | # define RAND_F_RAND_GET_RAND_METHOD 101 137 | # define RAND_F_RAND_INIT_FIPS 102 138 | # define RAND_F_SSLEAY_RAND_BYTES 100 139 | 140 | /* Reason codes. */ 141 | # define RAND_R_DUAL_EC_DRBG_DISABLED 104 142 | # define RAND_R_ERROR_INITIALISING_DRBG 102 143 | # define RAND_R_ERROR_INSTANTIATING_DRBG 103 144 | # define RAND_R_NO_FIPS_RANDOM_METHOD_SET 101 145 | # define RAND_R_PRNG_NOT_SEEDED 100 146 | 147 | #ifdef __cplusplus 148 | } 149 | #endif 150 | #endif 151 | -------------------------------------------------------------------------------- /Pods/OpenSSL-Universal/macos/include/openssl/rc2.h: -------------------------------------------------------------------------------- 1 | /* crypto/rc2/rc2.h */ 2 | /* Copyright (C) 1995-1997 Eric Young (eay@cryptsoft.com) 3 | * All rights reserved. 4 | * 5 | * This package is an SSL implementation written 6 | * by Eric Young (eay@cryptsoft.com). 7 | * The implementation was written so as to conform with Netscapes SSL. 8 | * 9 | * This library is free for commercial and non-commercial use as long as 10 | * the following conditions are aheared to. The following conditions 11 | * apply to all code found in this distribution, be it the RC4, RSA, 12 | * lhash, DES, etc., code; not just the SSL code. The SSL documentation 13 | * included with this distribution is covered by the same copyright terms 14 | * except that the holder is Tim Hudson (tjh@cryptsoft.com). 15 | * 16 | * Copyright remains Eric Young's, and as such any Copyright notices in 17 | * the code are not to be removed. 18 | * If this package is used in a product, Eric Young should be given attribution 19 | * as the author of the parts of the library used. 20 | * This can be in the form of a textual message at program startup or 21 | * in documentation (online or textual) provided with the package. 22 | * 23 | * Redistribution and use in source and binary forms, with or without 24 | * modification, are permitted provided that the following conditions 25 | * are met: 26 | * 1. Redistributions of source code must retain the copyright 27 | * notice, this list of conditions and the following disclaimer. 28 | * 2. Redistributions in binary form must reproduce the above copyright 29 | * notice, this list of conditions and the following disclaimer in the 30 | * documentation and/or other materials provided with the distribution. 31 | * 3. All advertising materials mentioning features or use of this software 32 | * must display the following acknowledgement: 33 | * "This product includes cryptographic software written by 34 | * Eric Young (eay@cryptsoft.com)" 35 | * The word 'cryptographic' can be left out if the rouines from the library 36 | * being used are not cryptographic related :-). 37 | * 4. If you include any Windows specific code (or a derivative thereof) from 38 | * the apps directory (application code) you must include an acknowledgement: 39 | * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" 40 | * 41 | * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND 42 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 43 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 44 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 45 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 46 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 47 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 48 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 49 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 50 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 51 | * SUCH DAMAGE. 52 | * 53 | * The licence and distribution terms for any publically available version or 54 | * derivative of this code cannot be changed. i.e. this code cannot simply be 55 | * copied and put under another distribution licence 56 | * [including the GNU Public Licence.] 57 | */ 58 | 59 | #ifndef HEADER_RC2_H 60 | # define HEADER_RC2_H 61 | 62 | # include /* OPENSSL_NO_RC2, RC2_INT */ 63 | # ifdef OPENSSL_NO_RC2 64 | # error RC2 is disabled. 65 | # endif 66 | 67 | # define RC2_ENCRYPT 1 68 | # define RC2_DECRYPT 0 69 | 70 | # define RC2_BLOCK 8 71 | # define RC2_KEY_LENGTH 16 72 | 73 | #ifdef __cplusplus 74 | extern "C" { 75 | #endif 76 | 77 | typedef struct rc2_key_st { 78 | RC2_INT data[64]; 79 | } RC2_KEY; 80 | 81 | # ifdef OPENSSL_FIPS 82 | void private_RC2_set_key(RC2_KEY *key, int len, const unsigned char *data, 83 | int bits); 84 | # endif 85 | void RC2_set_key(RC2_KEY *key, int len, const unsigned char *data, int bits); 86 | void RC2_ecb_encrypt(const unsigned char *in, unsigned char *out, 87 | RC2_KEY *key, int enc); 88 | void RC2_encrypt(unsigned long *data, RC2_KEY *key); 89 | void RC2_decrypt(unsigned long *data, RC2_KEY *key); 90 | void RC2_cbc_encrypt(const unsigned char *in, unsigned char *out, long length, 91 | RC2_KEY *ks, unsigned char *iv, int enc); 92 | void RC2_cfb64_encrypt(const unsigned char *in, unsigned char *out, 93 | long length, RC2_KEY *schedule, unsigned char *ivec, 94 | int *num, int enc); 95 | void RC2_ofb64_encrypt(const unsigned char *in, unsigned char *out, 96 | long length, RC2_KEY *schedule, unsigned char *ivec, 97 | int *num); 98 | 99 | #ifdef __cplusplus 100 | } 101 | #endif 102 | 103 | #endif 104 | -------------------------------------------------------------------------------- /Pods/OpenSSL-Universal/macos/include/openssl/rc4.h: -------------------------------------------------------------------------------- 1 | /* crypto/rc4/rc4.h */ 2 | /* Copyright (C) 1995-1997 Eric Young (eay@cryptsoft.com) 3 | * All rights reserved. 4 | * 5 | * This package is an SSL implementation written 6 | * by Eric Young (eay@cryptsoft.com). 7 | * The implementation was written so as to conform with Netscapes SSL. 8 | * 9 | * This library is free for commercial and non-commercial use as long as 10 | * the following conditions are aheared to. The following conditions 11 | * apply to all code found in this distribution, be it the RC4, RSA, 12 | * lhash, DES, etc., code; not just the SSL code. The SSL documentation 13 | * included with this distribution is covered by the same copyright terms 14 | * except that the holder is Tim Hudson (tjh@cryptsoft.com). 15 | * 16 | * Copyright remains Eric Young's, and as such any Copyright notices in 17 | * the code are not to be removed. 18 | * If this package is used in a product, Eric Young should be given attribution 19 | * as the author of the parts of the library used. 20 | * This can be in the form of a textual message at program startup or 21 | * in documentation (online or textual) provided with the package. 22 | * 23 | * Redistribution and use in source and binary forms, with or without 24 | * modification, are permitted provided that the following conditions 25 | * are met: 26 | * 1. Redistributions of source code must retain the copyright 27 | * notice, this list of conditions and the following disclaimer. 28 | * 2. Redistributions in binary form must reproduce the above copyright 29 | * notice, this list of conditions and the following disclaimer in the 30 | * documentation and/or other materials provided with the distribution. 31 | * 3. All advertising materials mentioning features or use of this software 32 | * must display the following acknowledgement: 33 | * "This product includes cryptographic software written by 34 | * Eric Young (eay@cryptsoft.com)" 35 | * The word 'cryptographic' can be left out if the rouines from the library 36 | * being used are not cryptographic related :-). 37 | * 4. If you include any Windows specific code (or a derivative thereof) from 38 | * the apps directory (application code) you must include an acknowledgement: 39 | * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" 40 | * 41 | * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND 42 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 43 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 44 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 45 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 46 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 47 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 48 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 49 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 50 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 51 | * SUCH DAMAGE. 52 | * 53 | * The licence and distribution terms for any publically available version or 54 | * derivative of this code cannot be changed. i.e. this code cannot simply be 55 | * copied and put under another distribution licence 56 | * [including the GNU Public Licence.] 57 | */ 58 | 59 | #ifndef HEADER_RC4_H 60 | # define HEADER_RC4_H 61 | 62 | # include /* OPENSSL_NO_RC4, RC4_INT */ 63 | # ifdef OPENSSL_NO_RC4 64 | # error RC4 is disabled. 65 | # endif 66 | 67 | # include 68 | 69 | #ifdef __cplusplus 70 | extern "C" { 71 | #endif 72 | 73 | typedef struct rc4_key_st { 74 | RC4_INT x, y; 75 | RC4_INT data[256]; 76 | } RC4_KEY; 77 | 78 | const char *RC4_options(void); 79 | void RC4_set_key(RC4_KEY *key, int len, const unsigned char *data); 80 | void private_RC4_set_key(RC4_KEY *key, int len, const unsigned char *data); 81 | void RC4(RC4_KEY *key, size_t len, const unsigned char *indata, 82 | unsigned char *outdata); 83 | 84 | #ifdef __cplusplus 85 | } 86 | #endif 87 | 88 | #endif 89 | -------------------------------------------------------------------------------- /Pods/OpenSSL-Universal/macos/include/openssl/ripemd.h: -------------------------------------------------------------------------------- 1 | /* crypto/ripemd/ripemd.h */ 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 3 | * All rights reserved. 4 | * 5 | * This package is an SSL implementation written 6 | * by Eric Young (eay@cryptsoft.com). 7 | * The implementation was written so as to conform with Netscapes SSL. 8 | * 9 | * This library is free for commercial and non-commercial use as long as 10 | * the following conditions are aheared to. The following conditions 11 | * apply to all code found in this distribution, be it the RC4, RSA, 12 | * lhash, DES, etc., code; not just the SSL code. The SSL documentation 13 | * included with this distribution is covered by the same copyright terms 14 | * except that the holder is Tim Hudson (tjh@cryptsoft.com). 15 | * 16 | * Copyright remains Eric Young's, and as such any Copyright notices in 17 | * the code are not to be removed. 18 | * If this package is used in a product, Eric Young should be given attribution 19 | * as the author of the parts of the library used. 20 | * This can be in the form of a textual message at program startup or 21 | * in documentation (online or textual) provided with the package. 22 | * 23 | * Redistribution and use in source and binary forms, with or without 24 | * modification, are permitted provided that the following conditions 25 | * are met: 26 | * 1. Redistributions of source code must retain the copyright 27 | * notice, this list of conditions and the following disclaimer. 28 | * 2. Redistributions in binary form must reproduce the above copyright 29 | * notice, this list of conditions and the following disclaimer in the 30 | * documentation and/or other materials provided with the distribution. 31 | * 3. All advertising materials mentioning features or use of this software 32 | * must display the following acknowledgement: 33 | * "This product includes cryptographic software written by 34 | * Eric Young (eay@cryptsoft.com)" 35 | * The word 'cryptographic' can be left out if the rouines from the library 36 | * being used are not cryptographic related :-). 37 | * 4. If you include any Windows specific code (or a derivative thereof) from 38 | * the apps directory (application code) you must include an acknowledgement: 39 | * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" 40 | * 41 | * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND 42 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 43 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 44 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 45 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 46 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 47 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 48 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 49 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 50 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 51 | * SUCH DAMAGE. 52 | * 53 | * The licence and distribution terms for any publically available version or 54 | * derivative of this code cannot be changed. i.e. this code cannot simply be 55 | * copied and put under another distribution licence 56 | * [including the GNU Public Licence.] 57 | */ 58 | 59 | #ifndef HEADER_RIPEMD_H 60 | # define HEADER_RIPEMD_H 61 | 62 | # include 63 | # include 64 | 65 | #ifdef __cplusplus 66 | extern "C" { 67 | #endif 68 | 69 | # ifdef OPENSSL_NO_RIPEMD 70 | # error RIPEMD is disabled. 71 | # endif 72 | 73 | # if defined(__LP32__) 74 | # define RIPEMD160_LONG unsigned long 75 | # elif defined(OPENSSL_SYS_CRAY) || defined(__ILP64__) 76 | # define RIPEMD160_LONG unsigned long 77 | # define RIPEMD160_LONG_LOG2 3 78 | # else 79 | # define RIPEMD160_LONG unsigned int 80 | # endif 81 | 82 | # define RIPEMD160_CBLOCK 64 83 | # define RIPEMD160_LBLOCK (RIPEMD160_CBLOCK/4) 84 | # define RIPEMD160_DIGEST_LENGTH 20 85 | 86 | typedef struct RIPEMD160state_st { 87 | RIPEMD160_LONG A, B, C, D, E; 88 | RIPEMD160_LONG Nl, Nh; 89 | RIPEMD160_LONG data[RIPEMD160_LBLOCK]; 90 | unsigned int num; 91 | } RIPEMD160_CTX; 92 | 93 | # ifdef OPENSSL_FIPS 94 | int private_RIPEMD160_Init(RIPEMD160_CTX *c); 95 | # endif 96 | int RIPEMD160_Init(RIPEMD160_CTX *c); 97 | int RIPEMD160_Update(RIPEMD160_CTX *c, const void *data, size_t len); 98 | int RIPEMD160_Final(unsigned char *md, RIPEMD160_CTX *c); 99 | unsigned char *RIPEMD160(const unsigned char *d, size_t n, unsigned char *md); 100 | void RIPEMD160_Transform(RIPEMD160_CTX *c, const unsigned char *b); 101 | #ifdef __cplusplus 102 | } 103 | #endif 104 | 105 | #endif 106 | -------------------------------------------------------------------------------- /Pods/OpenSSL-Universal/macos/include/openssl/seed.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2007 KISA(Korea Information Security Agency). All rights reserved. 3 | * 4 | * Redistribution and use in source and binary forms, with or without 5 | * modification, are permitted provided that the following conditions 6 | * are met: 7 | * 1. Redistributions of source code must retain the above copyright 8 | * notice, this list of conditions and the following disclaimer. 9 | * 2. Neither the name of author nor the names of its contributors may 10 | * be used to endorse or promote products derived from this software 11 | * without specific prior written permission. 12 | * 13 | * THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS ``AS IS'' AND 14 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 15 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 16 | * ARE DISCLAIMED. IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE 17 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 18 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 19 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 20 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 21 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 22 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 23 | * SUCH DAMAGE. 24 | * 25 | */ 26 | /* ==================================================================== 27 | * Copyright (c) 1998-2007 The OpenSSL Project. All rights reserved. 28 | * 29 | * Redistribution and use in source and binary forms, with or without 30 | * modification, are permitted provided that the following conditions 31 | * are met: 32 | * 33 | * 1. Redistributions of source code must retain the above copyright 34 | * notice, this list of conditions and the following disclaimer. 35 | * 36 | * 2. Redistributions in binary form must reproduce the above copyright 37 | * notice, this list of conditions and the following disclaimer in 38 | * the documentation and/or other materials provided with the 39 | * distribution. 40 | * 41 | * 3. All advertising materials mentioning features or use of this 42 | * software must display the following acknowledgment: 43 | * "This product includes software developed by the OpenSSL Project 44 | * for use in the OpenSSL Toolkit. (http://www.openssl.org/)" 45 | * 46 | * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to 47 | * endorse or promote products derived from this software without 48 | * prior written permission. For written permission, please contact 49 | * openssl-core@openssl.org. 50 | * 51 | * 5. Products derived from this software may not be called "OpenSSL" 52 | * nor may "OpenSSL" appear in their names without prior written 53 | * permission of the OpenSSL Project. 54 | * 55 | * 6. Redistributions of any form whatsoever must retain the following 56 | * acknowledgment: 57 | * "This product includes software developed by the OpenSSL Project 58 | * for use in the OpenSSL Toolkit (http://www.openssl.org/)" 59 | * 60 | * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY 61 | * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 62 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 63 | * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR 64 | * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 65 | * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 66 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 67 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 68 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, 69 | * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 70 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 71 | * OF THE POSSIBILITY OF SUCH DAMAGE. 72 | * ==================================================================== 73 | * 74 | * This product includes cryptographic software written by Eric Young 75 | * (eay@cryptsoft.com). This product includes software written by Tim 76 | * Hudson (tjh@cryptsoft.com). 77 | * 78 | */ 79 | 80 | #ifndef HEADER_SEED_H 81 | # define HEADER_SEED_H 82 | 83 | # include 84 | # include 85 | # include 86 | 87 | # ifdef OPENSSL_NO_SEED 88 | # error SEED is disabled. 89 | # endif 90 | 91 | /* look whether we need 'long' to get 32 bits */ 92 | # ifdef AES_LONG 93 | # ifndef SEED_LONG 94 | # define SEED_LONG 1 95 | # endif 96 | # endif 97 | 98 | # if !defined(NO_SYS_TYPES_H) 99 | # include 100 | # endif 101 | 102 | # define SEED_BLOCK_SIZE 16 103 | # define SEED_KEY_LENGTH 16 104 | 105 | 106 | #ifdef __cplusplus 107 | extern "C" { 108 | #endif 109 | 110 | typedef struct seed_key_st { 111 | # ifdef SEED_LONG 112 | unsigned long data[32]; 113 | # else 114 | unsigned int data[32]; 115 | # endif 116 | } SEED_KEY_SCHEDULE; 117 | 118 | # ifdef OPENSSL_FIPS 119 | void private_SEED_set_key(const unsigned char rawkey[SEED_KEY_LENGTH], 120 | SEED_KEY_SCHEDULE *ks); 121 | # endif 122 | void SEED_set_key(const unsigned char rawkey[SEED_KEY_LENGTH], 123 | SEED_KEY_SCHEDULE *ks); 124 | 125 | void SEED_encrypt(const unsigned char s[SEED_BLOCK_SIZE], 126 | unsigned char d[SEED_BLOCK_SIZE], 127 | const SEED_KEY_SCHEDULE *ks); 128 | void SEED_decrypt(const unsigned char s[SEED_BLOCK_SIZE], 129 | unsigned char d[SEED_BLOCK_SIZE], 130 | const SEED_KEY_SCHEDULE *ks); 131 | 132 | void SEED_ecb_encrypt(const unsigned char *in, unsigned char *out, 133 | const SEED_KEY_SCHEDULE *ks, int enc); 134 | void SEED_cbc_encrypt(const unsigned char *in, unsigned char *out, size_t len, 135 | const SEED_KEY_SCHEDULE *ks, 136 | unsigned char ivec[SEED_BLOCK_SIZE], int enc); 137 | void SEED_cfb128_encrypt(const unsigned char *in, unsigned char *out, 138 | size_t len, const SEED_KEY_SCHEDULE *ks, 139 | unsigned char ivec[SEED_BLOCK_SIZE], int *num, 140 | int enc); 141 | void SEED_ofb128_encrypt(const unsigned char *in, unsigned char *out, 142 | size_t len, const SEED_KEY_SCHEDULE *ks, 143 | unsigned char ivec[SEED_BLOCK_SIZE], int *num); 144 | 145 | #ifdef __cplusplus 146 | } 147 | #endif 148 | 149 | #endif /* HEADER_SEED_H */ 150 | -------------------------------------------------------------------------------- /Pods/OpenSSL-Universal/macos/include/openssl/shim.h: -------------------------------------------------------------------------------- 1 | #ifndef OpenSSLShim_h 2 | #define OpenSSLShim_h 3 | 4 | #include 5 | #include 6 | #include 7 | #include 8 | #include 9 | #include 10 | 11 | // Initialize OpenSSL 12 | static inline void OpenSSL_SSL_init(void) { 13 | SSL_library_init(); 14 | SSL_load_error_strings(); 15 | OPENSSL_config(NULL); 16 | OpenSSL_add_all_ciphers(); 17 | OPENSSL_add_all_algorithms_noconf(); 18 | } 19 | 20 | static inline void EVP_PKEY_assign_wrapper(EVP_PKEY *pkey, RSA *rsakey) { 21 | EVP_PKEY_assign(pkey, EVP_PKEY_RSA, rsakey); 22 | } 23 | 24 | static inline STACK_OF(CMS_SignerInfo) *STACK_CMS_SignerInfo_new_null() { 25 | return SKM_sk_new_null(CMS_SignerInfo); 26 | } 27 | 28 | static inline void STACK_CMS_SignerInfo_free(STACK_OF(CMS_SignerInfo) *stack) { 29 | SKM_sk_free(CMS_SignerInfo, stack); 30 | } 31 | 32 | static inline int STACK_CMS_SignerInfo_push(STACK_OF(CMS_SignerInfo) *stack, void *data) { 33 | return SKM_sk_push(CMS_SignerInfo, stack, data); 34 | } 35 | 36 | static inline void *STACK_CMS_SignerInfo_pop(STACK_OF(CMS_SignerInfo) *stack) { 37 | return SKM_sk_pop(CMS_SignerInfo, stack); 38 | } 39 | 40 | static inline STACK_OF(X509) *STACK_X509_new_null() { 41 | return SKM_sk_new_null(X509); 42 | } 43 | 44 | static inline void STACK_X509_free(STACK_OF(X509) *stack) { 45 | SKM_sk_free(X509, stack); 46 | } 47 | 48 | static inline int STACK_X509_push(STACK_OF(X509) *stack, void *data) { 49 | return SKM_sk_push(X509, stack, data); 50 | } 51 | 52 | static inline void *STACK_X509_pop(STACK_OF(X509) *stack) { 53 | return SKM_sk_pop(X509, stack); 54 | } 55 | 56 | static inline STACK_OF(X509) *STACK_X509_dup(STACK_OF(X509) *stack) { 57 | return SKM_sk_dup(X509, stack); 58 | } 59 | 60 | static inline int STACK_X509_num(STACK_OF(X509) *stack) { 61 | return SKM_sk_num(X509, stack); 62 | } 63 | 64 | static inline int STACK_X509_find(STACK_OF(X509) *stack, void *data) { 65 | return SKM_sk_find(X509, stack, data); 66 | } 67 | 68 | static inline void STACK_X509_zero(STACK_OF(X509) *stack) { 69 | SKM_sk_zero(X509, stack); 70 | } 71 | 72 | 73 | #endif 74 | -------------------------------------------------------------------------------- /Pods/OpenSSL-Universal/macos/include/openssl/srp.h: -------------------------------------------------------------------------------- 1 | /* crypto/srp/srp.h */ 2 | /* 3 | * Written by Christophe Renou (christophe.renou@edelweb.fr) with the 4 | * precious help of Peter Sylvester (peter.sylvester@edelweb.fr) for the 5 | * EdelKey project and contributed to the OpenSSL project 2004. 6 | */ 7 | /* ==================================================================== 8 | * Copyright (c) 2004 The OpenSSL Project. All rights reserved. 9 | * 10 | * Redistribution and use in source and binary forms, with or without 11 | * modification, are permitted provided that the following conditions 12 | * are met: 13 | * 14 | * 1. Redistributions of source code must retain the above copyright 15 | * notice, this list of conditions and the following disclaimer. 16 | * 17 | * 2. Redistributions in binary form must reproduce the above copyright 18 | * notice, this list of conditions and the following disclaimer in 19 | * the documentation and/or other materials provided with the 20 | * distribution. 21 | * 22 | * 3. All advertising materials mentioning features or use of this 23 | * software must display the following acknowledgment: 24 | * "This product includes software developed by the OpenSSL Project 25 | * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" 26 | * 27 | * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to 28 | * endorse or promote products derived from this software without 29 | * prior written permission. For written permission, please contact 30 | * licensing@OpenSSL.org. 31 | * 32 | * 5. Products derived from this software may not be called "OpenSSL" 33 | * nor may "OpenSSL" appear in their names without prior written 34 | * permission of the OpenSSL Project. 35 | * 36 | * 6. Redistributions of any form whatsoever must retain the following 37 | * acknowledgment: 38 | * "This product includes software developed by the OpenSSL Project 39 | * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" 40 | * 41 | * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY 42 | * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 43 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 44 | * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR 45 | * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 46 | * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 47 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 48 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 49 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, 50 | * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 51 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 52 | * OF THE POSSIBILITY OF SUCH DAMAGE. 53 | * ==================================================================== 54 | * 55 | * This product includes cryptographic software written by Eric Young 56 | * (eay@cryptsoft.com). This product includes software written by Tim 57 | * Hudson (tjh@cryptsoft.com). 58 | * 59 | */ 60 | #ifndef __SRP_H__ 61 | # define __SRP_H__ 62 | 63 | # ifndef OPENSSL_NO_SRP 64 | 65 | # include 66 | # include 67 | 68 | #ifdef __cplusplus 69 | extern "C" { 70 | #endif 71 | 72 | # include 73 | # include 74 | # include 75 | 76 | typedef struct SRP_gN_cache_st { 77 | char *b64_bn; 78 | BIGNUM *bn; 79 | } SRP_gN_cache; 80 | 81 | 82 | DECLARE_STACK_OF(SRP_gN_cache) 83 | 84 | typedef struct SRP_user_pwd_st { 85 | /* Owned by us. */ 86 | char *id; 87 | BIGNUM *s; 88 | BIGNUM *v; 89 | /* Not owned by us. */ 90 | const BIGNUM *g; 91 | const BIGNUM *N; 92 | /* Owned by us. */ 93 | char *info; 94 | } SRP_user_pwd; 95 | 96 | DECLARE_STACK_OF(SRP_user_pwd) 97 | 98 | void SRP_user_pwd_free(SRP_user_pwd *user_pwd); 99 | 100 | typedef struct SRP_VBASE_st { 101 | STACK_OF(SRP_user_pwd) *users_pwd; 102 | STACK_OF(SRP_gN_cache) *gN_cache; 103 | /* to simulate a user */ 104 | char *seed_key; 105 | BIGNUM *default_g; 106 | BIGNUM *default_N; 107 | } SRP_VBASE; 108 | 109 | /* 110 | * Structure interne pour retenir les couples N et g 111 | */ 112 | typedef struct SRP_gN_st { 113 | char *id; 114 | BIGNUM *g; 115 | BIGNUM *N; 116 | } SRP_gN; 117 | 118 | DECLARE_STACK_OF(SRP_gN) 119 | 120 | SRP_VBASE *SRP_VBASE_new(char *seed_key); 121 | int SRP_VBASE_free(SRP_VBASE *vb); 122 | int SRP_VBASE_init(SRP_VBASE *vb, char *verifier_file); 123 | 124 | /* This method ignores the configured seed and fails for an unknown user. */ 125 | SRP_user_pwd *SRP_VBASE_get_by_user(SRP_VBASE *vb, char *username); 126 | /* NOTE: unlike in SRP_VBASE_get_by_user, caller owns the returned pointer.*/ 127 | SRP_user_pwd *SRP_VBASE_get1_by_user(SRP_VBASE *vb, char *username); 128 | 129 | char *SRP_create_verifier(const char *user, const char *pass, char **salt, 130 | char **verifier, const char *N, const char *g); 131 | int SRP_create_verifier_BN(const char *user, const char *pass, BIGNUM **salt, 132 | BIGNUM **verifier, BIGNUM *N, BIGNUM *g); 133 | 134 | # define SRP_NO_ERROR 0 135 | # define SRP_ERR_VBASE_INCOMPLETE_FILE 1 136 | # define SRP_ERR_VBASE_BN_LIB 2 137 | # define SRP_ERR_OPEN_FILE 3 138 | # define SRP_ERR_MEMORY 4 139 | 140 | # define DB_srptype 0 141 | # define DB_srpverifier 1 142 | # define DB_srpsalt 2 143 | # define DB_srpid 3 144 | # define DB_srpgN 4 145 | # define DB_srpinfo 5 146 | # undef DB_NUMBER 147 | # define DB_NUMBER 6 148 | 149 | # define DB_SRP_INDEX 'I' 150 | # define DB_SRP_VALID 'V' 151 | # define DB_SRP_REVOKED 'R' 152 | # define DB_SRP_MODIF 'v' 153 | 154 | /* see srp.c */ 155 | char *SRP_check_known_gN_param(BIGNUM *g, BIGNUM *N); 156 | SRP_gN *SRP_get_default_gN(const char *id); 157 | 158 | /* server side .... */ 159 | BIGNUM *SRP_Calc_server_key(BIGNUM *A, BIGNUM *v, BIGNUM *u, BIGNUM *b, 160 | BIGNUM *N); 161 | BIGNUM *SRP_Calc_B(BIGNUM *b, BIGNUM *N, BIGNUM *g, BIGNUM *v); 162 | int SRP_Verify_A_mod_N(BIGNUM *A, BIGNUM *N); 163 | BIGNUM *SRP_Calc_u(BIGNUM *A, BIGNUM *B, BIGNUM *N); 164 | 165 | /* client side .... */ 166 | BIGNUM *SRP_Calc_x(BIGNUM *s, const char *user, const char *pass); 167 | BIGNUM *SRP_Calc_A(BIGNUM *a, BIGNUM *N, BIGNUM *g); 168 | BIGNUM *SRP_Calc_client_key(BIGNUM *N, BIGNUM *B, BIGNUM *g, BIGNUM *x, 169 | BIGNUM *a, BIGNUM *u); 170 | int SRP_Verify_B_mod_N(BIGNUM *B, BIGNUM *N); 171 | 172 | # define SRP_MINIMAL_N 1024 173 | 174 | #ifdef __cplusplus 175 | } 176 | #endif 177 | 178 | # endif 179 | #endif 180 | -------------------------------------------------------------------------------- /Pods/OpenSSL-Universal/macos/include/openssl/ssl23.h: -------------------------------------------------------------------------------- 1 | /* ssl/ssl23.h */ 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 3 | * All rights reserved. 4 | * 5 | * This package is an SSL implementation written 6 | * by Eric Young (eay@cryptsoft.com). 7 | * The implementation was written so as to conform with Netscapes SSL. 8 | * 9 | * This library is free for commercial and non-commercial use as long as 10 | * the following conditions are aheared to. The following conditions 11 | * apply to all code found in this distribution, be it the RC4, RSA, 12 | * lhash, DES, etc., code; not just the SSL code. The SSL documentation 13 | * included with this distribution is covered by the same copyright terms 14 | * except that the holder is Tim Hudson (tjh@cryptsoft.com). 15 | * 16 | * Copyright remains Eric Young's, and as such any Copyright notices in 17 | * the code are not to be removed. 18 | * If this package is used in a product, Eric Young should be given attribution 19 | * as the author of the parts of the library used. 20 | * This can be in the form of a textual message at program startup or 21 | * in documentation (online or textual) provided with the package. 22 | * 23 | * Redistribution and use in source and binary forms, with or without 24 | * modification, are permitted provided that the following conditions 25 | * are met: 26 | * 1. Redistributions of source code must retain the copyright 27 | * notice, this list of conditions and the following disclaimer. 28 | * 2. Redistributions in binary form must reproduce the above copyright 29 | * notice, this list of conditions and the following disclaimer in the 30 | * documentation and/or other materials provided with the distribution. 31 | * 3. All advertising materials mentioning features or use of this software 32 | * must display the following acknowledgement: 33 | * "This product includes cryptographic software written by 34 | * Eric Young (eay@cryptsoft.com)" 35 | * The word 'cryptographic' can be left out if the rouines from the library 36 | * being used are not cryptographic related :-). 37 | * 4. If you include any Windows specific code (or a derivative thereof) from 38 | * the apps directory (application code) you must include an acknowledgement: 39 | * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" 40 | * 41 | * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND 42 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 43 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 44 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 45 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 46 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 47 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 48 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 49 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 50 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 51 | * SUCH DAMAGE. 52 | * 53 | * The licence and distribution terms for any publically available version or 54 | * derivative of this code cannot be changed. i.e. this code cannot simply be 55 | * copied and put under another distribution licence 56 | * [including the GNU Public Licence.] 57 | */ 58 | 59 | #ifndef HEADER_SSL23_H 60 | # define HEADER_SSL23_H 61 | 62 | #ifdef __cplusplus 63 | extern "C" { 64 | #endif 65 | 66 | /* 67 | * client 68 | */ 69 | /* write to server */ 70 | # define SSL23_ST_CW_CLNT_HELLO_A (0x210|SSL_ST_CONNECT) 71 | # define SSL23_ST_CW_CLNT_HELLO_B (0x211|SSL_ST_CONNECT) 72 | /* read from server */ 73 | # define SSL23_ST_CR_SRVR_HELLO_A (0x220|SSL_ST_CONNECT) 74 | # define SSL23_ST_CR_SRVR_HELLO_B (0x221|SSL_ST_CONNECT) 75 | 76 | /* server */ 77 | /* read from client */ 78 | # define SSL23_ST_SR_CLNT_HELLO_A (0x210|SSL_ST_ACCEPT) 79 | # define SSL23_ST_SR_CLNT_HELLO_B (0x211|SSL_ST_ACCEPT) 80 | 81 | #ifdef __cplusplus 82 | } 83 | #endif 84 | #endif 85 | -------------------------------------------------------------------------------- /Pods/OpenSSL-Universal/macos/include/openssl/stack.h: -------------------------------------------------------------------------------- 1 | /* crypto/stack/stack.h */ 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 3 | * All rights reserved. 4 | * 5 | * This package is an SSL implementation written 6 | * by Eric Young (eay@cryptsoft.com). 7 | * The implementation was written so as to conform with Netscapes SSL. 8 | * 9 | * This library is free for commercial and non-commercial use as long as 10 | * the following conditions are aheared to. The following conditions 11 | * apply to all code found in this distribution, be it the RC4, RSA, 12 | * lhash, DES, etc., code; not just the SSL code. The SSL documentation 13 | * included with this distribution is covered by the same copyright terms 14 | * except that the holder is Tim Hudson (tjh@cryptsoft.com). 15 | * 16 | * Copyright remains Eric Young's, and as such any Copyright notices in 17 | * the code are not to be removed. 18 | * If this package is used in a product, Eric Young should be given attribution 19 | * as the author of the parts of the library used. 20 | * This can be in the form of a textual message at program startup or 21 | * in documentation (online or textual) provided with the package. 22 | * 23 | * Redistribution and use in source and binary forms, with or without 24 | * modification, are permitted provided that the following conditions 25 | * are met: 26 | * 1. Redistributions of source code must retain the copyright 27 | * notice, this list of conditions and the following disclaimer. 28 | * 2. Redistributions in binary form must reproduce the above copyright 29 | * notice, this list of conditions and the following disclaimer in the 30 | * documentation and/or other materials provided with the distribution. 31 | * 3. All advertising materials mentioning features or use of this software 32 | * must display the following acknowledgement: 33 | * "This product includes cryptographic software written by 34 | * Eric Young (eay@cryptsoft.com)" 35 | * The word 'cryptographic' can be left out if the rouines from the library 36 | * being used are not cryptographic related :-). 37 | * 4. If you include any Windows specific code (or a derivative thereof) from 38 | * the apps directory (application code) you must include an acknowledgement: 39 | * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" 40 | * 41 | * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND 42 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 43 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 44 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 45 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 46 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 47 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 48 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 49 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 50 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 51 | * SUCH DAMAGE. 52 | * 53 | * The licence and distribution terms for any publically available version or 54 | * derivative of this code cannot be changed. i.e. this code cannot simply be 55 | * copied and put under another distribution licence 56 | * [including the GNU Public Licence.] 57 | */ 58 | 59 | #ifndef HEADER_STACK_H 60 | # define HEADER_STACK_H 61 | 62 | #ifdef __cplusplus 63 | extern "C" { 64 | #endif 65 | 66 | typedef struct stack_st { 67 | int num; 68 | char **data; 69 | int sorted; 70 | int num_alloc; 71 | int (*comp) (const void *, const void *); 72 | } _STACK; /* Use STACK_OF(...) instead */ 73 | 74 | # define M_sk_num(sk) ((sk) ? (sk)->num:-1) 75 | # define M_sk_value(sk,n) ((sk) ? (sk)->data[n] : NULL) 76 | 77 | int sk_num(const _STACK *); 78 | void *sk_value(const _STACK *, int); 79 | 80 | void *sk_set(_STACK *, int, void *); 81 | 82 | _STACK *sk_new(int (*cmp) (const void *, const void *)); 83 | _STACK *sk_new_null(void); 84 | void sk_free(_STACK *); 85 | void sk_pop_free(_STACK *st, void (*func) (void *)); 86 | _STACK *sk_deep_copy(_STACK *, void *(*)(void *), void (*)(void *)); 87 | int sk_insert(_STACK *sk, void *data, int where); 88 | void *sk_delete(_STACK *st, int loc); 89 | void *sk_delete_ptr(_STACK *st, void *p); 90 | int sk_find(_STACK *st, void *data); 91 | int sk_find_ex(_STACK *st, void *data); 92 | int sk_push(_STACK *st, void *data); 93 | int sk_unshift(_STACK *st, void *data); 94 | void *sk_shift(_STACK *st); 95 | void *sk_pop(_STACK *st); 96 | void sk_zero(_STACK *st); 97 | int (*sk_set_cmp_func(_STACK *sk, int (*c) (const void *, const void *))) 98 | (const void *, const void *); 99 | _STACK *sk_dup(_STACK *st); 100 | void sk_sort(_STACK *st); 101 | int sk_is_sorted(const _STACK *st); 102 | 103 | #ifdef __cplusplus 104 | } 105 | #endif 106 | 107 | #endif 108 | -------------------------------------------------------------------------------- /Pods/OpenSSL-Universal/macos/include/openssl/txt_db.h: -------------------------------------------------------------------------------- 1 | /* crypto/txt_db/txt_db.h */ 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 3 | * All rights reserved. 4 | * 5 | * This package is an SSL implementation written 6 | * by Eric Young (eay@cryptsoft.com). 7 | * The implementation was written so as to conform with Netscapes SSL. 8 | * 9 | * This library is free for commercial and non-commercial use as long as 10 | * the following conditions are aheared to. The following conditions 11 | * apply to all code found in this distribution, be it the RC4, RSA, 12 | * lhash, DES, etc., code; not just the SSL code. The SSL documentation 13 | * included with this distribution is covered by the same copyright terms 14 | * except that the holder is Tim Hudson (tjh@cryptsoft.com). 15 | * 16 | * Copyright remains Eric Young's, and as such any Copyright notices in 17 | * the code are not to be removed. 18 | * If this package is used in a product, Eric Young should be given attribution 19 | * as the author of the parts of the library used. 20 | * This can be in the form of a textual message at program startup or 21 | * in documentation (online or textual) provided with the package. 22 | * 23 | * Redistribution and use in source and binary forms, with or without 24 | * modification, are permitted provided that the following conditions 25 | * are met: 26 | * 1. Redistributions of source code must retain the copyright 27 | * notice, this list of conditions and the following disclaimer. 28 | * 2. Redistributions in binary form must reproduce the above copyright 29 | * notice, this list of conditions and the following disclaimer in the 30 | * documentation and/or other materials provided with the distribution. 31 | * 3. All advertising materials mentioning features or use of this software 32 | * must display the following acknowledgement: 33 | * "This product includes cryptographic software written by 34 | * Eric Young (eay@cryptsoft.com)" 35 | * The word 'cryptographic' can be left out if the rouines from the library 36 | * being used are not cryptographic related :-). 37 | * 4. If you include any Windows specific code (or a derivative thereof) from 38 | * the apps directory (application code) you must include an acknowledgement: 39 | * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" 40 | * 41 | * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND 42 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 43 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 44 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 45 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 46 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 47 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 48 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 49 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 50 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 51 | * SUCH DAMAGE. 52 | * 53 | * The licence and distribution terms for any publically available version or 54 | * derivative of this code cannot be changed. i.e. this code cannot simply be 55 | * copied and put under another distribution licence 56 | * [including the GNU Public Licence.] 57 | */ 58 | 59 | #ifndef HEADER_TXT_DB_H 60 | # define HEADER_TXT_DB_H 61 | 62 | # include 63 | # ifndef OPENSSL_NO_BIO 64 | # include 65 | # endif 66 | # include 67 | # include 68 | 69 | # define DB_ERROR_OK 0 70 | # define DB_ERROR_MALLOC 1 71 | # define DB_ERROR_INDEX_CLASH 2 72 | # define DB_ERROR_INDEX_OUT_OF_RANGE 3 73 | # define DB_ERROR_NO_INDEX 4 74 | # define DB_ERROR_INSERT_INDEX_CLASH 5 75 | 76 | #ifdef __cplusplus 77 | extern "C" { 78 | #endif 79 | 80 | typedef OPENSSL_STRING *OPENSSL_PSTRING; 81 | DECLARE_SPECIAL_STACK_OF(OPENSSL_PSTRING, OPENSSL_STRING) 82 | 83 | typedef struct txt_db_st { 84 | int num_fields; 85 | STACK_OF(OPENSSL_PSTRING) *data; 86 | LHASH_OF(OPENSSL_STRING) **index; 87 | int (**qual) (OPENSSL_STRING *); 88 | long error; 89 | long arg1; 90 | long arg2; 91 | OPENSSL_STRING *arg_row; 92 | } TXT_DB; 93 | 94 | # ifndef OPENSSL_NO_BIO 95 | TXT_DB *TXT_DB_read(BIO *in, int num); 96 | long TXT_DB_write(BIO *out, TXT_DB *db); 97 | # else 98 | TXT_DB *TXT_DB_read(char *in, int num); 99 | long TXT_DB_write(char *out, TXT_DB *db); 100 | # endif 101 | int TXT_DB_create_index(TXT_DB *db, int field, int (*qual) (OPENSSL_STRING *), 102 | LHASH_HASH_FN_TYPE hash, LHASH_COMP_FN_TYPE cmp); 103 | void TXT_DB_free(TXT_DB *db); 104 | OPENSSL_STRING *TXT_DB_get_by_index(TXT_DB *db, int idx, 105 | OPENSSL_STRING *value); 106 | int TXT_DB_insert(TXT_DB *db, OPENSSL_STRING *value); 107 | 108 | #ifdef __cplusplus 109 | } 110 | #endif 111 | 112 | #endif 113 | -------------------------------------------------------------------------------- /Pods/OpenSSL-Universal/macos/include/openssl/ui_compat.h: -------------------------------------------------------------------------------- 1 | /* crypto/ui/ui.h */ 2 | /* 3 | * Written by Richard Levitte (richard@levitte.org) for the OpenSSL project 4 | * 2001. 5 | */ 6 | /* ==================================================================== 7 | * Copyright (c) 2001 The OpenSSL Project. All rights reserved. 8 | * 9 | * Redistribution and use in source and binary forms, with or without 10 | * modification, are permitted provided that the following conditions 11 | * are met: 12 | * 13 | * 1. Redistributions of source code must retain the above copyright 14 | * notice, this list of conditions and the following disclaimer. 15 | * 16 | * 2. Redistributions in binary form must reproduce the above copyright 17 | * notice, this list of conditions and the following disclaimer in 18 | * the documentation and/or other materials provided with the 19 | * distribution. 20 | * 21 | * 3. All advertising materials mentioning features or use of this 22 | * software must display the following acknowledgment: 23 | * "This product includes software developed by the OpenSSL Project 24 | * for use in the OpenSSL Toolkit. (http://www.openssl.org/)" 25 | * 26 | * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to 27 | * endorse or promote products derived from this software without 28 | * prior written permission. For written permission, please contact 29 | * openssl-core@openssl.org. 30 | * 31 | * 5. Products derived from this software may not be called "OpenSSL" 32 | * nor may "OpenSSL" appear in their names without prior written 33 | * permission of the OpenSSL Project. 34 | * 35 | * 6. Redistributions of any form whatsoever must retain the following 36 | * acknowledgment: 37 | * "This product includes software developed by the OpenSSL Project 38 | * for use in the OpenSSL Toolkit (http://www.openssl.org/)" 39 | * 40 | * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY 41 | * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 42 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 43 | * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR 44 | * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 45 | * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 46 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 47 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 48 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, 49 | * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 50 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 51 | * OF THE POSSIBILITY OF SUCH DAMAGE. 52 | * ==================================================================== 53 | * 54 | * This product includes cryptographic software written by Eric Young 55 | * (eay@cryptsoft.com). This product includes software written by Tim 56 | * Hudson (tjh@cryptsoft.com). 57 | * 58 | */ 59 | 60 | #ifndef HEADER_UI_COMPAT_H 61 | # define HEADER_UI_COMPAT_H 62 | 63 | # include 64 | # include 65 | 66 | #ifdef __cplusplus 67 | extern "C" { 68 | #endif 69 | 70 | /* 71 | * The following functions were previously part of the DES section, and are 72 | * provided here for backward compatibility reasons. 73 | */ 74 | 75 | # define des_read_pw_string(b,l,p,v) \ 76 | _ossl_old_des_read_pw_string((b),(l),(p),(v)) 77 | # define des_read_pw(b,bf,s,p,v) \ 78 | _ossl_old_des_read_pw((b),(bf),(s),(p),(v)) 79 | 80 | int _ossl_old_des_read_pw_string(char *buf, int length, const char *prompt, 81 | int verify); 82 | int _ossl_old_des_read_pw(char *buf, char *buff, int size, const char *prompt, 83 | int verify); 84 | 85 | #ifdef __cplusplus 86 | } 87 | #endif 88 | #endif 89 | -------------------------------------------------------------------------------- /Pods/OpenSSL-Universal/macos/include/openssl/whrlpool.h: -------------------------------------------------------------------------------- 1 | #ifndef HEADER_WHRLPOOL_H 2 | # define HEADER_WHRLPOOL_H 3 | 4 | # include 5 | # include 6 | 7 | #ifdef __cplusplus 8 | extern "C" { 9 | #endif 10 | 11 | # define WHIRLPOOL_DIGEST_LENGTH (512/8) 12 | # define WHIRLPOOL_BBLOCK 512 13 | # define WHIRLPOOL_COUNTER (256/8) 14 | 15 | typedef struct { 16 | union { 17 | unsigned char c[WHIRLPOOL_DIGEST_LENGTH]; 18 | /* double q is here to ensure 64-bit alignment */ 19 | double q[WHIRLPOOL_DIGEST_LENGTH / sizeof(double)]; 20 | } H; 21 | unsigned char data[WHIRLPOOL_BBLOCK / 8]; 22 | unsigned int bitoff; 23 | size_t bitlen[WHIRLPOOL_COUNTER / sizeof(size_t)]; 24 | } WHIRLPOOL_CTX; 25 | 26 | # ifndef OPENSSL_NO_WHIRLPOOL 27 | # ifdef OPENSSL_FIPS 28 | int private_WHIRLPOOL_Init(WHIRLPOOL_CTX *c); 29 | # endif 30 | int WHIRLPOOL_Init(WHIRLPOOL_CTX *c); 31 | int WHIRLPOOL_Update(WHIRLPOOL_CTX *c, const void *inp, size_t bytes); 32 | void WHIRLPOOL_BitUpdate(WHIRLPOOL_CTX *c, const void *inp, size_t bits); 33 | int WHIRLPOOL_Final(unsigned char *md, WHIRLPOOL_CTX *c); 34 | unsigned char *WHIRLPOOL(const void *inp, size_t bytes, unsigned char *md); 35 | # endif 36 | 37 | #ifdef __cplusplus 38 | } 39 | #endif 40 | 41 | #endif 42 | -------------------------------------------------------------------------------- /Pods/OpenSSL-Universal/macos/lib/libcrypto.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOUNDERROR/zsign/4c1269d0c8bfdbae2d7f999dc7271e2c78abac38/Pods/OpenSSL-Universal/macos/lib/libcrypto.a -------------------------------------------------------------------------------- /Pods/OpenSSL-Universal/macos/lib/libssl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOUNDERROR/zsign/4c1269d0c8bfdbae2d7f999dc7271e2c78abac38/Pods/OpenSSL-Universal/macos/lib/libssl.a -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/fxn.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | OpenSSL-Universal.xcscheme_^#shared#^_ 8 | 9 | orderHint 10 | 1 11 | 12 | Pods-SN.xcscheme_^#shared#^_ 13 | 14 | orderHint 15 | 2 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/v.xcuserdatad/xcschemes/OpenSSL-Universal.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 32 | 33 | 43 | 44 | 45 | 46 | 52 | 53 | 55 | 56 | 59 | 60 | 61 | -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/v.xcuserdatad/xcschemes/Pods-SN.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 32 | 33 | 43 | 44 | 50 | 51 | 53 | 54 | 57 | 58 | 59 | -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/v.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | OpenSSL-Universal.xcscheme 8 | 9 | isShown 10 | 11 | 12 | Pods-SN.xcscheme 13 | 14 | isShown 15 | 16 | 17 | 18 | SuppressBuildableAutocreation 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /Pods/Target Support Files/OpenSSL-Universal/OpenSSL-Universal.xcconfig: -------------------------------------------------------------------------------- 1 | CODE_SIGN_IDENTITY = 2 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/OpenSSL-Universal 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/OpenSSL-Universal" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/OpenSSL-Universal" 5 | LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/OpenSSL-Universal/macos/lib" 6 | OTHER_LDFLAGS = $(inherited) -l"crypto" -l"ssl" 7 | PODS_BUILD_DIR = ${BUILD_DIR} 8 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 9 | PODS_ROOT = ${SRCROOT} 10 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/OpenSSL-Universal 11 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 12 | SKIP_INSTALL = YES 13 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 14 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SN/Pods-SN-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SN/Pods-SN-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_SN : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_SN 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SN/Pods-SN-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double Pods_SNVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_SNVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SN/Pods-SN.debug.xcconfig: -------------------------------------------------------------------------------- 1 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 2 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/OpenSSL-Universal" 3 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/../Frameworks' '@loader_path/Frameworks' 4 | LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/OpenSSL-Universal/macos/lib" 5 | OTHER_LDFLAGS = $(inherited) -ObjC -l"crypto" -l"ssl" 6 | PODS_BUILD_DIR = ${BUILD_DIR} 7 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 8 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 9 | PODS_ROOT = ${SRCROOT}/Pods 10 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 11 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SN/Pods-SN.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_SN { 2 | umbrella header "Pods-SN-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-SN/Pods-SN.release.xcconfig: -------------------------------------------------------------------------------- 1 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 2 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/OpenSSL-Universal" 3 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/../Frameworks' '@loader_path/Frameworks' 4 | LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/OpenSSL-Universal/macos/lib" 5 | OTHER_LDFLAGS = $(inherited) -ObjC -l"crypto" -l"ssl" 6 | PODS_BUILD_DIR = ${BUILD_DIR} 7 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 8 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 9 | PODS_ROOT = ${SRCROOT}/Pods 10 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 11 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # zsign 2 | Maybe is the most quickly codesign alternative for iOS12+ in the world, cross-platform ( Linux & macOS ), more features. 3 | If this tool can help you, please don't forget to star me. :) 4 | 5 | ### Compile 6 | You must install openssl library at first, 7 | 8 | #### macOS: 9 | ```bash 10 | brew install openssl 11 | ``` 12 | and then (attention to replace your openssl version) 13 | ```bash 14 | g++ *.cpp common/*.cpp -lcrypto -I/usr/local/Cellar/openssl/1.0.2s/include -L/usr/local/Cellar/openssl/1.0.2s/lib -O3 -o zsign 15 | ``` 16 | 17 | #### CentOS: 18 | ```bash 19 | yum install openssl-devel 20 | ``` 21 | and then 22 | ```bash 23 | g++ *.cpp common/*.cpp -lcrypto -O3 -o zsign 24 | ``` 25 | 26 | ### Usage 27 | I have already tested on macOS and Linux, but you also need **unzip** and **zip** command installed. 28 | 29 | ```bash 30 | Usage: zsign [-options] [-k privkey.pem] [-m dev.prov] [-o output.ipa] file|folder 31 | 32 | options: 33 | -k, --pkey Path to private key or p12 file. (PEM or DER format) 34 | -m, --prov Path to mobile provisioning profile. 35 | -c, --cert Path to certificate file. (PEM or DER format) 36 | -d, --debug Generate debug output files. (.zsign_debug folder) 37 | -f, --force Force sign without cache when signing folder. 38 | -o, --output Path to output ipa file. 39 | -p, --password Password for private key or p12 file. 40 | -b, --bundleid New bundle id to change. 41 | -n, --bundlename New bundle name to change. 42 | -e, --entitlements New entitlements to change. 43 | -z, --ziplevel Compressed level when output the ipa file. (0-9) 44 | -l, --dylib Path to inject dylib file. 45 | -w, --weak Inject dylib as LC_LOAD_WEAK_DYLIB. 46 | -i, --install Install ipa file using ideviceinstaller command for test. 47 | -q, --quiet Quiet operation. 48 | -v, --version Show version. 49 | -h, --help Show help. 50 | ``` 51 | 52 | 1. Show mach-o and codesignature segment info. 53 | ```bash 54 | ./zsign demo.app/execute 55 | ``` 56 | 57 | 2. Sign ipa with private key and mobileprovisioning file. 58 | ```bash 59 | ./zsign -k privkey.pem -m dev.prov -o output.ipa -z 9 demo.ipa 60 | ``` 61 | 62 | 3. Sign folder with p12 and mobileprovisioning file (using cache). 63 | ```bash 64 | ./zsign -k dev.p12 -p 123 -m dev.prov -o output.ipa demo.app 65 | ``` 66 | 67 | 4. Sign folder with p12 and mobileprovisioning file (without cache). 68 | ```bash 69 | ./zsign -f -k dev.p12 -p 123 -m dev.prov -o output.ipa demo.app 70 | ``` 71 | 72 | 5. Inject dylib into ipa and re-sign. 73 | ```bash 74 | ./zsign -k dev.p12 -p 123 -m dev.prov -o output.ipa -l demo.dylib demo.ipa 75 | ``` 76 | 77 | 6. Change bundle id and bundle name 78 | ```bash 79 | ./zsign -k dev.p12 -p 123 -m dev.prov -o output.ipa -b 'com.tree.new.bee' -n 'TreeNewBee' demo.ipa 80 | ``` 81 | 82 | 7. Inject dylib(LC_LOAD_DYLIB) into mach-o file. 83 | ```bash 84 | ./zsign -l "@executable_path/demo.dylib" demo.app/execute 85 | ``` 86 | 87 | 8. Inject dylib(LC_LOAD_WEAK_DYLIB) into mach-o file. 88 | ```bash 89 | ./zsign -w -l "@executable_path/demo.dylib" demo.app/execute 90 | ``` 91 | 92 | ### Copyright 93 | zsign is completely free. Please mark the source of zsign in your commercial product if possible. 94 | 95 | ### How to sign quickly? 96 | You can unzip the ipa file at first, and then using zsign to sign folder with assets. 97 | At the first time of sign, zsign will perform the complete signing and cache the signed info into *.zsign_cache* dir at the current path. 98 | When you re-sign the folder with other assets next time, zsign will use the cache to accelerate the operation. Extremely fast! You can have a try!:) -------------------------------------------------------------------------------- /archo.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include "common/mach-o.h" 3 | #include "openssl.h" 4 | 5 | class ZArchO 6 | { 7 | public: 8 | ZArchO(); 9 | bool Init(uint8_t *pBase, uint32_t uLength); 10 | 11 | public: 12 | bool Sign(ZSignAsset *pSignAsset, bool bForce, const string &strBundleId, const string &strInfoPlistSHA1, const string &strInfoPlistSHA256, const string &strCodeResourcesData); 13 | void PrintInfo(); 14 | bool IsExecute(); 15 | bool InjectDyLib(bool bWeakInject, const char *szDyLibPath, bool &bCreate); 16 | uint32_t ReallocCodeSignSpace(const string &strNewFile); 17 | 18 | private: 19 | uint32_t BO(uint32_t uVal); 20 | const char *GetFileType(uint32_t uFileType); 21 | const char *GetArch(int cpuType, int cpuSubType); 22 | bool BuildCodeSignature(ZSignAsset *pSignAsset, bool bForce, const string &strBundleId, const string &strInfoPlistSHA1, const string &strInfoPlistSHA256, const string &strCodeResourcesSHA1, const string &strCodeResourcesSHA256, string &strOutput); 23 | 24 | public: 25 | uint8_t *m_pBase; 26 | uint32_t m_uLength; 27 | uint32_t m_uCodeLength; 28 | uint8_t *m_pSignBase; 29 | uint32_t m_uSignLength; 30 | string m_strInfoPlist; 31 | bool m_bEncrypted; 32 | bool m_b64; 33 | bool m_bBigEndian; 34 | bool m_bEnoughSpace; 35 | uint8_t *m_pCodeSignSegment; 36 | uint8_t *m_pLinkEditSegment; 37 | uint32_t m_uLoadCommandsFreeSpace; 38 | mach_header *m_pHeader; 39 | uint32_t m_uHeaderSize; 40 | }; -------------------------------------------------------------------------------- /bundle.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include "common/common.h" 3 | #include "common/json.h" 4 | #include "openssl.h" 5 | 6 | class ZAppBundle 7 | { 8 | public: 9 | ZAppBundle(); 10 | 11 | public: 12 | bool SignFolder(ZSignAsset *pSignAsset, const string &strFolder, const string &strBundleID, const string &strDisplayName, const string &strDyLibFile, bool bForce, bool bWeakInject, bool bEnableCache); 13 | 14 | private: 15 | bool SignNode(JValue &jvNode); 16 | void GetNodeChangedFiles(JValue &jvNode); 17 | void GetChangedFiles(JValue &jvNode, vector &arrChangedFiles); 18 | void GetPlugIns(const string &strFolder, vector &arrPlugIns); 19 | 20 | private: 21 | bool FindAppFolder(const string &strFolder, string &strAppFolder); 22 | bool GetObjectsToSign(const string &strFolder, JValue &jvInfo); 23 | bool GetSignFolderInfo(const string &strFolder, JValue &jvNode, bool bGetName = false); 24 | 25 | private: 26 | bool GenerateCodeResources(const string &strFolder, JValue &jvCodeRes); 27 | void GetFolderFiles(const string &strFolder, const string &strBaseFolder, set &setFiles); 28 | 29 | private: 30 | bool m_bForceSign; 31 | bool m_bWeakInject; 32 | string m_strDyLibPath; 33 | ZSignAsset *m_pSignAsset; 34 | 35 | public: 36 | string m_strAppFolder; 37 | }; 38 | -------------------------------------------------------------------------------- /common/base64.cpp: -------------------------------------------------------------------------------- 1 | #include "base64.h" 2 | #include 3 | 4 | #define B0(a) (a & 0xFF) 5 | #define B1(a) (a >> 8 & 0xFF) 6 | #define B2(a) (a >> 16 & 0xFF) 7 | #define B3(a) (a >> 24 & 0xFF) 8 | 9 | ZBase64::ZBase64(void) 10 | { 11 | } 12 | 13 | ZBase64::~ZBase64(void) 14 | { 15 | if (!m_arrEnc.empty()) 16 | { 17 | for (size_t i = 0; i < m_arrEnc.size(); i++) 18 | { 19 | delete[] m_arrEnc[i]; 20 | } 21 | m_arrEnc.clear(); 22 | } 23 | 24 | if (!m_arrDec.empty()) 25 | { 26 | for (size_t i = 0; i < m_arrDec.size(); i++) 27 | { 28 | delete[] m_arrDec[i]; 29 | } 30 | m_arrDec.clear(); 31 | } 32 | } 33 | 34 | char ZBase64::GetB64char(int nIndex) 35 | { 36 | static const char szTable[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; 37 | if (nIndex >= 0 && nIndex < 64) 38 | { 39 | return szTable[nIndex]; 40 | } 41 | return '='; 42 | } 43 | 44 | int ZBase64::GetB64Index(char ch) 45 | { 46 | int index = -1; 47 | if (ch >= 'A' && ch <= 'Z') 48 | { 49 | index = ch - 'A'; 50 | } 51 | else if (ch >= 'a' && ch <= 'z') 52 | { 53 | index = ch - 'a' + 26; 54 | } 55 | else if (ch >= '0' && ch <= '9') 56 | { 57 | index = ch - '0' + 52; 58 | } 59 | else if (ch == '+') 60 | { 61 | index = 62; 62 | } 63 | else if (ch == '/') 64 | { 65 | index = 63; 66 | } 67 | return index; 68 | } 69 | 70 | const char *ZBase64::Encode(const char *szSrc, int nSrcLen) 71 | { 72 | if (0 == nSrcLen) 73 | { 74 | nSrcLen = (int)strlen(szSrc); 75 | } 76 | 77 | if (nSrcLen <= 0) 78 | { 79 | return ""; 80 | } 81 | 82 | char *szEnc = new char[nSrcLen * 3 + 128]; 83 | m_arrEnc.push_back(szEnc); 84 | 85 | int i = 0; 86 | int len = 0; 87 | unsigned char *psrc = (unsigned char *)szSrc; 88 | char *p64 = szEnc; 89 | for (i = 0; i < nSrcLen - 3; i += 3) 90 | { 91 | unsigned long ulTmp = *(unsigned long *)psrc; 92 | register int b0 = GetB64char((B0(ulTmp) >> 2) & 0x3F); 93 | register int b1 = GetB64char((B0(ulTmp) << 6 >> 2 | B1(ulTmp) >> 4) & 0x3F); 94 | register int b2 = GetB64char((B1(ulTmp) << 4 >> 2 | B2(ulTmp) >> 6) & 0x3F); 95 | register int b3 = GetB64char((B2(ulTmp) << 2 >> 2) & 0x3F); 96 | *((unsigned long *)p64) = b0 | b1 << 8 | b2 << 16 | b3 << 24; 97 | len += 4; 98 | p64 += 4; 99 | psrc += 3; 100 | } 101 | 102 | if (i < nSrcLen) 103 | { 104 | int rest = nSrcLen - i; 105 | unsigned long ulTmp = 0; 106 | for (int j = 0; j < rest; ++j) 107 | { 108 | *(((unsigned char *)&ulTmp) + j) = *psrc++; 109 | } 110 | p64[0] = GetB64char((B0(ulTmp) >> 2) & 0x3F); 111 | p64[1] = GetB64char((B0(ulTmp) << 6 >> 2 | B1(ulTmp) >> 4) & 0x3F); 112 | p64[2] = rest > 1 ? GetB64char((B1(ulTmp) << 4 >> 2 | B2(ulTmp) >> 6) & 0x3F) : '='; 113 | p64[3] = rest > 2 ? GetB64char((B2(ulTmp) << 2 >> 2) & 0x3F) : '='; 114 | p64 += 4; 115 | len += 4; 116 | } 117 | *p64 = '\0'; 118 | return szEnc; 119 | } 120 | 121 | const char *ZBase64::Encode(const string &strInput) 122 | { 123 | return Encode(strInput.data(), strInput.size()); 124 | } 125 | 126 | const char *ZBase64::Decode(const char *szSrc, int nSrcLen, int *pDecLen) 127 | { 128 | if (0 == nSrcLen) 129 | { 130 | nSrcLen = (int)strlen(szSrc); 131 | } 132 | 133 | if (nSrcLen <= 0) 134 | { 135 | return ""; 136 | } 137 | 138 | char *szDec = new char[nSrcLen]; 139 | m_arrDec.push_back(szDec); 140 | 141 | int i = 0; 142 | int len = 0; 143 | unsigned char *psrc = (unsigned char *)szSrc; 144 | char *pbuf = szDec; 145 | for (i = 0; i < nSrcLen - 4; i += 4) 146 | { 147 | unsigned long ulTmp = *(unsigned long *)psrc; 148 | 149 | register int b0 = (GetB64Index((char)B0(ulTmp)) << 2 | GetB64Index((char)B1(ulTmp)) << 2 >> 6) & 0xFF; 150 | register int b1 = (GetB64Index((char)B1(ulTmp)) << 4 | GetB64Index((char)B2(ulTmp)) << 2 >> 4) & 0xFF; 151 | register int b2 = (GetB64Index((char)B2(ulTmp)) << 6 | GetB64Index((char)B3(ulTmp)) << 2 >> 2) & 0xFF; 152 | 153 | *((unsigned long *)pbuf) = b0 | b1 << 8 | b2 << 16; 154 | psrc += 4; 155 | pbuf += 3; 156 | len += 3; 157 | } 158 | 159 | if (i < nSrcLen) 160 | { 161 | int rest = nSrcLen - i; 162 | unsigned long ulTmp = 0; 163 | for (int j = 0; j < rest; ++j) 164 | { 165 | *(((unsigned char *)&ulTmp) + j) = *psrc++; 166 | } 167 | 168 | register int b0 = (GetB64Index((char)B0(ulTmp)) << 2 | GetB64Index((char)B1(ulTmp)) << 2 >> 6) & 0xFF; 169 | *pbuf++ = b0; 170 | len++; 171 | 172 | if ('=' != B1(ulTmp) && '=' != B2(ulTmp)) 173 | { 174 | register int b1 = (GetB64Index((char)B1(ulTmp)) << 4 | GetB64Index((char)B2(ulTmp)) << 2 >> 4) & 0xFF; 175 | *pbuf++ = b1; 176 | len++; 177 | } 178 | 179 | if ('=' != B2(ulTmp) && '=' != B3(ulTmp)) 180 | { 181 | register int b2 = (GetB64Index((char)B2(ulTmp)) << 6 | GetB64Index((char)B3(ulTmp)) << 2 >> 2) & 0xFF; 182 | *pbuf++ = b2; 183 | len++; 184 | } 185 | } 186 | *pbuf = '\0'; 187 | 188 | if (NULL != pDecLen) 189 | { 190 | *pDecLen = (int)(pbuf - szDec); 191 | } 192 | 193 | return szDec; 194 | } 195 | 196 | const char *ZBase64::Decode(const char *szSrc, string &strOutput) 197 | { 198 | strOutput.clear(); 199 | int nDecLen = 0; 200 | const char *p = Decode(szSrc, 0, &nDecLen); 201 | strOutput.append(p, nDecLen); 202 | return strOutput.data(); 203 | } 204 | -------------------------------------------------------------------------------- /common/base64.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | #include 5 | 6 | using namespace std; 7 | 8 | class ZBase64 9 | { 10 | public: 11 | ZBase64(void); 12 | ~ZBase64(void); 13 | 14 | public: 15 | const char *Encode(const char *szSrc, int nSrcLen = 0); 16 | const char *Encode(const string &strInput); 17 | const char *Decode(const char *szSrc, int nSrcLen = 0, int *pDecLen = NULL); 18 | const char *Decode(const char *szSrc, string &strOutput); 19 | 20 | private: 21 | inline int GetB64Index(char ch); 22 | inline char GetB64char(int nIndex); 23 | 24 | private: 25 | vector m_arrDec; 26 | vector m_arrEnc; 27 | }; 28 | -------------------------------------------------------------------------------- /common/common.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | #include 5 | #include 6 | #include 7 | #include 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | #include 17 | #include 18 | #include 19 | #include 20 | #include 21 | 22 | #include 23 | #include 24 | #include 25 | #include 26 | #include 27 | using namespace std; 28 | 29 | #define LE(x) _Swap(x) 30 | #define BE(x) _Swap(x) 31 | 32 | uint16_t _Swap(uint16_t value); 33 | uint32_t _Swap(uint32_t value); 34 | uint64_t _Swap(uint64_t value); 35 | 36 | bool ReadFile(const char *szFile, string &strData); 37 | bool ReadFile(string &strData, const char *szFormatPath, ...); 38 | bool WriteFile(const char *szFile, const string &strData); 39 | bool WriteFile(const char *szFile, const char *szData, size_t sLen); 40 | bool WriteFile(string &strData, const char *szFormatPath, ...); 41 | bool WriteFile(const char *szData, size_t sLen, const char *szFormatPath, ...); 42 | bool AppendFile(const char *szFile, const string &strData); 43 | bool AppendFile(const char *szFile, const char *szData, size_t sLen); 44 | bool AppendFile(const string &strData, const char *szFormatPath, ...); 45 | 46 | bool IsFolder(const char *szFolder); 47 | bool IsFolderV(const char *szFormatPath, ...); 48 | bool CreateFolder(const char *szFolder); 49 | bool CreateFolderV(const char *szFormatPath, ...); 50 | bool RemoveFile(const char *szFile); 51 | bool RemoveFileV(const char *szFormatPath, ...); 52 | bool RemoveFolder(const char *szFolder); 53 | bool RemoveFolderV(const char *szFormatPath, ...); 54 | bool IsFileExists(const char *szFile); 55 | bool IsFileExistsV(const char *szFormatPath, ...); 56 | int64_t GetFileSize(int fd); 57 | int64_t GetFileSize(const char *szFile); 58 | int64_t GetFileSizeV(const char *szFormatPath, ...); 59 | string GetFileSizeString(const char *szFile); 60 | bool IsZipFile(const char *szFile); 61 | string GetCanonicalizePath(const char *szPath); 62 | void *MapFile(const char *path, size_t offset, size_t size, size_t *psize, bool ro); 63 | bool IsPathSuffix(const string &strPath, const char *suffix); 64 | 65 | const char *StringFormat(string &strFormat, const char *szFormatArgs, ...); 66 | string &StringReplace(string &context, const string &from, const string &to); 67 | void StringSplit(const string &src, const string &split, vector &dest); 68 | 69 | string FormatSize(int64_t size, int64_t base = 1024); 70 | time_t GetUnixStamp(); 71 | uint64_t GetMicroSencond(); 72 | bool SystemExec(const char *szFormatCmd, ...); 73 | uint32_t ByteAlign(uint32_t uValue, uint32_t uAlign); 74 | 75 | enum 76 | { 77 | E_SHASUM_TYPE_1 = 1, 78 | E_SHASUM_TYPE_256 = 2, 79 | }; 80 | 81 | bool SHASum(int nSumType, uint8_t *data, size_t size, string &strOutput); 82 | bool SHASum(int nSumType, const string &strData, string &strOutput); 83 | bool SHASum(const string &strData, string &strSHA1, string &strSHA256); 84 | bool SHA1Text(const string &strData, string &strOutput); 85 | bool SHASumFile(const char *szFile, string &strSHA1, string &strSHA256); 86 | bool SHASumBase64(const string &strData, string &strSHA1Base64, string &strSHA256Base64); 87 | bool SHASumBase64File(const char *szFile, string &strSHA1Base64, string &strSHA256Base64); 88 | void PrintSHASum(const char *prefix, const uint8_t *hash, uint32_t size, const char *suffix = "\n"); 89 | void PrintSHASum(const char *prefix, const string &strSHASum, const char *suffix = "\n"); 90 | void PrintDataSHASum(const char *prefix, int nSumType, const string &strData, const char *suffix = "\n"); 91 | void PrintDataSHASum(const char *prefix, int nSumType, uint8_t *data, size_t size, const char *suffix = "\n"); 92 | 93 | class ZBuffer 94 | { 95 | public: 96 | ZBuffer(); 97 | ~ZBuffer(); 98 | 99 | public: 100 | char* GetBuffer(uint32_t uSize); 101 | 102 | private: 103 | void Free(); 104 | 105 | private: 106 | char* m_pData; 107 | uint32_t m_uSize; 108 | }; 109 | 110 | class ZTimer 111 | { 112 | public: 113 | ZTimer(); 114 | 115 | public: 116 | uint64_t Reset(); 117 | uint64_t Print(const char *szFormatArgs, ...); 118 | uint64_t PrintResult(bool bSuccess, const char *szFormatArgs, ...); 119 | 120 | private: 121 | uint64_t m_uBeginTime; 122 | }; 123 | 124 | class ZLog 125 | { 126 | public: 127 | enum eLogType 128 | { 129 | E_NONE = 0, 130 | E_ERROR = 1, 131 | E_WARN = 2, 132 | E_INFO = 3, 133 | E_DEBUG = 4 134 | }; 135 | 136 | public: 137 | static bool IsDebug(); 138 | static void Print(const char *szLog); 139 | static void PrintV(const char *szFormatArgs, ...); 140 | static void Debug(const char *szLog); 141 | static void DebugV(const char *szFormatArgs, ...); 142 | static bool Warn(const char *szLog); 143 | static bool WarnV(const char *szFormatArgs, ...); 144 | static bool Error(const char *szLog); 145 | static bool ErrorV(const char *szFormatArgs, ...); 146 | static bool Success(const char *szLog); 147 | static bool SuccessV(const char *szFormatArgs, ...); 148 | static bool PrintResult(bool bSuccess, const char *szLog); 149 | static bool PrintResultV(bool bSuccess, const char *szFormatArgs, ...); 150 | static void Print(int nLevel, const char *szLog); 151 | static void PrintV(int nLevel, const char *szFormatArgs, ...); 152 | static void SetLogLever(int nLogLevel); 153 | 154 | private: 155 | static int g_nLogLevel; 156 | }; -------------------------------------------------------------------------------- /macho.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include "archo.h" 3 | 4 | class ZMachO 5 | { 6 | public: 7 | ZMachO(); 8 | ~ZMachO(); 9 | 10 | public: 11 | bool Init(const char *szFile); 12 | bool InitV(const char *szFormatPath, ...); 13 | bool Free(); 14 | void PrintInfo(); 15 | bool Sign(ZSignAsset *pSignAsset, bool bForce, string strBundleId, string strInfoPlistSHA1, string strInfoPlistSHA256, const string &strCodeResourcesData); 16 | bool InjectDyLib(bool bWeakInject, const char *szDyLibPath, bool &bCreate); 17 | 18 | private: 19 | bool OpenFile(const char *szPath); 20 | bool CloseFile(); 21 | bool ReallocCodeSignSpace(); 22 | bool NewArchO(uint8_t *pBase, uint32_t uLength); 23 | void FreeArchOes(); 24 | 25 | private: 26 | uint8_t *m_pBase; 27 | size_t m_sSize; 28 | string m_strFile; 29 | vector m_arrArchOes; 30 | bool m_bCSRealloced; 31 | }; 32 | -------------------------------------------------------------------------------- /openssl.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include "common/json.h" 3 | 4 | bool GenerateCMS(const string &strSignerCertData, const string &strSignerPKeyData, const string &strCDHashData, const string &strCDHashPlist, string &strCMSOutput); 5 | bool GetCMSContent(const string &strCMSDataInput, string &strContentOutput); 6 | bool GetCertSubjectCN(const string &strCertData, string &strSubjectCN); 7 | bool GetCMSInfo(uint8_t *pCMSData, uint32_t uCMSLength, JValue &jvOutput); 8 | 9 | class ZSignAsset 10 | { 11 | public: 12 | ZSignAsset(); 13 | 14 | public: 15 | bool GenerateCMS(const string &strCDHashData, const string &strCDHashesPlist, string &strCMSOutput); 16 | bool Init(const string &strSignerCertFile, const string &strSignerPKeyFile, const string &strProvisionFile, const string &strEntitlementsFile, const string &strPassword); 17 | 18 | public: 19 | string m_strTeamId; 20 | string m_strSubjectCN; 21 | string m_strProvisionData; 22 | string m_strEntitlementsData; 23 | 24 | private: 25 | void *m_evpPkey; 26 | void *m_x509Cert; 27 | }; -------------------------------------------------------------------------------- /signing.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include "openssl.h" 3 | 4 | bool ParseCodeSignature(uint8_t *pCSBase); 5 | uint32_t GetCodeSignatureLength(uint8_t *pCSBase); 6 | bool GetCodeSignatureCodeSlotsData(uint8_t *pCSBase, uint8_t *&pCodeSlots1, uint32_t &uCodeSlots1Length, uint8_t *&pCodeSlots256, uint32_t &uCodeSlots256Length); 7 | bool SlotBuildRequirements(const string &strBundleID, const string &strSubjectCN, string &strOutput); 8 | bool SlotBuildEntitlements(const string &strEntitlements, string &strOutput); 9 | bool SlotBuildCodeDirectory( 10 | bool bAlternate, 11 | uint8_t *pCodeBase, 12 | uint32_t uCodeLength, 13 | uint8_t *pCodeSlotsData, 14 | uint32_t uCodeSlotsDataLength, 15 | const string &strBundleId, 16 | const string &strTeamId, 17 | const string &strInfoPlistSHA, 18 | const string &strRequirementsSlotSHA, 19 | const string &strCodeResourcesSHA, 20 | const string &strEntitlementsSlotSHA, 21 | string &strOutput); 22 | bool SlotBuildCMSSignature(ZSignAsset *pSignAsset, const string &strCodeDirectorySlot, const string &strAltnateCodeDirectorySlot, string &strOutput); 23 | bool GetCodeSignatureExistsCodeSlotsData(uint8_t *pCSBase, uint8_t *&pCodeSlots1Data, uint32_t &uCodeSlots1DataLength, uint8_t *&pCodeSlots256Data, uint32_t &uCodeSlots256DataLength); -------------------------------------------------------------------------------- /zsign.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /zsign.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /zsign.xcodeproj/project.xcworkspace/xcuserdata/macbook.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOUNDERROR/zsign/4c1269d0c8bfdbae2d7f999dc7271e2c78abac38/zsign.xcodeproj/project.xcworkspace/xcuserdata/macbook.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /zsign.xcodeproj/project.xcworkspace/xcuserdata/v.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOUNDERROR/zsign/4c1269d0c8bfdbae2d7f999dc7271e2c78abac38/zsign.xcodeproj/project.xcworkspace/xcuserdata/v.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /zsign.xcodeproj/xcshareddata/xcschemes/zsign.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 32 | 33 | 43 | 45 | 51 | 52 | 53 | 54 | 60 | 62 | 68 | 69 | 70 | 71 | 73 | 74 | 77 | 78 | 79 | -------------------------------------------------------------------------------- /zsign.xcodeproj/xcuserdata/fxn.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | zsign.xcscheme_^#shared#^_ 8 | 9 | orderHint 10 | 0 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /zsign.xcodeproj/xcuserdata/macbook.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | SN.xcscheme_^#shared#^_ 8 | 9 | orderHint 10 | 0 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /zsign.xcodeproj/xcuserdata/v.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | SN.xcscheme_^#shared#^_ 8 | 9 | orderHint 10 | 0 11 | 12 | 13 | SuppressBuildableAutocreation 14 | 15 | FABFC05E2358CD13008D9BC5 16 | 17 | primary 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /zsign.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /zsign.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /zsign.xcworkspace/xcuserdata/fxn.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOUNDERROR/zsign/4c1269d0c8bfdbae2d7f999dc7271e2c78abac38/zsign.xcworkspace/xcuserdata/fxn.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /zsign.xcworkspace/xcuserdata/fxn.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 9 | 21 | 22 | 23 | 25 | 37 | 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /zsign.xcworkspace/xcuserdata/v.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOUNDERROR/zsign/4c1269d0c8bfdbae2d7f999dc7271e2c78abac38/zsign.xcworkspace/xcuserdata/v.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /zsign.xcworkspace/xcuserdata/v.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 9 | 21 | 22 | 23 | 25 | 37 | 38 | 39 | 41 | 53 | 54 | 55 | 57 | 69 | 70 | 71 | 72 | 73 | --------------------------------------------------------------------------------