diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md
index 6bb2ef9..4ae466f 100644
--- a/.github/CONTRIBUTING.md
+++ b/.github/CONTRIBUTING.md
@@ -1,4 +1,4 @@
-# Contributing to IBM-Swift
+# Contributing to Kitura
We welcome contributions, and request you follow these guidelines.
@@ -18,7 +18,7 @@ trying to do and what went wrong. Provide as much context as possible so we can
### Contributor License Agreement
In order for us to accept pull-requests, the contributor must first complete
-a Contributor License Agreement (CLA). Please see our [CLA repo](http://github.com/IBM-Swift/CLA) for more information.
+a Contributor License Agreement (CLA). Please see our [CLA repo](http://github.com/Kitura/CLA) for more information.
This clarifies the intellectual property license granted with any contribution. It is for your protection as a
Contributor as well as the protection of IBM and its customers; it does not
diff --git a/.travis.yml b/.travis.yml
index 6db501b..4cbd34b 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -58,7 +58,7 @@ matrix:
env: SWIFT_SNAPSHOT=$SWIFT_DEVELOPMENT_SNAPSHOT
before_install:
- - git clone https://github.com/IBM-Swift/Package-Builder.git
+ - git clone https://github.com/Kitura/Package-Builder.git
script:
- openssl version
diff --git a/BlueRSA.podspec b/BlueRSA.podspec
index c500f8b..9b020c5 100644
--- a/BlueRSA.podspec
+++ b/BlueRSA.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "BlueRSA"
-s.version = "1.0.200"
+s.version = "1.0.201"
s.summary = "Swift cross-platform RSA crypto library using CommonCrypto/libcrypto via Package Manager."
s.homepage = "https://github.com/Kitura/BlueRSA"
s.license = { :type => "Apache License, Version 2.0" }
diff --git a/README.md b/README.md
index 8cfe513..640d1b7 100644
--- a/README.md
+++ b/README.md
@@ -2,8 +2,8 @@
-
-
+
+
@@ -79,7 +79,7 @@ To run the supplied unit tests for **CryptorRSA** from the command line:
To include BlueRSA into a Swift Package Manager package, add it to the `dependencies` attribute defined in your `Package.swift` file. You can select the version using the `majorVersion` and `minor` parameters. For example:
```
dependencies: [
- .Package(url: "https://github.com/IBM-Swift/BlueRSA", majorVersion: , minor: )
+ .Package(url: "https://github.com/Kitura/BlueRSA", majorVersion: , minor: )
]
```
@@ -87,7 +87,7 @@ To include BlueRSA into a Swift Package Manager package, add it to the `dependen
To include BlueRSA in a project using Carthage, add a line to your `Cartfile` with the GitHub organization and project names and version. For example:
```
- github "IBM-Swift/BlueRSA" ~> .
+ github "Kitura/BlueRSA" ~> .
```
### Before starting
@@ -315,4 +315,4 @@ We love to talk server-side Swift and Kitura. Join our [Slack](http://swift-at-i
## License
-This library is licensed under Apache 2.0. Full license text is available in [LICENSE](https://github.com/IBM-Swift/BlueRSA/blob/master/LICENSE).
+This library is licensed under Apache 2.0. Full license text is available in [LICENSE](https://github.com/Kitura/BlueRSA/blob/master/LICENSE).
diff --git a/Sources/CryptorRSA/CryptorRSA.swift b/Sources/CryptorRSA/CryptorRSA.swift
index d49d716..2e3bf1c 100644
--- a/Sources/CryptorRSA/CryptorRSA.swift
+++ b/Sources/CryptorRSA/CryptorRSA.swift
@@ -938,7 +938,7 @@ public class CryptorRSA {
// Unlike other return values above, this return indicates if signature verifies or not
rc = signature.data.withUnsafeBytes({ (sig: UnsafeRawBufferPointer) -> Int32 in
// Wrapper for OpenSSL EVP_DigestVerifyFinal function defined in
- // IBM-Swift/OpenSSL/shim.h, to provide compatibility with OpenSSL
+ // Kitura/OpenSSL/shim.h, to provide compatibility with OpenSSL
// 1.0.1 and 1.0.2 on Ubuntu 14.04 and 16.04, respectively.
return SSL_EVP_digestVerifyFinal_wrapper(md_ctx, sig.baseAddress?.assumingMemoryBound(to: UInt8.self), signature.data.count)
})