aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/org/gnunet/secretsharing
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/org/gnunet/secretsharing')
-rw-r--r--src/main/java/org/gnunet/secretsharing/Ciphertext.java2
-rw-r--r--src/main/java/org/gnunet/secretsharing/DecryptCallback.java2
-rw-r--r--src/main/java/org/gnunet/secretsharing/Decryption.java2
-rw-r--r--src/main/java/org/gnunet/secretsharing/FieldElement.java2
-rw-r--r--src/main/java/org/gnunet/secretsharing/KeyGeneration.java2
-rw-r--r--src/main/java/org/gnunet/secretsharing/Parameters.java2
-rw-r--r--src/main/java/org/gnunet/secretsharing/Plaintext.java2
-rw-r--r--src/main/java/org/gnunet/secretsharing/SecretReadyCallback.java2
-rw-r--r--src/main/java/org/gnunet/secretsharing/ThresholdPublicKey.java2
-rw-r--r--src/main/java/org/gnunet/secretsharing/messages/ClientDecryptMessage.java2
-rw-r--r--src/main/java/org/gnunet/secretsharing/messages/DecryptDoneMessage.java2
-rw-r--r--src/main/java/org/gnunet/secretsharing/messages/GenerateMessage.java2
-rw-r--r--src/main/java/org/gnunet/secretsharing/messages/SecretReadyMessage.java2
-rw-r--r--src/main/java/org/gnunet/secretsharing/package-info.java2
14 files changed, 14 insertions, 14 deletions
diff --git a/src/main/java/org/gnunet/secretsharing/Ciphertext.java b/src/main/java/org/gnunet/secretsharing/Ciphertext.java
index 10b056e..29238d6 100644
--- a/src/main/java/org/gnunet/secretsharing/Ciphertext.java
+++ b/src/main/java/org/gnunet/secretsharing/Ciphertext.java
@@ -1,6 +1,6 @@
1/* 1/*
2 This file is part of GNUnet. 2 This file is part of GNUnet.
3 (C) 2014 Christian Grothoff (and other contributing authors) 3 Copyright (C) 2014 Christian Grothoff (and other contributing authors)
4 4
5 GNUnet is free software; you can redistribute it and/or modify 5 GNUnet is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published 6 it under the terms of the GNU General Public License as published
diff --git a/src/main/java/org/gnunet/secretsharing/DecryptCallback.java b/src/main/java/org/gnunet/secretsharing/DecryptCallback.java
index 2c4386f..49172b3 100644
--- a/src/main/java/org/gnunet/secretsharing/DecryptCallback.java
+++ b/src/main/java/org/gnunet/secretsharing/DecryptCallback.java
@@ -1,6 +1,6 @@
1/* 1/*
2 This file is part of GNUnet. 2 This file is part of GNUnet.
3 (C) 2014 Christian Grothoff (and other contributing authors) 3 Copyright (C) 2014 Christian Grothoff (and other contributing authors)
4 4
5 GNUnet is free software; you can redistribute it and/or modify 5 GNUnet is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published 6 it under the terms of the GNU General Public License as published
diff --git a/src/main/java/org/gnunet/secretsharing/Decryption.java b/src/main/java/org/gnunet/secretsharing/Decryption.java
index b37af46..ad0026a 100644
--- a/src/main/java/org/gnunet/secretsharing/Decryption.java
+++ b/src/main/java/org/gnunet/secretsharing/Decryption.java
@@ -1,6 +1,6 @@
1/* 1/*
2 This file is part of GNUnet. 2 This file is part of GNUnet.
3 (C) 2014 Christian Grothoff (and other contributing authors) 3 Copyright (C) 2014 Christian Grothoff (and other contributing authors)
4 4
5 GNUnet is free software; you can redistribute it and/or modify 5 GNUnet is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published 6 it under the terms of the GNU General Public License as published
diff --git a/src/main/java/org/gnunet/secretsharing/FieldElement.java b/src/main/java/org/gnunet/secretsharing/FieldElement.java
index e1fcac6..6566d8c 100644
--- a/src/main/java/org/gnunet/secretsharing/FieldElement.java
+++ b/src/main/java/org/gnunet/secretsharing/FieldElement.java
@@ -1,6 +1,6 @@
1/* 1/*
2 This file is part of GNUnet. 2 This file is part of GNUnet.
3 (C) 2014 Christian Grothoff (and other contributing authors) 3 Copyright (C) 2014 Christian Grothoff (and other contributing authors)
4 4
5 GNUnet is free software; you can redistribute it and/or modify 5 GNUnet is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published 6 it under the terms of the GNU General Public License as published
diff --git a/src/main/java/org/gnunet/secretsharing/KeyGeneration.java b/src/main/java/org/gnunet/secretsharing/KeyGeneration.java
index e467ae7..e76d6b8 100644
--- a/src/main/java/org/gnunet/secretsharing/KeyGeneration.java
+++ b/src/main/java/org/gnunet/secretsharing/KeyGeneration.java
@@ -1,6 +1,6 @@
1/* 1/*
2 This file is part of GNUnet. 2 This file is part of GNUnet.
3 (C) 2014 Christian Grothoff (and other contributing authors) 3 Copyright (C) 2014 Christian Grothoff (and other contributing authors)
4 4
5 GNUnet is free software; you can redistribute it and/or modify 5 GNUnet is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published 6 it under the terms of the GNU General Public License as published
diff --git a/src/main/java/org/gnunet/secretsharing/Parameters.java b/src/main/java/org/gnunet/secretsharing/Parameters.java
index 6147256..6b78c03 100644
--- a/src/main/java/org/gnunet/secretsharing/Parameters.java
+++ b/src/main/java/org/gnunet/secretsharing/Parameters.java
@@ -1,6 +1,6 @@
1/* 1/*
2 This file is part of GNUnet. 2 This file is part of GNUnet.
3 (C) 2014 Christian Grothoff (and other contributing authors) 3 Copyright (C) 2014 Christian Grothoff (and other contributing authors)
4 4
5 GNUnet is free software; you can redistribute it and/or modify 5 GNUnet is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published 6 it under the terms of the GNU General Public License as published
diff --git a/src/main/java/org/gnunet/secretsharing/Plaintext.java b/src/main/java/org/gnunet/secretsharing/Plaintext.java
index a3d87c8..96af24f 100644
--- a/src/main/java/org/gnunet/secretsharing/Plaintext.java
+++ b/src/main/java/org/gnunet/secretsharing/Plaintext.java
@@ -1,6 +1,6 @@
1/* 1/*
2 This file is part of GNUnet. 2 This file is part of GNUnet.
3 (C) 2014 Christian Grothoff (and other contributing authors) 3 Copyright (C) 2014 Christian Grothoff (and other contributing authors)
4 4
5 GNUnet is free software; you can redistribute it and/or modify 5 GNUnet is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published 6 it under the terms of the GNU General Public License as published
diff --git a/src/main/java/org/gnunet/secretsharing/SecretReadyCallback.java b/src/main/java/org/gnunet/secretsharing/SecretReadyCallback.java
index a0f9e42..bf5b436 100644
--- a/src/main/java/org/gnunet/secretsharing/SecretReadyCallback.java
+++ b/src/main/java/org/gnunet/secretsharing/SecretReadyCallback.java
@@ -1,6 +1,6 @@
1/* 1/*
2 This file is part of GNUnet. 2 This file is part of GNUnet.
3 (C) 2014 Christian Grothoff (and other contributing authors) 3 Copyright (C) 2014 Christian Grothoff (and other contributing authors)
4 4
5 GNUnet is free software; you can redistribute it and/or modify 5 GNUnet is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published 6 it under the terms of the GNU General Public License as published
diff --git a/src/main/java/org/gnunet/secretsharing/ThresholdPublicKey.java b/src/main/java/org/gnunet/secretsharing/ThresholdPublicKey.java
index 4560788..13fc1b1 100644
--- a/src/main/java/org/gnunet/secretsharing/ThresholdPublicKey.java
+++ b/src/main/java/org/gnunet/secretsharing/ThresholdPublicKey.java
@@ -1,6 +1,6 @@
1/* 1/*
2 This file is part of GNUnet. 2 This file is part of GNUnet.
3 (C) 2014 Christian Grothoff (and other contributing authors) 3 Copyright (C) 2014 Christian Grothoff (and other contributing authors)
4 4
5 GNUnet is free software; you can redistribute it and/or modify 5 GNUnet is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published 6 it under the terms of the GNU General Public License as published
diff --git a/src/main/java/org/gnunet/secretsharing/messages/ClientDecryptMessage.java b/src/main/java/org/gnunet/secretsharing/messages/ClientDecryptMessage.java
index bfe2efc..555dfda 100644
--- a/src/main/java/org/gnunet/secretsharing/messages/ClientDecryptMessage.java
+++ b/src/main/java/org/gnunet/secretsharing/messages/ClientDecryptMessage.java
@@ -1,6 +1,6 @@
1/* 1/*
2 This file is part of GNUnet. 2 This file is part of GNUnet.
3 (C) 2014 Christian Grothoff (and other contributing authors) 3 Copyright (C) 2014 Christian Grothoff (and other contributing authors)
4 4
5 GNUnet is free software; you can redistribute it and/or modify 5 GNUnet is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published 6 it under the terms of the GNU General Public License as published
diff --git a/src/main/java/org/gnunet/secretsharing/messages/DecryptDoneMessage.java b/src/main/java/org/gnunet/secretsharing/messages/DecryptDoneMessage.java
index 488e28b..77d72bf 100644
--- a/src/main/java/org/gnunet/secretsharing/messages/DecryptDoneMessage.java
+++ b/src/main/java/org/gnunet/secretsharing/messages/DecryptDoneMessage.java
@@ -1,6 +1,6 @@
1/* 1/*
2 This file is part of GNUnet. 2 This file is part of GNUnet.
3 (C) 2014 Christian Grothoff (and other contributing authors) 3 Copyright (C) 2014 Christian Grothoff (and other contributing authors)
4 4
5 GNUnet is free software; you can redistribute it and/or modify 5 GNUnet is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published 6 it under the terms of the GNU General Public License as published
diff --git a/src/main/java/org/gnunet/secretsharing/messages/GenerateMessage.java b/src/main/java/org/gnunet/secretsharing/messages/GenerateMessage.java
index 135b254..754b688 100644
--- a/src/main/java/org/gnunet/secretsharing/messages/GenerateMessage.java
+++ b/src/main/java/org/gnunet/secretsharing/messages/GenerateMessage.java
@@ -1,7 +1,7 @@
1/* 1/*
2 2
3 This file is part of GNUnet. 3 This file is part of GNUnet.
4 (C) 2014 Christian Grothoff (and other contributing authors) 4 Copyright (C) 2014 Christian Grothoff (and other contributing authors)
5 5
6 GNUnet is free software; you can redistribute it and/or modify 6 GNUnet is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published 7 it under the terms of the GNU General Public License as published
diff --git a/src/main/java/org/gnunet/secretsharing/messages/SecretReadyMessage.java b/src/main/java/org/gnunet/secretsharing/messages/SecretReadyMessage.java
index 479fe2c..7675008 100644
--- a/src/main/java/org/gnunet/secretsharing/messages/SecretReadyMessage.java
+++ b/src/main/java/org/gnunet/secretsharing/messages/SecretReadyMessage.java
@@ -1,6 +1,6 @@
1/* 1/*
2 This file is part of GNUnet. 2 This file is part of GNUnet.
3 (C) 2014 Christian Grothoff (and other contributing authors) 3 Copyright (C) 2014 Christian Grothoff (and other contributing authors)
4 4
5 GNUnet is free software; you can redistribute it and/or modify 5 GNUnet is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published 6 it under the terms of the GNU General Public License as published
diff --git a/src/main/java/org/gnunet/secretsharing/package-info.java b/src/main/java/org/gnunet/secretsharing/package-info.java
index 8ba0a1c..f12ed15 100644
--- a/src/main/java/org/gnunet/secretsharing/package-info.java
+++ b/src/main/java/org/gnunet/secretsharing/package-info.java
@@ -1,6 +1,6 @@
1/* 1/*
2 This file is part of GNUnet. 2 This file is part of GNUnet.
3 (C) 2014 Christian Grothoff (and other contributing authors) 3 Copyright (C) 2014 Christian Grothoff (and other contributing authors)
4 4
5 GNUnet is free software; you can redistribute it and/or modify 5 GNUnet is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published 6 it under the terms of the GNU General Public License as published