Skip to content
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 lib/ssh_data/public_key/dsa.rb
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def initialize(algo:, p:, q:, g:, y:)
# Verify an SSH signature.
#
# signed_data - The String message that the signature was calculated over.
# signature - The binarty String signature with SSH encoding.
# signature - The binary String signature with SSH encoding.
#
# Returns boolean.
def verify(signed_data, signature)
Expand Down
2 changes: 1 addition & 1 deletion lib/ssh_data/public_key/ecdsa.rb
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def initialize(algo:, curve:, public_key:)
# Verify an SSH signature.
#
# signed_data - The String message that the signature was calculated over.
# signature - The binarty String signature with SSH encoding.
# signature - The binary String signature with SSH encoding.
#
# Returns boolean.
def verify(signed_data, signature)
Expand Down
2 changes: 1 addition & 1 deletion lib/ssh_data/public_key/ed25519.rb
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def initialize(algo:, pk:)
# Verify an SSH signature.
#
# signed_data - The String message that the signature was calculated over.
# signature - The binarty String signature with SSH encoding.
# signature - The binary String signature with SSH encoding.
#
# Returns boolean.
def verify(signed_data, signature)
Expand Down
2 changes: 1 addition & 1 deletion lib/ssh_data/public_key/rsa.rb
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def initialize(algo:, e:, n:)
# Verify an SSH signature.
#
# signed_data - The String message that the signature was calculated over.
# signature - The binarty String signature with SSH encoding.
# signature - The binary String signature with SSH encoding.
#
# Returns boolean.
def verify(signed_data, signature)
Expand Down