-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathdecrypt-oaepbytes-request.ts
118 lines (93 loc) · 4.2 KB
/
decrypt-oaepbytes-request.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
// automatically generated by the FlatBuffers compiler, do not modify
/* eslint-disable @typescript-eslint/no-unused-vars, @typescript-eslint/no-explicit-any, @typescript-eslint/no-non-null-assertion */
import * as flatbuffers from 'flatbuffers';
import { Hash } from '../model/hash';
export class DecryptOAEPBytesRequest {
bb: flatbuffers.ByteBuffer|null = null;
bb_pos = 0;
__init(i:number, bb:flatbuffers.ByteBuffer):DecryptOAEPBytesRequest {
this.bb_pos = i;
this.bb = bb;
return this;
}
static getRootAsDecryptOAEPBytesRequest(bb:flatbuffers.ByteBuffer, obj?:DecryptOAEPBytesRequest):DecryptOAEPBytesRequest {
return (obj || new DecryptOAEPBytesRequest()).__init(bb.readInt32(bb.position()) + bb.position(), bb);
}
static getSizePrefixedRootAsDecryptOAEPBytesRequest(bb:flatbuffers.ByteBuffer, obj?:DecryptOAEPBytesRequest):DecryptOAEPBytesRequest {
bb.setPosition(bb.position() + flatbuffers.SIZE_PREFIX_LENGTH);
return (obj || new DecryptOAEPBytesRequest()).__init(bb.readInt32(bb.position()) + bb.position(), bb);
}
ciphertext(index: number):number|null {
const offset = this.bb!.__offset(this.bb_pos, 4);
return offset ? this.bb!.readUint8(this.bb!.__vector(this.bb_pos + offset) + index) : 0;
}
ciphertextLength():number {
const offset = this.bb!.__offset(this.bb_pos, 4);
return offset ? this.bb!.__vector_len(this.bb_pos + offset) : 0;
}
ciphertextArray():Uint8Array|null {
const offset = this.bb!.__offset(this.bb_pos, 4);
return offset ? new Uint8Array(this.bb!.bytes().buffer, this.bb!.bytes().byteOffset + this.bb!.__vector(this.bb_pos + offset), this.bb!.__vector_len(this.bb_pos + offset)) : null;
}
label():string|null
label(optionalEncoding:flatbuffers.Encoding):string|Uint8Array|null
label(optionalEncoding?:any):string|Uint8Array|null {
const offset = this.bb!.__offset(this.bb_pos, 6);
return offset ? this.bb!.__string(this.bb_pos + offset, optionalEncoding) : null;
}
hash():Hash {
const offset = this.bb!.__offset(this.bb_pos, 8);
return offset ? this.bb!.readInt32(this.bb_pos + offset) : Hash.MD5;
}
mutate_hash(value:Hash):boolean {
const offset = this.bb!.__offset(this.bb_pos, 8);
if (offset === 0) {
return false;
}
this.bb!.writeInt32(this.bb_pos + offset, value);
return true;
}
privateKey():string|null
privateKey(optionalEncoding:flatbuffers.Encoding):string|Uint8Array|null
privateKey(optionalEncoding?:any):string|Uint8Array|null {
const offset = this.bb!.__offset(this.bb_pos, 10);
return offset ? this.bb!.__string(this.bb_pos + offset, optionalEncoding) : null;
}
static startDecryptOAEPBytesRequest(builder:flatbuffers.Builder) {
builder.startObject(4);
}
static addCiphertext(builder:flatbuffers.Builder, ciphertextOffset:flatbuffers.Offset) {
builder.addFieldOffset(0, ciphertextOffset, 0);
}
static createCiphertextVector(builder:flatbuffers.Builder, data:number[]|Uint8Array):flatbuffers.Offset {
builder.startVector(1, data.length, 1);
for (let i = data.length - 1; i >= 0; i--) {
builder.addInt8(data[i]!);
}
return builder.endVector();
}
static startCiphertextVector(builder:flatbuffers.Builder, numElems:number) {
builder.startVector(1, numElems, 1);
}
static addLabel(builder:flatbuffers.Builder, labelOffset:flatbuffers.Offset) {
builder.addFieldOffset(1, labelOffset, 0);
}
static addHash(builder:flatbuffers.Builder, hash:Hash) {
builder.addFieldInt32(2, hash, Hash.MD5);
}
static addPrivateKey(builder:flatbuffers.Builder, privateKeyOffset:flatbuffers.Offset) {
builder.addFieldOffset(3, privateKeyOffset, 0);
}
static endDecryptOAEPBytesRequest(builder:flatbuffers.Builder):flatbuffers.Offset {
const offset = builder.endObject();
return offset;
}
static createDecryptOAEPBytesRequest(builder:flatbuffers.Builder, ciphertextOffset:flatbuffers.Offset, labelOffset:flatbuffers.Offset, hash:Hash, privateKeyOffset:flatbuffers.Offset):flatbuffers.Offset {
DecryptOAEPBytesRequest.startDecryptOAEPBytesRequest(builder);
DecryptOAEPBytesRequest.addCiphertext(builder, ciphertextOffset);
DecryptOAEPBytesRequest.addLabel(builder, labelOffset);
DecryptOAEPBytesRequest.addHash(builder, hash);
DecryptOAEPBytesRequest.addPrivateKey(builder, privateKeyOffset);
return DecryptOAEPBytesRequest.endDecryptOAEPBytesRequest(builder);
}
}