Lines Matching defs:label

62   const label = Buffer.from(
78 'sha-1, no label': Buffer.from(
89 'sha-256, no label': Buffer.from(
100 'sha-384, no label': Buffer.from(
111 'sha-512, no label': Buffer.from(
122 'sha-1, with label': Buffer.from(
133 'sha-256, with label': Buffer.from(
144 'sha-384, with label': Buffer.from(
155 'sha-512, with label': Buffer.from(
170 name: 'RSA-OAEP with SHA-1 and no label',
180 ciphertext: ciphertext['sha-1, no label']
183 name: 'RSA-OAEP with SHA-256 and no label',
193 ciphertext: ciphertext['sha-256, no label']
196 name: 'RSA-OAEP with SHA-384 and no label',
206 ciphertext: ciphertext['sha-384, no label']
209 name: 'RSA-OAEP with SHA-512 and no label',
219 ciphertext: ciphertext['sha-512, no label']
222 name: 'RSA-OAEP with SHA-1 and empty label',
229 algorithm: { name: 'RSA-OAEP', label: new Uint8Array([]) },
232 ciphertext: ciphertext['sha-1, no label']
235 name: 'RSA-OAEP with SHA-256 and empty label',
242 algorithm: { name: 'RSA-OAEP', label: new Uint8Array([]) },
245 ciphertext: ciphertext['sha-256, no label']
248 name: 'RSA-OAEP with SHA-384 and empty label',
255 algorithm: { name: 'RSA-OAEP', label: new Uint8Array([]) },
258 ciphertext: ciphertext['sha-384, no label']
261 name: 'RSA-OAEP with SHA-512 and empty label',
268 algorithm: { name: 'RSA-OAEP', label: new Uint8Array([]) },
271 ciphertext: ciphertext['sha-512, no label']
274 name: 'RSA-OAEP with SHA-1 and a label',
281 algorithm: { name: 'RSA-OAEP', label },
284 ciphertext: ciphertext['sha-1, with label']
287 name: 'RSA-OAEP with SHA-256 and a label',
294 algorithm: { name: 'RSA-OAEP', label },
297 ciphertext: ciphertext['sha-256, with label']
300 name: 'RSA-OAEP with SHA-384 and a label',
307 algorithm: { name: 'RSA-OAEP', label },
310 ciphertext: ciphertext['sha-384, with label']
313 name: 'RSA-OAEP with SHA-512 and a label',
320 algorithm: { name: 'RSA-OAEP', label },
323 ciphertext: ciphertext['sha-512, with label']