Skip to content

Commit 3de52aa

Browse files
committed
Update headers, add LICENSE file
// FREEBIE
1 parent a1c93ed commit 3de52aa

File tree

68 files changed

+932
-611
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

68 files changed

+932
-611
lines changed

LICENSE

+674
Large diffs are not rendered by default.

java/src/main/java/org/whispersystems/signalservice/api/SignalServiceAccountManager.java

+3-13
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,9 @@
11
/**
2-
* Copyright (C) 2014 Open Whisper Systems
2+
* Copyright (C) 2014-2016 Open Whisper Systems
33
*
4-
* This program is free software: you can redistribute it and/or modify
5-
* it under the terms of the GNU General Public License as published by
6-
* the Free Software Foundation, either version 3 of the License, or
7-
* (at your option) any later version.
8-
*
9-
* This program is distributed in the hope that it will be useful,
10-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
11-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12-
* GNU General Public License for more details.
13-
*
14-
* You should have received a copy of the GNU General Public License
15-
* along with this program. If not, see <http://www.gnu.org/licenses/>.
4+
* Licensed according to the LICENSE file in this repository.
165
*/
6+
177
package org.whispersystems.signalservice.api;
188

199

java/src/main/java/org/whispersystems/signalservice/api/SignalServiceMessagePipe.java

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/**
2+
* Copyright (C) 2014-2016 Open Whisper Systems
3+
*
4+
* Licensed according to the LICENSE file in this repository.
5+
*/
6+
17
package org.whispersystems.signalservice.api;
28

39
import org.whispersystems.libsignal.InvalidVersionException;

java/src/main/java/org/whispersystems/signalservice/api/SignalServiceMessageReceiver.java

+3-13
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,9 @@
11
/**
2-
* Copyright (C) 2014 Open Whisper Systems
2+
* Copyright (C) 2014-2016 Open Whisper Systems
33
*
4-
* This program is free software: you can redistribute it and/or modify
5-
* it under the terms of the GNU General Public License as published by
6-
* the Free Software Foundation, either version 3 of the License, or
7-
* (at your option) any later version.
8-
*
9-
* This program is distributed in the hope that it will be useful,
10-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
11-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12-
* GNU General Public License for more details.
13-
*
14-
* You should have received a copy of the GNU General Public License
15-
* along with this program. If not, see <http://www.gnu.org/licenses/>.
4+
* Licensed according to the LICENSE file in this repository.
165
*/
6+
177
package org.whispersystems.signalservice.api;
188

199
import org.whispersystems.libsignal.InvalidMessageException;

java/src/main/java/org/whispersystems/signalservice/api/SignalServiceMessageSender.java

+2-13
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,7 @@
11
/**
2-
* Copyright (C) 2014 Open Whisper Systems
2+
* Copyright (C) 2014-2016 Open Whisper Systems
33
*
4-
* This program is free software: you can redistribute it and/or modify
5-
* it under the terms of the GNU General Public License as published by
6-
* the Free Software Foundation, either version 3 of the License, or
7-
* (at your option) any later version.
8-
*
9-
* This program is distributed in the hope that it will be useful,
10-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
11-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12-
* GNU General Public License for more details.
13-
*
14-
* You should have received a copy of the GNU General Public License
15-
* along with this program. If not, see <http://www.gnu.org/licenses/>.
4+
* Licensed according to the LICENSE file in this repository.
165
*/
176
package org.whispersystems.signalservice.api;
187

java/src/main/java/org/whispersystems/signalservice/api/crypto/AttachmentCipherInputStream.java

+3-13
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,9 @@
11
/**
2-
* Copyright (C) 2013-2014 Open Whisper Systems
2+
* Copyright (C) 2014-2016 Open Whisper Systems
33
*
4-
* This program is free software: you can redistribute it and/or modify
5-
* it under the terms of the GNU General Public License as published by
6-
* the Free Software Foundation, either version 3 of the License, or
7-
* (at your option) any later version.
8-
*
9-
* This program is distributed in the hope that it will be useful,
10-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
11-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12-
* GNU General Public License for more details.
13-
*
14-
* You should have received a copy of the GNU General Public License
15-
* along with this program. If not, see <http://www.gnu.org/licenses/>.
4+
* Licensed according to the LICENSE file in this repository.
165
*/
6+
177
package org.whispersystems.signalservice.api.crypto;
188

199
import org.whispersystems.libsignal.InvalidMacException;

java/src/main/java/org/whispersystems/signalservice/api/crypto/AttachmentCipherOutputStream.java

+3-13
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,9 @@
11
/**
2-
* Copyright (C) 2014 Open Whisper Systems
2+
* Copyright (C) 2014-2016 Open Whisper Systems
33
*
4-
* This program is free software: you can redistribute it and/or modify
5-
* it under the terms of the GNU General Public License as published by
6-
* the Free Software Foundation, either version 3 of the License, or
7-
* (at your option) any later version.
8-
*
9-
* This program is distributed in the hope that it will be useful,
10-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
11-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12-
* GNU General Public License for more details.
13-
*
14-
* You should have received a copy of the GNU General Public License
15-
* along with this program. If not, see <http://www.gnu.org/licenses/>.
4+
* Licensed according to the LICENSE file in this repository.
165
*/
6+
177
package org.whispersystems.signalservice.api.crypto;
188

199
import org.whispersystems.signalservice.internal.util.Util;

java/src/main/java/org/whispersystems/signalservice/api/crypto/SignalServiceCipher.java

+3-13
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,9 @@
11
/**
2-
* Copyright (C) 2014 Open Whisper Systems
2+
* Copyright (C) 2014-2016 Open Whisper Systems
33
*
4-
* This program is free software: you can redistribute it and/or modify
5-
* it under the terms of the GNU General Public License as published by
6-
* the Free Software Foundation, either version 3 of the License, or
7-
* (at your option) any later version.
8-
*
9-
* This program is distributed in the hope that it will be useful,
10-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
11-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12-
* GNU General Public License for more details.
13-
*
14-
* You should have received a copy of the GNU General Public License
15-
* along with this program. If not, see <http://www.gnu.org/licenses/>.
4+
* Licensed according to the LICENSE file in this repository.
165
*/
6+
177
package org.whispersystems.signalservice.api.crypto;
188

199
import com.google.protobuf.InvalidProtocolBufferException;

java/src/main/java/org/whispersystems/signalservice/api/crypto/UntrustedIdentityException.java

+3-13
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,9 @@
11
/**
2-
* Copyright (C) 2014 Open Whisper Systems
2+
* Copyright (C) 2014-2016 Open Whisper Systems
33
*
4-
* This program is free software: you can redistribute it and/or modify
5-
* it under the terms of the GNU General Public License as published by
6-
* the Free Software Foundation, either version 3 of the License, or
7-
* (at your option) any later version.
8-
*
9-
* This program is distributed in the hope that it will be useful,
10-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
11-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12-
* GNU General Public License for more details.
13-
*
14-
* You should have received a copy of the GNU General Public License
15-
* along with this program. If not, see <http://www.gnu.org/licenses/>.
4+
* Licensed according to the LICENSE file in this repository.
165
*/
6+
177
package org.whispersystems.signalservice.api.crypto;
188

199
import org.whispersystems.libsignal.IdentityKey;

java/src/main/java/org/whispersystems/signalservice/api/messages/SignalServiceAttachment.java

+3-13
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,9 @@
11
/**
2-
* Copyright (C) 2014 Open Whisper Systems
2+
* Copyright (C) 2014-2016 Open Whisper Systems
33
*
4-
* This program is free software: you can redistribute it and/or modify
5-
* it under the terms of the GNU General Public License as published by
6-
* the Free Software Foundation, either version 3 of the License, or
7-
* (at your option) any later version.
8-
*
9-
* This program is distributed in the hope that it will be useful,
10-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
11-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12-
* GNU General Public License for more details.
13-
*
14-
* You should have received a copy of the GNU General Public License
15-
* along with this program. If not, see <http://www.gnu.org/licenses/>.
4+
* Licensed according to the LICENSE file in this repository.
165
*/
6+
177
package org.whispersystems.signalservice.api.messages;
188

199
import java.io.InputStream;

java/src/main/java/org/whispersystems/signalservice/api/messages/SignalServiceAttachmentPointer.java

+3-13
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,9 @@
11
/**
2-
* Copyright (C) 2014 Open Whisper Systems
2+
* Copyright (C) 2014-2016 Open Whisper Systems
33
*
4-
* This program is free software: you can redistribute it and/or modify
5-
* it under the terms of the GNU General Public License as published by
6-
* the Free Software Foundation, either version 3 of the License, or
7-
* (at your option) any later version.
8-
*
9-
* This program is distributed in the hope that it will be useful,
10-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
11-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12-
* GNU General Public License for more details.
13-
*
14-
* You should have received a copy of the GNU General Public License
15-
* along with this program. If not, see <http://www.gnu.org/licenses/>.
4+
* Licensed according to the LICENSE file in this repository.
165
*/
6+
177
package org.whispersystems.signalservice.api.messages;
188

199
import org.whispersystems.libsignal.util.guava.Optional;

java/src/main/java/org/whispersystems/signalservice/api/messages/SignalServiceAttachmentStream.java

+3-13
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,9 @@
11
/**
2-
* Copyright (C) 2014 Open Whisper Systems
2+
* Copyright (C) 2014-2016 Open Whisper Systems
33
*
4-
* This program is free software: you can redistribute it and/or modify
5-
* it under the terms of the GNU General Public License as published by
6-
* the Free Software Foundation, either version 3 of the License, or
7-
* (at your option) any later version.
8-
*
9-
* This program is distributed in the hope that it will be useful,
10-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
11-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12-
* GNU General Public License for more details.
13-
*
14-
* You should have received a copy of the GNU General Public License
15-
* along with this program. If not, see <http://www.gnu.org/licenses/>.
4+
* Licensed according to the LICENSE file in this repository.
165
*/
6+
177
package org.whispersystems.signalservice.api.messages;
188

199
import org.whispersystems.libsignal.util.guava.Optional;

java/src/main/java/org/whispersystems/signalservice/api/messages/SignalServiceContent.java

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/**
2+
* Copyright (C) 2014-2016 Open Whisper Systems
3+
*
4+
* Licensed according to the LICENSE file in this repository.
5+
*/
6+
17
package org.whispersystems.signalservice.api.messages;
28

39
import org.whispersystems.libsignal.util.guava.Optional;

java/src/main/java/org/whispersystems/signalservice/api/messages/SignalServiceDataMessage.java

+3-13
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,9 @@
11
/**
2-
* Copyright (C) 2014 Open Whisper Systems
2+
* Copyright (C) 2014-2016 Open Whisper Systems
33
*
4-
* This program is free software: you can redistribute it and/or modify
5-
* it under the terms of the GNU General Public License as published by
6-
* the Free Software Foundation, either version 3 of the License, or
7-
* (at your option) any later version.
8-
*
9-
* This program is distributed in the hope that it will be useful,
10-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
11-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12-
* GNU General Public License for more details.
13-
*
14-
* You should have received a copy of the GNU General Public License
15-
* along with this program. If not, see <http://www.gnu.org/licenses/>.
4+
* Licensed according to the LICENSE file in this repository.
165
*/
6+
177
package org.whispersystems.signalservice.api.messages;
188

199
import org.whispersystems.libsignal.util.guava.Optional;

java/src/main/java/org/whispersystems/signalservice/api/messages/SignalServiceEnvelope.java

+3-13
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,9 @@
11
/**
2-
* Copyright (C) 2014 Open Whisper Systems
2+
* Copyright (C) 2014-2016 Open Whisper Systems
33
*
4-
* This program is free software: you can redistribute it and/or modify
5-
* it under the terms of the GNU General Public License as published by
6-
* the Free Software Foundation, either version 3 of the License, or
7-
* (at your option) any later version.
8-
*
9-
* This program is distributed in the hope that it will be useful,
10-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
11-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12-
* GNU General Public License for more details.
13-
*
14-
* You should have received a copy of the GNU General Public License
15-
* along with this program. If not, see <http://www.gnu.org/licenses/>.
4+
* Licensed according to the LICENSE file in this repository.
165
*/
6+
177
package org.whispersystems.signalservice.api.messages;
188

199
import com.google.protobuf.ByteString;

java/src/main/java/org/whispersystems/signalservice/api/messages/SignalServiceGroup.java

+3-13
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,9 @@
11
/**
2-
* Copyright (C) 2014 Open Whisper Systems
2+
* Copyright (C) 2014-2016 Open Whisper Systems
33
*
4-
* This program is free software: you can redistribute it and/or modify
5-
* it under the terms of the GNU General Public License as published by
6-
* the Free Software Foundation, either version 3 of the License, or
7-
* (at your option) any later version.
8-
*
9-
* This program is distributed in the hope that it will be useful,
10-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
11-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12-
* GNU General Public License for more details.
13-
*
14-
* You should have received a copy of the GNU General Public License
15-
* along with this program. If not, see <http://www.gnu.org/licenses/>.
4+
* Licensed according to the LICENSE file in this repository.
165
*/
6+
177
package org.whispersystems.signalservice.api.messages;
188

199
import org.whispersystems.libsignal.util.guava.Optional;

java/src/main/java/org/whispersystems/signalservice/api/messages/multidevice/DeviceContact.java

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/**
2+
* Copyright (C) 2014-2016 Open Whisper Systems
3+
*
4+
* Licensed according to the LICENSE file in this repository.
5+
*/
6+
17
package org.whispersystems.signalservice.api.messages.multidevice;
28

39
import org.whispersystems.libsignal.util.guava.Optional;

java/src/main/java/org/whispersystems/signalservice/api/messages/multidevice/DeviceContactsInputStream.java

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/**
2+
* Copyright (C) 2014-2016 Open Whisper Systems
3+
*
4+
* Licensed according to the LICENSE file in this repository.
5+
*/
6+
17
package org.whispersystems.signalservice.api.messages.multidevice;
28

39
import org.whispersystems.libsignal.util.guava.Optional;

java/src/main/java/org/whispersystems/signalservice/api/messages/multidevice/DeviceContactsOutputStream.java

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/**
2+
* Copyright (C) 2014-2016 Open Whisper Systems
3+
*
4+
* Licensed according to the LICENSE file in this repository.
5+
*/
6+
17
package org.whispersystems.signalservice.api.messages.multidevice;
28

39
import org.whispersystems.signalservice.internal.push.SignalServiceProtos;

java/src/main/java/org/whispersystems/signalservice/api/messages/multidevice/DeviceGroup.java

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/**
2+
* Copyright (C) 2014-2016 Open Whisper Systems
3+
*
4+
* Licensed according to the LICENSE file in this repository.
5+
*/
6+
17
package org.whispersystems.signalservice.api.messages.multidevice;
28

39
import org.whispersystems.libsignal.util.guava.Optional;

java/src/main/java/org/whispersystems/signalservice/api/messages/multidevice/DeviceGroupsInputStream.java

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/**
2+
* Copyright (C) 2014-2016 Open Whisper Systems
3+
*
4+
* Licensed according to the LICENSE file in this repository.
5+
*/
6+
17
package org.whispersystems.signalservice.api.messages.multidevice;
28

39
import org.whispersystems.libsignal.util.guava.Optional;

java/src/main/java/org/whispersystems/signalservice/api/messages/multidevice/DeviceGroupsOutputStream.java

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/**
2+
* Copyright (C) 2014-2016 Open Whisper Systems
3+
*
4+
* Licensed according to the LICENSE file in this repository.
5+
*/
6+
17
package org.whispersystems.signalservice.api.messages.multidevice;
28

39
import com.google.protobuf.ByteString;

java/src/main/java/org/whispersystems/signalservice/api/messages/multidevice/DeviceInfo.java

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/**
2+
* Copyright (C) 2014-2016 Open Whisper Systems
3+
*
4+
* Licensed according to the LICENSE file in this repository.
5+
*/
6+
17
package org.whispersystems.signalservice.api.messages.multidevice;
28

39
import com.fasterxml.jackson.annotation.JsonProperty;

java/src/main/java/org/whispersystems/signalservice/api/messages/multidevice/ReadMessage.java

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/**
2+
* Copyright (C) 2014-2016 Open Whisper Systems
3+
*
4+
* Licensed according to the LICENSE file in this repository.
5+
*/
6+
17
package org.whispersystems.signalservice.api.messages.multidevice;
28

39
import java.util.LinkedList;

0 commit comments

Comments
 (0)