All Downloads are FREE. Search and download functionalities are using the official Maven repository.

tech.relaycorp.relaynet.nodes.NodeCryptoOptions.kt Maven / Gradle / Ivy

There is a newer version: 1.69.11
Show newest version
package tech.relaycorp.relaynet.nodes

import tech.relaycorp.relaynet.ECDHCurve
import tech.relaycorp.relaynet.HashingAlgorithm
import tech.relaycorp.relaynet.SymmetricCipher

data class NodeCryptoOptions(
    val ecdhCurve: ECDHCurve = ECDHCurve.P256,
    val symmetricCipher: SymmetricCipher = SymmetricCipher.AES_128,
    val hashingAlgorithm: HashingAlgorithm = HashingAlgorithm.SHA256,
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy