Skip to content

Commit

Permalink
Merge commit 'a5b87347c8fff4482adcac06287cc3efa1a0aa34' into HEAD
Browse files Browse the repository at this point in the history
  • Loading branch information
Azure IoT Builder committed Nov 15, 2017
2 parents 62b47ce + a5b8734 commit 7197629
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions provisioning/service/samples/create_enrollment_group.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ var provisioningServiceClient = require('azure-iot-provisioning-service').Provis
var serviceClient = provisioningServiceClient.fromConnectionString(process.argv[2]);

var enrollment = {
registrationId: 'first',
enrollmentGroupId: 'first',
attestation: {
type: 'x509',
x509: {
signingCertificates: {
primary: {
certificate: fs.readFileSync(process.argv[2], 'utf-8').toString()
certificate: fs.readFileSync(process.argv[3], 'utf-8').toString()
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion provisioning/service/src/interfaces.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export interface TpmAttestation {
* security hardware, generally at the time of manufacture. This private portion of the endorsement key is never
* released outside of the TPM. The public portion of the endorsement key helps to recognize a genuine TPM.
*
* The endorsement key is a base64 encoded.
* The endorsement key is a base64 encoded value.
*/
endorsementKey: string;
/**
Expand Down

0 comments on commit 7197629

Please sign in to comment.