mirror of
https://git.uploadfilter24.eu/lerentis/terraform-provider-gitea.git
synced 2024-11-06 02:38:13 +00:00
910ccdb092
Bumps [github.com/hashicorp/terraform-plugin-sdk/v2](https://github.com/hashicorp/terraform-plugin-sdk) from 2.26.1 to 2.27.0. - [Release notes](https://github.com/hashicorp/terraform-plugin-sdk/releases) - [Changelog](https://github.com/hashicorp/terraform-plugin-sdk/blob/main/CHANGELOG.md) - [Commits](https://github.com/hashicorp/terraform-plugin-sdk/compare/v2.26.1...v2.27.0) --- updated-dependencies: - dependency-name: github.com/hashicorp/terraform-plugin-sdk/v2 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
29 lines
598 B
Go
29 lines
598 B
Go
package sha3
|
||
|
||
// RC stores the round constants for use in the ι step.
|
||
var RC = [24]uint64{
|
||
0x0000000000000001,
|
||
0x0000000000008082,
|
||
0x800000000000808A,
|
||
0x8000000080008000,
|
||
0x000000000000808B,
|
||
0x0000000080000001,
|
||
0x8000000080008081,
|
||
0x8000000000008009,
|
||
0x000000000000008A,
|
||
0x0000000000000088,
|
||
0x0000000080008009,
|
||
0x000000008000000A,
|
||
0x000000008000808B,
|
||
0x800000000000008B,
|
||
0x8000000000008089,
|
||
0x8000000000008003,
|
||
0x8000000000008002,
|
||
0x8000000000000080,
|
||
0x000000000000800A,
|
||
0x800000008000000A,
|
||
0x8000000080008081,
|
||
0x8000000000008080,
|
||
0x0000000080000001,
|
||
0x8000000080008008,
|
||
}
|