Skip to content

Commit 32f8fe3

Browse files
committed
Add the Eclipse Copyright header
1 parent ec923b7 commit 32f8fe3

Some content is hidden

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

77 files changed

+539
-0
lines changed

pom.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
<!--
2+
~ Copyright (c) 2019 Geoffroy Couprie <[email protected]> and Contributors to the Eclipse Foundation.
3+
~ SPDX-License-Identifier: Apache-2.0
4+
~
5+
~
6+
-->
7+
18
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
29
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
310
<modelVersion>4.0.0</modelVersion>

src/main/java/org/eclipse/biscuit/crypto/BlockSignatureBuffer.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/*
2+
* Copyright (c) 2019 Geoffroy Couprie <[email protected]> and Contributors to the Eclipse Foundation.
3+
* SPDX-License-Identifier: Apache-2.0
4+
*
5+
*
6+
*/
7+
18
package org.eclipse.biscuit.crypto;
29

310
import java.nio.ByteBuffer;

src/main/java/org/eclipse/biscuit/crypto/Ed25519KeyPair.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/*
2+
* Copyright (c) 2019 Geoffroy Couprie <[email protected]> and Contributors to the Eclipse Foundation.
3+
* SPDX-License-Identifier: Apache-2.0
4+
*
5+
*
6+
*/
7+
18
package org.eclipse.biscuit.crypto;
29

310
import java.security.SecureRandom;

src/main/java/org/eclipse/biscuit/crypto/Ed25519PublicKey.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/*
2+
* Copyright (c) 2019 Geoffroy Couprie <[email protected]> and Contributors to the Eclipse Foundation.
3+
* SPDX-License-Identifier: Apache-2.0
4+
*
5+
*
6+
*/
7+
18
package org.eclipse.biscuit.crypto;
29

310
import biscuit.format.schema.Schema.PublicKey.Algorithm;

src/main/java/org/eclipse/biscuit/crypto/KeyDelegate.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/*
2+
* Copyright (c) 2019 Geoffroy Couprie <[email protected]> and Contributors to the Eclipse Foundation.
3+
* SPDX-License-Identifier: Apache-2.0
4+
*
5+
*
6+
*/
7+
18
package org.eclipse.biscuit.crypto;
29

310
import io.vavr.control.Option;

src/main/java/org/eclipse/biscuit/crypto/KeyPair.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/*
2+
* Copyright (c) 2019 Geoffroy Couprie <[email protected]> and Contributors to the Eclipse Foundation.
3+
* SPDX-License-Identifier: Apache-2.0
4+
*
5+
*
6+
*/
7+
18
package org.eclipse.biscuit.crypto;
29

310
import biscuit.format.schema.Schema.PublicKey.Algorithm;

src/main/java/org/eclipse/biscuit/crypto/PublicKey.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/*
2+
* Copyright (c) 2019 Geoffroy Couprie <[email protected]> and Contributors to the Eclipse Foundation.
3+
* SPDX-License-Identifier: Apache-2.0
4+
*
5+
*
6+
*/
7+
18
package org.eclipse.biscuit.crypto;
29

310
import biscuit.format.schema.Schema;

src/main/java/org/eclipse/biscuit/crypto/SECP256R1KeyPair.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/*
2+
* Copyright (c) 2019 Geoffroy Couprie <[email protected]> and Contributors to the Eclipse Foundation.
3+
* SPDX-License-Identifier: Apache-2.0
4+
*
5+
*
6+
*/
7+
18
package org.eclipse.biscuit.crypto;
29

310
import java.security.InvalidKeyException;

src/main/java/org/eclipse/biscuit/crypto/SECP256R1PublicKey.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/*
2+
* Copyright (c) 2019 Geoffroy Couprie <[email protected]> and Contributors to the Eclipse Foundation.
3+
* SPDX-License-Identifier: Apache-2.0
4+
*
5+
*
6+
*/
7+
18
package org.eclipse.biscuit.crypto;
29

310
import static org.eclipse.biscuit.crypto.SECP256R1KeyPair.CURVE;

src/main/java/org/eclipse/biscuit/crypto/Signer.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/*
2+
* Copyright (c) 2019 Geoffroy Couprie <[email protected]> and Contributors to the Eclipse Foundation.
3+
* SPDX-License-Identifier: Apache-2.0
4+
*
5+
*
6+
*/
7+
18
package org.eclipse.biscuit.crypto;
29

310
import java.security.InvalidKeyException;

0 commit comments

Comments
 (0)