Change cert default algorithm to RS256.

This commit is contained in:
Gucheng Wang
2022-05-06 09:34:42 +08:00
parent 1c949e415e
commit 39548d5d72
3 changed files with 4 additions and 4 deletions

View File

@ -136,7 +136,7 @@ class CertEditPage extends React.Component {
})}>
{
[
{id: 'RSA', name: 'RSA'},
{id: 'RS256', name: 'RS256'},
].map((item, index) => <Option key={index} value={item.id}>{item.name}</Option>)
}
</Select>