Skip to content

Commit

Permalink
Merge pull request #1053 from nnsW3/docs-fix-spelling-issues
Browse files Browse the repository at this point in the history
Docs fix spelling issues
  • Loading branch information
krzyzanowskim authored Aug 24, 2024
2 parents 8f0387d + 4c6875b commit 6d7c104
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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

0 comments on commit 6d7c104

Please sign in to comment.