Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit b82e6a7

Browse filesBrowse files
author
Colin Tremblay
committed
fix mistake
1 parent beed8d0 commit b82e6a7
Copy full SHA for b82e6a7

File tree

Expand file treeCollapse file tree

4 files changed

+20
-4
lines changed
Filter options
Expand file treeCollapse file tree

4 files changed

+20
-4
lines changed

‎Package.resolved

Copy file name to clipboardExpand all lines: Package.resolved
+16Lines changed: 16 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎Package.swift

Copy file name to clipboardExpand all lines: Package.swift
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ let package = Package(
1515
dependencies: [
1616
// Dependencies declare other packages that this package depends on.
1717
.package(
18-
name: "Argon2",
18+
name: "argon2",
1919
url: "https://github.com/P-H-C/phc-winner-argon2.git", .branch("master")
2020
)
2121
],
@@ -24,7 +24,7 @@ let package = Package(
2424
// Targets can depend on other targets in this package, and on products in packages this package depends on.
2525
.target(
2626
name: "Argon2Swift",
27-
dependencies: ["Argon2"],
27+
dependencies: ["argon2"],
2828
path: "Sources/Swift"),
2929
.testTarget(
3030
name: "Argon2SwiftTests",

‎Sources/Modules/module.modulemap

Copy file name to clipboard
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module Argon2 {
1+
module argon2 {
22
header "../Argon2/include/argon2.h"
33
export *
44
}

‎Sources/Swift/Argon2Swift.swift

Copy file name to clipboardExpand all lines: Sources/Swift/Argon2Swift.swift
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66

77
import Foundation
8-
import Argon2
8+
import argon2
99

1010
/// Main class to handle all Argon2 hashing and verification
1111
/// ### Usage Example ###

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.