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

Docs fix spelling issues #1053

Merged
merged 2 commits into from
Aug 24, 2024
Merged
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
2 changes: 1 addition & 1 deletion Sources/CryptoSwift/ASN1/ASN1.swift
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ enum ASN1 {
/// An array of more `ASN1.Node`s
case sequence(nodes: [Node])
/// An integer
/// - Note: This ASN1 Encoder makes no assumptions about the sign and bit order of the integers passed in. The conversion from Integer to Data is your responsiblity.
/// - Note: This ASN1 Encoder makes no assumptions about the sign and bit order of the integers passed in. The conversion from Integer to Data is your responsibility.
case integer(data: Data)
/// An objectIdentifier
case objectIdentifier(data: Data)
Expand Down
2 changes: 1 addition & 1 deletion Sources/CryptoSwift/BlockMode/GCM.swift
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ private final class GF {
self.h = h
self.x = 0

// Calculate for AAD at the begining
// Calculate for AAD at the beginning
self.x = GF.calculateX(aad: aad, x: self.x, h: h, blockSize: blockSize)
}

Expand Down