Skip to content

Commit

Permalink
Bump version number to represent updated point encoding.
Browse files Browse the repository at this point in the history
  • Loading branch information
moserware committed Nov 21, 2013
1 parent 2c28cf9 commit 60b208d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions SecretSplitter/Security/Cryptography/SecretSplitter.cs
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
using System;
using Moserware.Algebra;
using Moserware.Numerics;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Numerics;
using System.Security;
using System.Security.Cryptography;
using Moserware.Algebra;
using Moserware.Numerics;

namespace Moserware.Security.Cryptography {
public static class SecretSplitter {
Expand Down Expand Up @@ -149,7 +149,7 @@ public SecretSplitterException(string message)

namespace Moserware.Security.Cryptography.Versioning {
public static class VersionInfo {
public const string CurrentVersionString = "0.1";
public const string CurrentVersionString = "0.11";
public static Version CurrentVersion = new Version(CurrentVersionString);
}
}
10 changes: 5 additions & 5 deletions Ssss/Program.cs
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
using System;
using Moserware.Algebra;
using Moserware.Numerics;
using Moserware.Security.Cryptography;
using System;
using System.Collections.Generic;
using System.Globalization;
using System.IO;
using System.Numerics;
using System.Reflection;
using System.Text;
using Moserware.Algebra;
using Moserware.Numerics;
using Moserware.Security.Cryptography;

namespace Ssss {
// NOTE: I (Jeff) went out of my way to make this program very similar to B. Poettering's
Expand All @@ -16,7 +16,7 @@ namespace Ssss {
// permission from B. Poettering to release my compatible derivation under the MIT license
// (see my License.txt) included with this code for more details.
internal class Program {
private const string Version = "0.51 (.net)";
private const string Version = "0.52 (.net)";

private static void Main(string[] args) {
Arguments.ParseArguments(args);
Expand Down

0 comments on commit 60b208d

Please sign in to comment.