Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: implement azure keyvault rest client #56

Merged
merged 47 commits into from
Dec 4, 2024
Merged
Changes from 1 commit
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
432339a
chore: eSim support
sanderPostma Nov 25, 2024
d6230d8
chore: Musap attributes fix
sanderPostma Nov 26, 2024
dc69703
feat: implement azure keyvault rest client
jcmelati Nov 30, 2024
1bfa3ec
chore: update README
jcmelati Nov 30, 2024
6c161c5
chore: clean import
jcmelati Nov 30, 2024
3202b33
Merge remote-tracking branch 'origin/develop' into feature/SPRIND-124…
sanderPostma Dec 1, 2024
14a58a4
chore: lockfile
sanderPostma Dec 1, 2024
2bd7082
chore: add js-client to kms-azure-rest-client
jcmelati Dec 2, 2024
dcef76d
chore: add kms azure packages to tsconfig
jcmelati Dec 2, 2024
2dccda3
chore: update js-client code
jcmelati Dec 2, 2024
d067c14
chore: remove dependency
jcmelati Dec 2, 2024
9a3fda9
chore: disable kms rest client tests
jcmelati Dec 2, 2024
c910295
chore: remove kms rest client tests
jcmelati Dec 2, 2024
b26781d
chore: fix client import
jcmelati Dec 2, 2024
cc5ad63
fix pnpm lock
jcmelati Dec 2, 2024
b968166
fix: remove random uuid
jcmelati Dec 2, 2024
1359016
chore: replace unallowed character for azure kms
jcmelati Dec 2, 2024
ffb8097
chore: replace unallowed character for azure kms
jcmelati Dec 2, 2024
6e14c61
chore: fix publicKeyHex
jcmelati Dec 2, 2024
3cf0fd3
chore: fix publicKeyHex
jcmelati Dec 2, 2024
4dff1ad
chore: fix publicKeyHex
jcmelati Dec 2, 2024
627e21f
chore: fix publicKeyHex
jcmelati Dec 2, 2024
45808cb
chore: fix publicKeyHex
jcmelati Dec 2, 2024
6ff7b2a
chore: fix publicKeyHex
jcmelati Dec 2, 2024
d7397c3
chore: fix publicKeyHex
jcmelati Dec 2, 2024
65f9e91
Merge branch 'develop' into feature/OIDF-69
jcmelati Dec 2, 2024
742b3eb
chore: fix publicKeyHex using jwkToRawHexKey
jcmelati Dec 2, 2024
39b2dd6
chore: fix publicKeyHex using jwkToRawHexKey
jcmelati Dec 2, 2024
a3972fa
chore: fix publicKeyHex using ecJwkToRawHexKey
jcmelati Dec 2, 2024
d6d4499
chore: fix publicKeyHex using ecJwkToRawHexKey
jcmelati Dec 2, 2024
a70fbb6
chore: fix publicKeyHex using jwkToRawHexKey
jcmelati Dec 2, 2024
3a629cd
chore: fix creteKey return object
jcmelati Dec 2, 2024
6a9aa53
chore: fix creteKey return object
jcmelati Dec 2, 2024
0ffefd5
chore: use u8a to decode uint8 to string
jcmelati Dec 2, 2024
3ae9bd8
chore: fix createIdentifier genreation
jcmelati Dec 3, 2024
f67be2d
Merge branch 'develop' into feature/OIDF-69
jcmelati Dec 3, 2024
217de7e
chore: createKey; send bound key for external keys
sanderPostma Dec 3, 2024
661e959
chore: KMS management functions in SphereonKeyManager
sanderPostma Dec 3, 2024
9a6d90e
chore: MUSAP ecc_ed25519 support
sanderPostma Dec 3, 2024
16f0df8
chore: MUSAP correct key.algorithm at signing
sanderPostma Dec 3, 2024
42ba7ee
Merge remote-tracking branch 'origin/develop' into feature/SPRIND-124…
sanderPostma Dec 3, 2024
8f9e94e
Merge branch 'feature/SPRIND-124_esim' into feature/OIDF-69
jcmelati Dec 3, 2024
3bac089
chore: removed defaultKms from DID providers
sanderPostma Dec 3, 2024
dccb084
chore: removed defaultKms from DID providers
sanderPostma Dec 3, 2024
10d34a9
chore: removed defaultKms from DID providers
sanderPostma Dec 3, 2024
b7b9f07
chore: add ts-ignore on undefined kms
jcmelati Dec 4, 2024
2e28f29
chore: remove test
jcmelati Dec 4, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
chore: replace unallowed character for azure kms
  • Loading branch information
jcmelati committed Dec 2, 2024
commit 135901603b7b8ff3214e1641f72ba901792d0443
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export class AzureKeyVaultKeyManagementSystemRestClient extends AbstractKeyManag
const curveName = this.mapKeyTypeCurveName(type)

const options: AzureRestClient.CreateEcKeyRequest = {
keyName: meta?.keyAlias,
keyName: meta?.keyAlias.replace("_", "-"),
curveName,
operations: meta && 'keyOperations' in meta ? meta.keyOperations : ['sign', 'verify'],
}
Expand Down