sub-component depth from pts database on component evidence request
component hashes are entries in file_hashes table implemented verify function of tboot component
This commit is contained in:
committed by
Andreas Steffen
parent
a169fe7793
commit
824a7824dc
@@ -176,6 +176,18 @@ INSERT INTO files (
|
||||
0, '/etc/tnc_config', 1
|
||||
);
|
||||
|
||||
INSERT INTO files (
|
||||
type, path
|
||||
) VALUES (
|
||||
0, 'tboot_pcr17'
|
||||
);
|
||||
|
||||
INSERT INTO files (
|
||||
type, path
|
||||
) VALUES (
|
||||
0, 'tboot_pcr18'
|
||||
);
|
||||
|
||||
/* Components */
|
||||
|
||||
INSERT INTO components (
|
||||
@@ -306,6 +318,18 @@ INSERT INTO product_file (
|
||||
4, 22
|
||||
);
|
||||
|
||||
INSERT INTO product_file (
|
||||
product, file
|
||||
) VALUES (
|
||||
4, 23
|
||||
);
|
||||
|
||||
INSERT INTO product_file (
|
||||
product, file
|
||||
) VALUES (
|
||||
4, 24
|
||||
);
|
||||
|
||||
INSERT INTO product_file (
|
||||
product, file
|
||||
) VALUES (
|
||||
@@ -402,30 +426,30 @@ INSERT INTO product_file (
|
||||
7, 22
|
||||
);
|
||||
|
||||
INSERT INTO product_file (
|
||||
product, file
|
||||
) VALUES (
|
||||
7, 23
|
||||
);
|
||||
|
||||
INSERT INTO product_file (
|
||||
product, file
|
||||
) VALUES (
|
||||
7, 24
|
||||
);
|
||||
|
||||
/* Product Component */
|
||||
|
||||
INSERT INTO product_component (
|
||||
product, component, sequence
|
||||
product, component, depth, sequence
|
||||
) VALUES (
|
||||
4, 1, 1
|
||||
4, 2, 0, 2
|
||||
);
|
||||
|
||||
INSERT INTO product_component (
|
||||
product, component, sequence
|
||||
product, component, depth, sequence
|
||||
) VALUES (
|
||||
4, 2, 2
|
||||
);
|
||||
|
||||
INSERT INTO product_component (
|
||||
product, component, sequence
|
||||
) VALUES (
|
||||
7, 1, 1
|
||||
);
|
||||
|
||||
INSERT INTO product_component (
|
||||
product, component, sequence
|
||||
) VALUES (
|
||||
7, 2, 2
|
||||
7, 2, 0, 2
|
||||
);
|
||||
|
||||
/* File Hashes */
|
||||
@@ -1295,14 +1319,14 @@ INSERT INTO file_hashes (
|
||||
20, 7, 7, 8192, X'84200bd318bb022915150842ddf4002e061ef593604ad0d07021dc662cc40bfa749cce084ddf25d0e5137f6380f613d8'
|
||||
);
|
||||
|
||||
INSERT INTO component_hashes (
|
||||
component, product, algo, hash
|
||||
INSERT INTO file_hashes (
|
||||
file, product, component, algo, hash
|
||||
) VALUES (
|
||||
2, 4, 32768, X'9704353630674bfe21b86b64a7b0f99c297cf902'
|
||||
23, 4, 2, 32768, X'9704353630674bfe21b86b64a7b0f99c297cf902'
|
||||
);
|
||||
|
||||
INSERT INTO component_hashes (
|
||||
component, product, algo, hash
|
||||
INSERT INTO file_hashes (
|
||||
file, product, component, algo, hash
|
||||
) VALUES (
|
||||
2, 4, 32768, X'8397d8048ee36d7955e38da16fc33e86ef61d6b0'
|
||||
24, 4, 2, 32768, X'8397d8048ee36d7955e38da16fc33e86ef61d6b0'
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user