-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
56 changed files
with
124 additions
and
126 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
vera | ||
VeraId | ||
Copyright 2022-2023 Relaycorp, Inc. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,4 @@ | ||
# vera-jvm | ||
|
||
VeraId library for the JVM | ||
# VeraId library for the JVM | ||
|
||
## Developer notes | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"name": "vera", | ||
"name": "veraid", | ||
"devDependencies": { | ||
"gradle-semantic-release-plugin": "^1.7.2" | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
rootProject.name = "vera" | ||
rootProject.name = "veraid" |
This file was deleted.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
...otlin/tech/relaycorp/vera/KeyAlgorithm.kt → ...lin/tech/relaycorp/veraid/KeyAlgorithm.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...ech/relaycorp/vera/OrganisationKeySpec.kt → ...h/relaycorp/veraid/OrganisationKeySpec.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
package tech.relaycorp.vera | ||
package tech.relaycorp.veraid | ||
|
||
internal data class OrganisationKeySpec(val algorithm: KeyAlgorithm, val id: String) |
2 changes: 1 addition & 1 deletion
2
...tlin/tech/relaycorp/vera/VeraException.kt → ...in/tech/relaycorp/veraid/VeraException.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package tech.relaycorp.vera | ||
package tech.relaycorp.veraid | ||
|
||
public abstract class VeraException(message: String, cause: Throwable? = null) : | ||
Exception(message, cause) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
package tech.relaycorp.veraid.dns | ||
|
||
import tech.relaycorp.veraid.VeraException | ||
|
||
public class DnsException(message: String) : VeraException(message) |
2 changes: 1 addition & 1 deletion
2
...otlin/tech/relaycorp/vera/dns/DnsUtils.kt → ...lin/tech/relaycorp/veraid/dns/DnsUtils.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...laycorp/vera/dns/InvalidChainException.kt → ...ycorp/veraid/dns/InvalidChainException.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
package tech.relaycorp.vera.dns | ||
package tech.relaycorp.veraid.dns | ||
|
||
import tech.relaycorp.vera.VeraException | ||
import tech.relaycorp.veraid.VeraException | ||
|
||
public class InvalidChainException(message: String, cause: Throwable? = null) : | ||
VeraException(message, cause) |
4 changes: 2 additions & 2 deletions
4
...laycorp/vera/dns/InvalidRdataException.kt → ...ycorp/veraid/dns/InvalidRdataException.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
package tech.relaycorp.vera.dns | ||
package tech.relaycorp.veraid.dns | ||
|
||
import tech.relaycorp.vera.VeraException | ||
import tech.relaycorp.veraid.VeraException | ||
|
||
public class InvalidRdataException(message: String) : VeraException(message) |
2 changes: 1 addition & 1 deletion
2
...n/tech/relaycorp/vera/dns/MessageUtils.kt → ...tech/relaycorp/veraid/dns/MessageUtils.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...lin/tech/relaycorp/vera/dns/RrSetUtils.kt → ...n/tech/relaycorp/veraid/dns/RrSetUtils.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
...ech/relaycorp/vera/dns/VeraRdataFields.kt → ...h/relaycorp/veraid/dns/VeraRdataFields.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...orp/vera/dns/resolvers/OfflineResolver.kt → ...p/veraid/dns/resolvers/OfflineResolver.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
.../vera/dns/resolvers/PersistingResolver.kt → ...eraid/dns/resolvers/PersistingResolver.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...h/relaycorp/vera/pki/MemberCertificate.kt → ...relaycorp/veraid/pki/MemberCertificate.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
...tech/relaycorp/vera/pki/MemberIdBundle.kt → ...ch/relaycorp/veraid/pki/MemberIdBundle.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...tech/relaycorp/vera/pki/OrgCertificate.kt → ...ch/relaycorp/veraid/pki/OrgCertificate.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...n/tech/relaycorp/vera/pki/PKIException.kt → ...tech/relaycorp/veraid/pki/PKIException.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...otlin/tech/relaycorp/vera/utils/Crypto.kt → ...lin/tech/relaycorp/veraid/utils/Crypto.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
.../kotlin/tech/relaycorp/vera/utils/PRNG.kt → ...otlin/tech/relaycorp/veraid/utils/PRNG.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
.../kotlin/tech/relaycorp/vera/utils/Time.kt → ...otlin/tech/relaycorp/veraid/utils/Time.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...elaycorp/vera/utils/asn1/ASN1Exception.kt → ...aycorp/veraid/utils/asn1/ASN1Exception.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
package tech.relaycorp.vera.utils.asn1 | ||
package tech.relaycorp.veraid.utils.asn1 | ||
|
||
internal class ASN1Exception(message: String, cause: Throwable? = null) : Exception(message, cause) |
2 changes: 1 addition & 1 deletion
2
...ch/relaycorp/vera/utils/asn1/ASN1Utils.kt → .../relaycorp/veraid/utils/asn1/ASN1Utils.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...a/utils/x509/BasicConstraintsExtension.kt → ...d/utils/x509/BasicConstraintsExtension.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...p/vera/utils/x509/CertificateException.kt → ...veraid/utils/x509/CertificateException.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...n/tech/relaycorp/vera/KeyAlgorithmTest.kt → ...tech/relaycorp/veraid/KeyAlgorithmTest.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...t/kotlin/tech/relaycorp/vera/VeraStubs.kt → ...kotlin/tech/relaycorp/veraid/VeraStubs.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...otlin/tech/relaycorp/vera/dns/DnsStubs.kt → ...lin/tech/relaycorp/veraid/dns/DnsStubs.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
package tech.relaycorp.vera.dns | ||
package tech.relaycorp.veraid.dns | ||
|
||
import tech.relaycorp.vera.ORG_NAME | ||
import tech.relaycorp.veraid.ORG_NAME | ||
|
||
const val DOMAIN_NAME = "$ORG_NAME." | ||
const val REMOTE_RESOLVER = "1.1.1.1" |
2 changes: 1 addition & 1 deletion
2
...otlin/tech/relaycorp/vera/dns/DnsUtils.kt → ...lin/tech/relaycorp/veraid/dns/DnsUtils.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...ch/relaycorp/vera/dns/MessageUtilsTest.kt → .../relaycorp/veraid/dns/MessageUtilsTest.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...tlin/tech/relaycorp/vera/dns/NameUtils.kt → ...in/tech/relaycorp/veraid/dns/NameUtils.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package tech.relaycorp.vera.dns | ||
package tech.relaycorp.veraid.dns | ||
|
||
import org.xbill.DNS.Name | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...tech/relaycorp/vera/dns/RrSetUtilsTest.kt → ...ch/relaycorp/veraid/dns/RrSetUtilsTest.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.