> ## Documentation Index
> Fetch the complete documentation index at: https://crossmint-devin-1787949784-wallet-docs-two-concept-model.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# PasskeySignResult

> Kotlin Data Class

**Data Class**

```kotlin theme={null}
data class PasskeySignResult(val r: String, val s: String, val metadata: PasskeySignMetadata)
```

## Constructors

```kotlin theme={null}
constructor(r: String, s: String, metadata: PasskeySignMetadata)
```

## Properties

| Property   | Type                  | Description                                                                      |
| ---------- | --------------------- | -------------------------------------------------------------------------------- |
| `metadata` | `PasskeySignMetadata` | The authenticator metadata required by on-chain P256 verifier contracts.         |
| `r`        | `String`              | The r component of the ECDSA P-256 signature, 0x-prefixed hex, low-s normalized. |
| `s`        | `String`              | The s component of the ECDSA P-256 signature, 0x-prefixed hex, low-s normalized. |
