Skip to content
This repository has been archived by the owner on Apr 9, 2021. It is now read-only.

Commit

Permalink
Fixing typo
Browse files Browse the repository at this point in the history
  • Loading branch information
FredericJacobs committed Nov 27, 2014
1 parent 9421f39 commit 42781b5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion AxolotlKit.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "AxolotlKit"
s.version = "0.0.2"
s.version = "0.2"
s.summary = "AxolotlKit is a Free implementation of the Axolotl protocol in Objective-C"
s.homepage = "https://github.com/WhisperSystems/AxolotlKit"
s.license = "GPLv2"
Expand Down
2 changes: 1 addition & 1 deletion AxolotlKit/Classes/Sessions/SessionBuilder.m
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ - (void)processPrekeyBundle:(PreKeyBundle*)preKeyBundle{
@throw [NSException exceptionWithName:UntrustedIdentityKeyException reason:@"Identity key is not valid" userInfo:@{}];
}

if (![Ed25519 verifySignature:preKeyBundle.signedPreKeySignature publicKey:theirIdentityKey data:theirSignedPreKey]) {
if (![Ed25519 verifySignature:preKeyBundle.signedPreKeySignature publicKey:theirIdentityKey data:preKeyBundle.signedPreKeyPublic]) {
@throw [NSException exceptionWithName:InvalidKeyException reason:@"KeyIsNotValidlySigned" userInfo:nil];
}

Expand Down

0 comments on commit 42781b5

Please sign in to comment.