> ## Documentation Index
> Fetch the complete documentation index at: https://docs.crossmint.com/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

### metadata

```kotlin theme={null}
val metadata: PasskeySignMetadata
```

The authenticator metadata required by on-chain P256 verifier contracts.

### r

```kotlin theme={null}
val r: String
```

The r component of the ECDSA P-256 signature, 0x-prefixed hex, low-s normalized.

### s

```kotlin theme={null}
val s: String
```

The s component of the ECDSA P-256 signature, 0x-prefixed hex, low-s normalized.
