Skip to content

Commit

Permalink
Merge pull request #156 from IABTechLab/lun-UID2-2069-remove-azure-v1
Browse files Browse the repository at this point in the history
Remove Azure SGX enclave
  • Loading branch information
lunwang-ttd authored Nov 3, 2023
2 parents f4b87ad + 377bd77 commit 7c1a08e
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 548 deletions.
6 changes: 0 additions & 6 deletions src/main/java/com/uid2/shared/attest/AttestationFactory.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,6 @@ public static IAttestationProvider getGcpOidcAttestation() throws Exception {
return (IAttestationProvider) c.newInstance();
}

public static IAttestationProvider getAzureAttestation() throws Exception {
Class<?> cls = Class.forName("com.uid2.attestation.azure.AzureAttestationProvider");
Constructor<?> c = cls.getConstructor();
return (IAttestationProvider) c.newInstance();
}

public static IAttestationProvider getAzureCCAttestation(String maaServerBaseUrl) throws Exception {
Class<?> cls = Class.forName("com.uid2.attestation.azure.AzureCCAttestationProvider");
Constructor<?> c = cls.getConstructor(String.class);
Expand Down
162 changes: 0 additions & 162 deletions src/main/java/com/uid2/shared/secure/AzureAttestationProvider.java

This file was deleted.

Loading

0 comments on commit 7c1a08e

Please sign in to comment.