Skip to content

Commit 440f78d

Browse files
authored
More updates to community Kitura org (#72)
* Update podspec to 1.0.201 * More updates to community Kitura org
1 parent 842c82f commit 440f78d

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

.github/CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Contributing to IBM-Swift
1+
# Contributing to Kitura
22

33
We welcome contributions, and request you follow these guidelines.
44

@@ -18,7 +18,7 @@ trying to do and what went wrong. Provide as much context as possible so we can
1818
### Contributor License Agreement
1919

2020
In order for us to accept pull-requests, the contributor must first complete
21-
a Contributor License Agreement (CLA). Please see our [CLA repo](http://github.com/IBM-Swift/CLA) for more information.
21+
a Contributor License Agreement (CLA). Please see our [CLA repo](http://github.com/Kitura/CLA) for more information.
2222

2323
This clarifies the intellectual property license granted with any contribution. It is for your protection as a
2424
Contributor as well as the protection of IBM and its customers; it does not

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ matrix:
5858
env: SWIFT_SNAPSHOT=$SWIFT_DEVELOPMENT_SNAPSHOT
5959

6060
before_install:
61-
- git clone https://github.com/IBM-Swift/Package-Builder.git
61+
- git clone https://github.com/Kitura/Package-Builder.git
6262

6363
script:
6464
- openssl version

BlueRSA.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "BlueRSA"
3-
s.version = "1.0.200"
3+
s.version = "1.0.201"
44
s.summary = "Swift cross-platform RSA crypto library using CommonCrypto/libcrypto via Package Manager."
55
s.homepage = "https://github.com/Kitura/BlueRSA"
66
s.license = { :type => "Apache License, Version 2.0" }

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
<a href="https://www.kitura.io/packages.html#all">
33
<img src="https://img.shields.io/badge/docs-kitura.io-1FBCE4.svg" alt="APIDoc">
44
</a>
5-
<a href="https://travis-ci.org/IBM-Swift/BlueRSA">
6-
<img src="https://travis-ci.org/IBM-Swift/BlueRSA.svg?branch=master" alt="Build Status - Master">
5+
<a href="https://travis-ci.org/Kitura/BlueRSA">
6+
<img src="https://travis-ci.org/Kitura/BlueRSA.svg?branch=master" alt="Build Status - Master">
77
</a>
88
<img src="https://img.shields.io/badge/os-macOS-green.svg?style=flat" alt="macOS">
99
<img src="https://img.shields.io/badge/os-iOS-green.svg?style=flat" alt="iOS">
@@ -79,15 +79,15 @@ To run the supplied unit tests for **CryptorRSA** from the command line:
7979
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:
8080
```
8181
dependencies: [
82-
.Package(url: "https://github.com/IBM-Swift/BlueRSA", majorVersion: <majorVersion>, minor: <minor>)
82+
.Package(url: "https://github.com/Kitura/BlueRSA", majorVersion: <majorVersion>, minor: <minor>)
8383
]
8484
```
8585

8686
#### Carthage
8787

8888
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:
8989
```
90-
github "IBM-Swift/BlueRSA" ~> <majorVersion>.<minor>
90+
github "Kitura/BlueRSA" ~> <majorVersion>.<minor>
9191
```
9292

9393
### Before starting
@@ -315,4 +315,4 @@ We love to talk server-side Swift and Kitura. Join our [Slack](http://swift-at-i
315315

316316
## License
317317

318-
This library is licensed under Apache 2.0. Full license text is available in [LICENSE](https://github.com/IBM-Swift/BlueRSA/blob/master/LICENSE).
318+
This library is licensed under Apache 2.0. Full license text is available in [LICENSE](https://github.com/Kitura/BlueRSA/blob/master/LICENSE).

Sources/CryptorRSA/CryptorRSA.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -938,7 +938,7 @@ public class CryptorRSA {
938938
// Unlike other return values above, this return indicates if signature verifies or not
939939
rc = signature.data.withUnsafeBytes({ (sig: UnsafeRawBufferPointer) -> Int32 in
940940
// Wrapper for OpenSSL EVP_DigestVerifyFinal function defined in
941-
// IBM-Swift/OpenSSL/shim.h, to provide compatibility with OpenSSL
941+
// Kitura/OpenSSL/shim.h, to provide compatibility with OpenSSL
942942
// 1.0.1 and 1.0.2 on Ubuntu 14.04 and 16.04, respectively.
943943
return SSL_EVP_digestVerifyFinal_wrapper(md_ctx, sig.baseAddress?.assumingMemoryBound(to: UInt8.self), signature.data.count)
944944
})

0 commit comments

Comments
 (0)