Skip to content

Commit

Permalink
[Issue #77] Obsolete cryptographically broken algorithms MD2, MD4, MD…
Browse files Browse the repository at this point in the history
…5 for iOS

Rework md5 into md5_insecure
Provide a SHA1_insecure

Update travis.yml
  • Loading branch information
LowAmmo committed Nov 21, 2024
1 parent 8fc54cc commit a67f264
Show file tree
Hide file tree
Showing 21 changed files with 687 additions and 1,575 deletions.
Empty file removed .gitmodules
Empty file.
23 changes: 11 additions & 12 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,31 +11,30 @@ branches:
# by .swift-version, unless SWIFT_SNAPSHOT is specified.
matrix:
include:
- os: linux
dist: xenial
sudo: required
services: docker
env: DOCKER_IMAGE=docker.kitura.net/kitura/swift-ci-ubuntu16.04:5.1.5 SWIFT_SNAPSHOT=5.1.5
- os: linux
dist: bionic
sudo: required
services: docker
env: DOCKER_IMAGE=docker.kitura.net/kitura/swift-ci-ubuntu18.04:5.4 SWIFT_SNAPSHOT=5.4
env: DOCKER_IMAGE=docker.kitura.net/kitura/swift-ci-ubuntu18.04:5.4 SWIFT_TEST_ARGS=""
- os: linux
dist: xenial
sudo: required
services: docker
env: DOCKER_IMAGE=docker.kitura.net/kitura/swift-ci-ubuntu18.04:latest SWIFT_SNAPSHOT=$SWIFT_DEVELOPMENT_SNAPSHOT
env: DOCKER_IMAGE=docker.kitura.net/kitura/swift-ci-ubuntu18.04:latest USE_SWIFT_DEVELOPMENT_SNAPSHOT=1 SWIFT_TEST_ARGS=""
- os: osx
osx_image: xcode11
osx_image: xcode12.2
sudo: required
env: SWIFT_SNAPSHOT=5.1.5 JAZZY_ELIGIBLE=true
env: JAZZY_ELIGIBLE=true SWIFT_TEST_ARGS=""
- os: osx
osx_image: xcode12.2
osx_image: xcode13.4
sudo: required
env: USE_SWIFT_DEVELOPMENT_SNAPSHOT=1 SWIFT_TEST_ARGS=""
- os: osx
osx_image: xcode14.2
sudo: required
#env: SWIFT_SNAPSHOT=5.1.5
env: SWIFT_SNAPSHOT=$SWIFT_DEVELOPMENT_SNAPSHOT
- os: osx
osx_image: xcode12.5
osx_image: xcode15.4
sudo: required
env: SWIFT_SNAPSHOT=$SWIFT_DEVELOPMENT_SNAPSHOT

Expand Down
12 changes: 6 additions & 6 deletions BlueCryptor.podspec
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
Pod::Spec.new do |s|
s.name = "BlueCryptor"
s.version = "2.0.1"
s.version = "2.0.2"
s.summary = "Swift cross-platform crypto library using CommonCrypto/libcrypto via Package Manager."
s.homepage = "https://github.com/Kitura/BlueCryptor"
s.license = { :type => "Apache License, Version 2.0" }
s.author = "IBM & Kitura Project Authors"
s.module_name = 'Cryptor'

s.requires_arc = true
s.swift_version = '5.1'
s.osx.deployment_target = "10.11"
s.ios.deployment_target = "10.0"
s.tvos.deployment_target = "10.0"
s.watchos.deployment_target = "2.0"
s.swift_version = '5.2'
s.osx.deployment_target = "11.5"
s.ios.deployment_target = "14.5"
s.tvos.deployment_target = "14.5"
s.watchos.deployment_target = "7.5"
s.source = { :git => "https://github.com/Kitura/BlueCryptor.git", :tag => s.version }
s.source_files = "Sources/Cryptor/*.swift"
s.pod_target_xcconfig = {
Expand Down
19 changes: 0 additions & 19 deletions Cryptor-iOS/Cryptor-iOS.h

This file was deleted.

24 changes: 0 additions & 24 deletions Cryptor-iOS/Info.plist

This file was deleted.

Loading

0 comments on commit a67f264

Please sign in to comment.