Crypto
Generate a key pair
- Kotlin
- Java
- Swift
- JavaScript
- C#
- Python
// Returns a KeyPair
val keyPair = sdk.crypto().generateKeyPair()
// Returns a KeyPair
var keyPair = sdk.crypto().generateKeyPair();
// Returns a Crypto.KeyPair
let keyPair = sdk.crypto().generateKeyPair()
// Returns a Crypto.KeyPair
const crypto = doordeck.com.doordeck.multiplatform.sdk.crypto.crypto();
const keyPair = crypto.generateKeyPair();
// Returns a KeyPair
var keyPair = sdk.GetCryptoManager().GenerateKeyPair();
# Returns a SimpleNamespace
keyPair = sdk.cryptoManager.generate_key_pair()