Update copyright statement on all source files

IntelliJ Copyright Profile used to automate this.
This commit is contained in:
Ehren Kret
2020-10-29 12:29:27 -05:00
committed by Jon Chambers
parent 47646a4aa0
commit 604287244f
400 changed files with 1787 additions and 1340 deletions

View File

@@ -1,3 +1,8 @@
/*
* Copyright 2013-2020 Signal Messenger, LLC
* SPDX-License-Identifier: AGPL-3.0-only
*/
package org.whispersystems.textsecuregcm.crypto;
import org.whispersystems.curve25519.Curve25519;

View File

@@ -1,3 +1,8 @@
/*
* Copyright 2013-2020 Signal Messenger, LLC
* SPDX-License-Identifier: AGPL-3.0-only
*/
package org.whispersystems.textsecuregcm.crypto;
public class DjbECPrivateKey implements ECPrivateKey {

View File

@@ -1,3 +1,8 @@
/*
* Copyright 2013-2020 Signal Messenger, LLC
* SPDX-License-Identifier: AGPL-3.0-only
*/
package org.whispersystems.textsecuregcm.crypto;
import org.whispersystems.textsecuregcm.util.ByteUtil;

View File

@@ -1,3 +1,8 @@
/*
* Copyright 2013-2020 Signal Messenger, LLC
* SPDX-License-Identifier: AGPL-3.0-only
*/
package org.whispersystems.textsecuregcm.crypto;
public class ECKeyPair {
@@ -17,4 +22,4 @@ public class ECKeyPair {
public ECPrivateKey getPrivateKey() {
return privateKey;
}
}
}

View File

@@ -1,3 +1,8 @@
/*
* Copyright 2013-2020 Signal Messenger, LLC
* SPDX-License-Identifier: AGPL-3.0-only
*/
package org.whispersystems.textsecuregcm.crypto;
public interface ECPrivateKey {

View File

@@ -1,3 +1,8 @@
/*
* Copyright 2013-2020 Signal Messenger, LLC
* SPDX-License-Identifier: AGPL-3.0-only
*/
package org.whispersystems.textsecuregcm.crypto;
public interface ECPublicKey extends Comparable<ECPublicKey> {
@@ -7,4 +12,4 @@ public interface ECPublicKey extends Comparable<ECPublicKey> {
public byte[] serialize();
public int getType();
}
}