Skip to content

Commit 63f1925

Browse files
committed
Add the Eclipse Copyright header
1 parent ec923b7 commit 63f1925

77 files changed

Lines changed: 385 additions & 0 deletions

Some content is hidden

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

pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
<!--
2+
~ Copyright (c) 2019 Geoffroy Couprie <contact@geoffroycouprie.com> and Contributors to the Eclipse Foundation.
3+
~ SPDX-License-Identifier: Apache-2.0
4+
-->
5+
16
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
27
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
38
<modelVersion>4.0.0</modelVersion>

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/*
2+
* Copyright (c) 2019 Geoffroy Couprie <contact@geoffroycouprie.com> and Contributors to the Eclipse Foundation.
3+
* SPDX-License-Identifier: Apache-2.0
4+
*/
5+
16
package org.eclipse.biscuit.crypto;
27

38
import java.nio.ByteBuffer;

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/*
2+
* Copyright (c) 2019 Geoffroy Couprie <contact@geoffroycouprie.com> and Contributors to the Eclipse Foundation.
3+
* SPDX-License-Identifier: Apache-2.0
4+
*/
5+
16
package org.eclipse.biscuit.crypto;
27

38
import java.security.SecureRandom;

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/*
2+
* Copyright (c) 2019 Geoffroy Couprie <contact@geoffroycouprie.com> and Contributors to the Eclipse Foundation.
3+
* SPDX-License-Identifier: Apache-2.0
4+
*/
5+
16
package org.eclipse.biscuit.crypto;
27

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

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/*
2+
* Copyright (c) 2019 Geoffroy Couprie <contact@geoffroycouprie.com> and Contributors to the Eclipse Foundation.
3+
* SPDX-License-Identifier: Apache-2.0
4+
*/
5+
16
package org.eclipse.biscuit.crypto;
27

38
import io.vavr.control.Option;

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/*
2+
* Copyright (c) 2019 Geoffroy Couprie <contact@geoffroycouprie.com> and Contributors to the Eclipse Foundation.
3+
* SPDX-License-Identifier: Apache-2.0
4+
*/
5+
16
package org.eclipse.biscuit.crypto;
27

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

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/*
2+
* Copyright (c) 2019 Geoffroy Couprie <contact@geoffroycouprie.com> and Contributors to the Eclipse Foundation.
3+
* SPDX-License-Identifier: Apache-2.0
4+
*/
5+
16
package org.eclipse.biscuit.crypto;
27

38
import biscuit.format.schema.Schema;

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/*
2+
* Copyright (c) 2019 Geoffroy Couprie <contact@geoffroycouprie.com> and Contributors to the Eclipse Foundation.
3+
* SPDX-License-Identifier: Apache-2.0
4+
*/
5+
16
package org.eclipse.biscuit.crypto;
27

38
import java.security.InvalidKeyException;

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/*
2+
* Copyright (c) 2019 Geoffroy Couprie <contact@geoffroycouprie.com> and Contributors to the Eclipse Foundation.
3+
* SPDX-License-Identifier: Apache-2.0
4+
*/
5+
16
package org.eclipse.biscuit.crypto;
27

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

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/*
2+
* Copyright (c) 2019 Geoffroy Couprie <contact@geoffroycouprie.com> and Contributors to the Eclipse Foundation.
3+
* SPDX-License-Identifier: Apache-2.0
4+
*/
5+
16
package org.eclipse.biscuit.crypto;
27

38
import java.security.InvalidKeyException;

0 commit comments

Comments
 (0)