aboutsummaryrefslogtreecommitdiffstats
path: root/src/schemas/ec_signature_schema.ts
blob: df1121989fa285afeb90f42872b6a9c603431e0c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
export const ecSignatureParameterSchema = {
    id: '/ecSignatureParameter',
    type: 'string',
    pattern: '^0[xX][0-9A-Fa-f]{64}$',
};

export const ecSignatureSchema = {
    id: '/ECSignature',
    properties: {
        v: {
            type: 'number',
            minimum: 27,
            maximum: 28,
        },
        r: {$ref: '/ecSignatureParameter'},
        s: {$ref: '/ecSignatureParameter'},
    },
    required: ['v', 'r', 's'],
    type: 'object',
};