Skip to content

Commit c954f18

Browse files
committed
Update Info.plist metadata with CossackLabs branding
Change the bundle ID to something related to us so that we're not infringing on "org.openssl" namespace (used by the original project), and have the binary we build clearly associated with us. Similarly, we are going to offer OpenSSL 1.0.2u, hence update the marketing version of the bundle to reflect that. Also update the default version in the build script so that we can use it directly.
1 parent 444d952 commit c954f18

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

assets/MacOSX/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@
77
<key>CFBundleExecutable</key>
88
<string>openssl</string>
99
<key>CFBundleIdentifier</key>
10-
<string>org.openssl.OpenSSL</string>
10+
<string>com.cossacklabs.OpenSSL</string>
1111
<key>CFBundleInfoDictionaryVersion</key>
1212
<string>6.0</string>
1313
<key>CFBundleName</key>
1414
<string>openssl</string>
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.0</string>
18+
<string>1.0.2u</string>
1919
<key>CFBundleVersion</key>
2020
<string>1</string>
2121
<key>MinimumOSVersion</key>

assets/iPhone/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@
77
<key>CFBundleExecutable</key>
88
<string>openssl</string>
99
<key>CFBundleIdentifier</key>
10-
<string>org.openssl.OpenSSL</string>
10+
<string>com.cossacklabs.OpenSSL</string>
1111
<key>CFBundleInfoDictionaryVersion</key>
1212
<string>6.0</string>
1313
<key>CFBundleName</key>
1414
<string>openssl</string>
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.0</string>
18+
<string>1.0.2u</string>
1919
<key>CFBundleVersion</key>
2020
<string>1</string>
2121
<key>MinimumOSVersion</key>

build-libssl.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ set -u
2525
# SCRIPT DEFAULTS
2626

2727
# Default version in case no version is specified
28-
DEFAULTVERSION="1.1.1g"
28+
DEFAULTVERSION="1.0.2u"
2929

3030
# Default (=full) set of architectures (OpenSSL <= 1.0.2) or targets (OpenSSL >= 1.1.1) to build
3131
#DEFAULTARCHS="ios_x86_64 ios_arm64 ios_armv7s ios_armv7 tv_x86_64 tv_arm64 mac_x86_64"

0 commit comments

Comments
 (0)