commonMain.org.kotlincrypto.sponges.keccak.F800.kt Maven / Gradle / Ivy
The newest version!
/*
* Copyright (c) 2023 Matthew Nelson
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
**/
package org.kotlincrypto.sponges.keccak
import kotlin.jvm.JvmSynthetic
/**
* [State] for Keccak-f[800]
* */
public class F800: State {
public constructor(): super(roundCount = 22, state = Array(P_LEN) { 0 })
private constructor(state: F800): super(state.roundCount, state.state.copyOf())
public override fun copy(): F800 = F800(this)
@JvmSynthetic
internal override fun withContext(block: Context.() -> T): T = block(F800Context)
private object F800Context: Context {
override fun and(a: Int, other: Int): Int = a and other
override fun inv(a: Int): Int = a.inv()
override fun xor(a: Int, other: Int): Int = a xor other
override fun rotateLeft(a: Int, n: Int): Int {
val bitCount = n % Int.SIZE_BITS
return (a shl bitCount) or (a ushr (Int.SIZE_BITS - bitCount))
}
override fun RC(index: Int): Int = RC[index].toInt()
}
}