verify build section

This commit is contained in:
Corwin Smith 2022-11-07 11:23:48 -07:00
parent 9017e57ac8
commit 8b40618e1c
1 changed files with 37 additions and 25 deletions

View File

@ -216,36 +216,48 @@ const DownloadsPage: NextPage = () => {
</DownloadsSection> </DownloadsSection>
<DownloadsSection id='importingkeys' sectionTitle='Importing keys and verifying builds'> <DownloadsSection id='importingkeys' sectionTitle='Importing keys and verifying builds'>
<Stack p={4} borderBottom='2px solid' borderColor='brand.light.primary'> <Flex p={4} borderBottom='2px solid' borderColor='brand.light.primary' gap={4} flexDirection={{ base: 'column', md: 'row' }}>
<Text textStyle='quick-link-text'> <Stack flex={1}>
You can import the build server public keys by grabbing the individual keys directly <Text textStyle='quick-link-text'>
from the keyserver network: You can import the build server public keys by grabbing the individual keys directly
</Text> from the keyserver network:
</Text>
</Stack>
{/* TODO: These keys depends on the binary */} <Stack flex={1} w={'100%'}>
<Code p={4}>gpg --recv-keys F9585DE6 C2FF8BBF 9BA28146 7B9E2481 D2A67EAC</Code> {/* TODO: These keys depends on the binary */}
</Stack> <Code p={4}>gpg --recv-keys F9585DE6 C2FF8BBF 9BA28146 7B9E2481 D2A67EAC</Code>
</Stack>
</Flex>
<Stack p={4} borderBottom='2px solid' borderColor='brand.light.primary'> <Flex p={4} borderBottom='2px solid' borderColor='brand.light.primary' gap={4} flexDirection={{ base: 'column', md: 'row' }}>
<Text textStyle='quick-link-text'> <Stack flex={1}>
Similarly you can import all the developer public keys by grabbing them directly <Text textStyle='quick-link-text'>
from the keyserver network: Similarly you can import all the developer public keys by grabbing them directly
</Text> from the keyserver network:
</Text>
</Stack>
{/* TODO: These are developer keys, do we need to change? */} <Stack flex={1} w={'100%'}>
<Code p={4}>gpg --recv-keys E058A81C 05A5DDF0 1CCB7DD2</Code> {/* TODO: These are developer keys, do we need to change? */}
</Stack> <Code p={4}>gpg --recv-keys E058A81C 05A5DDF0 1CCB7DD2</Code>
</Stack>
</Flex>
<Stack p={4}> <Flex p={4} borderBottom='2px solid' borderColor='brand.light.primary' gap={4} flexDirection={{ base: 'column', md: 'row' }}>
<Text textStyle='quick-link-text'> <Stack flex={1}>
From the download listings above you should see a link both to the downloadable <Text textStyle='quick-link-text'>
archives as well as detached signature files. To verify the authenticity of any From the download listings above you should see a link both to the downloadable
downloaded data, grab both files and then run: archives as well as detached signature files. To verify the authenticity of any
</Text> downloaded data, grab both files and then run:
</Text>
</Stack>
{/* TODO: These keys depends on the binary */} <Stack flex={1} w={'100%'}>
<Code p={4}>gpg --verify geth-linux-amd64-1.5.0-d0c820ac.tar.gz.asc</Code> {/* TODO: These keys depends on the binary */}
</Stack> <Code p={4}>gpg --verify geth-linux-amd64-1.5.0-d0c820ac.tar.gz.asc</Code>
</Stack>
</Flex>
</DownloadsSection> </DownloadsSection>
</Stack> </Stack>
</main> </main>