Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removed support for cryptographically broken algorithms MD2, MD4, MD5 #78

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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