forked from animo/openid4vc-playground
-
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.
updated test issuer and rp to support x509 (#2)
* updated test issuer and rp to support x509
- Loading branch information
1 parent
2978353
commit 705232b
Showing
52 changed files
with
8,768 additions
and
8,315 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
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,3 @@ | ||
AGENT_WALLET_KEY=secret-wallet-key | ||
DID_INDY_INDICIO_TESTNET_PUBLIC_DID_SEED=2543786a945a27258087ccfe95ff62df | ||
CHEQD_TESTNET_COSMOS_PAYER_SEED=robust across amount corn curve panther opera wish toe ring bleak empower wreck party abstract glad average muffin picnic jar squeeze annual long aunt | ||
ED25519_SEED=5473a3e4c5ae3fd5fb3ad089563596e3 | ||
P256_SEED=e5f18b10cd15cdb76818bc6ae8b71eb475e6eac76875ed085d3962239bbcf42f | ||
P256_SEED=e5f18b10cd15cdb76818bc6ae8b71eb475e6eac76875ed085d3962239bbcf42f |
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
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,31 +1,10 @@ | ||
if ( | ||
!process.env.ED25519_SEED || | ||
!process.env.P256_SEED || | ||
!process.env.AGENT_HOST || | ||
!process.env.AGENT_WALLET_KEY | ||
) { | ||
throw new Error( | ||
"ED25519_SEED, P256_SEED, AGENT_HOST or AGENT_WALLET_KEY env variable not set" | ||
); | ||
if (!process.env.P256_SEED || !process.env.AGENT_HOST || !process.env.AGENT_WALLET_KEY) { | ||
throw new Error('P256_SEED, AGENT_HOST or AGENT_WALLET_KEY env variable not set') | ||
} | ||
|
||
const AGENT_HOST = process.env.AGENT_HOST; | ||
const AGENT_WALLET_KEY = process.env.AGENT_WALLET_KEY; | ||
const AGENT_HOST = process.env.AGENT_HOST | ||
const AGENT_WALLET_KEY = process.env.AGENT_WALLET_KEY | ||
|
||
const DID_INDY_INDICIO_TESTNET_PUBLIC_DID_SEED = | ||
process.env.DID_INDY_INDICIO_TESTNET_PUBLIC_DID_SEED; | ||
const P256_SEED = process.env.P256_SEED | ||
|
||
const CHEQD_TESTNET_COSMOS_PAYER_SEED = | ||
process.env.CHEQD_TESTNET_COSMOS_PAYER_SEED; | ||
|
||
const ED25519_SEED = process.env.ED25519_SEED; | ||
const P256_SEED = process.env.P256_SEED; | ||
|
||
export { | ||
AGENT_HOST, | ||
AGENT_WALLET_KEY, | ||
DID_INDY_INDICIO_TESTNET_PUBLIC_DID_SEED, | ||
CHEQD_TESTNET_COSMOS_PAYER_SEED, | ||
ED25519_SEED, | ||
P256_SEED, | ||
}; | ||
export { AGENT_HOST, AGENT_WALLET_KEY, P256_SEED } |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.