Searched refs:tagbuf (Results 1 – 4 of 4) sorted by relevance
/third_party/node/lib/internal/crypto/ |
D | cipher.js | 224 function setAuthTag(tagbuf, encoding) { argument 225 tagbuf = getArrayBufferOrView(tagbuf, 'buffer', encoding); 226 if (!this[kHandle].setAuthTag(tagbuf))
|
/third_party/ffmpeg/libavformat/ |
D | apngenc.c | 66 uint8_t tagbuf[4]; in apng_write_chunk() local 71 AV_WB32(tagbuf, tag); in apng_write_chunk() 72 crc = av_crc(crc_table, crc, tagbuf, 4); in apng_write_chunk()
|
/third_party/node/test/parallel/ |
D | test-crypto-cipher-decipher.js | 223 const tagbuf = Buffer.from('auth_tag'); constant 227 assert.strictEqual(decipher.setAuthTag(tagbuf), decipher);
|
/third_party/ffmpeg/libavcodec/ |
D | pngenc.c | 231 uint8_t tagbuf[4]; in png_write_chunk() local 234 AV_WL32(tagbuf, tag); in png_write_chunk() 235 crc = av_crc(crc_table, crc, tagbuf, 4); in png_write_chunk()
|