-
Notifications
You must be signed in to change notification settings - Fork 253
/
xep0300.ts
59 lines (55 loc) · 1.55 KB
/
xep0300.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
// ====================================================================
// XEP-0300: Use of Cryptographic Hash Functions in XMPP
// --------------------------------------------------------------------
// Source: https://xmpp.org/extensions/xep-0300.html
// Version: 0.5.3 (2018-02-14)
// ====================================================================
import { attribute, DefinitionOptions, staticValue, textBuffer } from '../jxt';
import { NS_HASHES_1, NS_HASHES_2 } from '../Namespaces';
import { Buffer } from '../platform';
export interface Hash {
version?: '2' | '1';
algorithm?: string;
value?: Buffer;
}
export interface HashUsed {
version?: '2';
algorithm: string;
}
const Protocol: DefinitionOptions[] = [
{
defaultType: '2',
element: 'hash',
fields: {
algorithm: attribute('algo'),
value: textBuffer('base64'),
version: staticValue('2')
},
namespace: NS_HASHES_2,
path: 'hash',
type: '2',
typeField: 'version'
},
{
element: 'hash-used',
fields: {
algorithm: attribute('algo'),
version: staticValue('2')
},
namespace: NS_HASHES_2,
path: 'hashUsed'
},
{
element: 'hash',
fields: {
algorithm: attribute('algo'),
value: textBuffer('hex'),
version: staticValue('1')
},
namespace: NS_HASHES_1,
path: 'hash',
type: '1',
typeField: 'version'
}
];
export default Protocol;