Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit e4cc8d6

Browse files
committedAug 28, 2017
Fixed order of parameters
1 parent b290a74 commit e4cc8d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎ThinkSharp.Licensing.Shared/Signing/RSA/RsaExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public static SigningKeyPair GenerateRsaKeyPair(this IKeyGenerator keyGenerator)
5353
var privateKey = Convert.ToBase64String(cp.ExportCspBlob(true));
5454
var publicKey = Convert.ToBase64String(cp.ExportCspBlob(false));
5555

56-
return new SigningKeyPair(privateKey, publicKey);
56+
return new SigningKeyPair(publicKey, privateKey);
5757
}
5858
}
5959
}

0 commit comments

Comments
 (0)
Failed to load comments.