Skip to content
This repository has been archived by the owner on Sep 3, 2020. It is now read-only.

Commit

Permalink
beta
Browse files Browse the repository at this point in the history
  • Loading branch information
tanner0101 committed Mar 27, 2017
1 parent 9d89307 commit e01f5cf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ let package = Package(
name: "Crypto",
dependencies: [
// Module for generating random bytes and numbers.
.Package(url: "https://github.com/vapor/random.git", majorVersion: 0),
.Package(url: "https://github.com/vapor/random.git", Version(1,0,0, prereleaseIdentifiers: ["beta"])),

// LibreSSL / OpenSSL module map for Swift.
.Package(url: "https://github.com/vapor/ctls.git", majorVersion: 0)
.Package(url: "https://github.com/vapor/ctls.git", Version(1,0,0, prereleaseIdentifiers: ["beta"]))
]
)
2 changes: 1 addition & 1 deletion Tests/CryptoTests/CipherTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class CipherTests: XCTestCase {
XCTAssertEqual(encrypted.hexString, "7168725af0b510be")

let decrypted = try cipher.decrypt(encrypted)
XCTAssertEqual(decrypted.string, secret)
XCTAssertEqual(decrypted.makeString(), secret)
}

func testCipherStability() {
Expand Down

0 comments on commit e01f5cf

Please # to comment.