/* Copyright (C) 2017 Apple Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF * THE POSSIBILITY OF SUCH DAMAGE. */ [ Conditional=WEB_CRYPTO, ImplementedAs=CryptoAlgorithmAesCtrParams ] dictionary AesCtrParams : CryptoAlgorithmParameters { // The initial value of the counter block. counter MUST be 16 bytes // (the AES block size). The counter bits are the rightmost length // bits of the counter block. The rest of the counter block is for // the nonce. The counter bits are incremented using the standard // incrementing function specified in NIST SP 800-38A Appendix B.1: // the counter bits are interpreted as a big-endian integer and // incremented by one. required BufferSource counter; // The length, in bits, of the rightmost part of the counter block // that is incremented. required [EnforceRange] octet length; }; constructors-when-needed'>create-constructors-when-needed Unnamed repository; edit this file 'description' to name the repository.
aboutsummaryrefslogtreecommitdiff
path: root/test/bun.js/bash-echo.sh (unfollow)
AgeCommit message (Expand)AuthorFilesLines
2023-01-08cleanupGravatar Jarred Sumner 2-1/+4
2023-01-07Workaround macOS issueGravatar Jarred Sumner 3-20/+37
2023-01-07Document `connectError`Gravatar Jarred Sumner 1-0/+15
2023-01-07[Bun.connect] Fix bug where connect() Promise wouldn't reject on a connection...Gravatar Jarred Sumner 7-31/+102
2023-01-07Update uwsGravatar Jarred Sumner 1-0/+0
2023-01-07Linux buildGravatar Jarred SUmner 1-12/+3
2023-01-07Change errorGravatar Jarred SUmner 1-1/+1
2023-01-07Return ENOTFOUND instead of ENOTERRORGravatar Jarred SUmner 1-1/+1
2023-01-07Fix segfault on Linux when getaddrinfo returns an error\nSee https://github.c...Gravatar Jarred SUmner 1-1/+4
2023-01-07Mark more things as only macGravatar Jarred Sumner 2-0/+14
2023-01-07Don't include this symbol on linuxGravatar Jarred Sumner 1-0/+3
2023-01-07very simple node:dns implementationGravatar Jarred Sumner 3-0/+445
2023-01-07Implement DNS module (#1691)Gravatar Jarred Sumner 31-56/+2777
2023-01-07test `BufferList` against surrogate pairsGravatar alexlamsl 1-5/+11
2023-01-06Add missing null checkGravatar Jarred Sumner 1-6/+9
2023-01-06fix typo in install.sh (#1737)Gravatar Ikko Eltociear Ashimine 1-1/+1
2023-01-05lazily create buffer/string slices (#1735)Gravatar Alex Lam S.L 3-33/+158
2023-01-05Report unhandled promise rejection on exit and make exit code 1 instead of 0 ...Gravatar Jarred Sumner 6-54/+108
2023-01-05always report rejected promisesGravatar Jarred Sumner 2-1/+3
2023-01-05Clean up some napi codeGravatar Jarred Sumner 2-70/+79
2023-01-05napi_boolean -> napi_numberGravatar Jarred Sumner 1-1/+1
2023-01-05Fixes #1733Gravatar Jarred Sumner 2-67/+79
2023-01-05[socket] fix double-free in `finalize()` (#1731)Gravatar Alex Lam S.L 3-53/+45
2023-01-05BumpGravatar Jarred Sumner 1-1/+1
2023-01-05fix `onConnectError()` error propagation (#1730)Gravatar Alex Lam S.L 1-2/+2
2023-01-05Update tcp-echo.bun.tsGravatar Jarred Sumner 1-13/+15
2023-01-05Really fix #1722Gravatar Jarred Sumner 2-3/+41
2023-01-05improve `.toThrow()` compatibility with Jest (#1728)Gravatar Alex Lam S.L 2-17/+33
2023-01-04Fix Bun.serve typings (#1714)Gravatar u9g 1-2/+2
2023-01-04implement `expect().toThrow()` (#1727)Gravatar Alex Lam S.L 5-130/+370
2023-01-04Add `SharedBuffer` from WebKit to make it easier to import more WebCore stuffGravatar Jarred Sumner 2-0/+1111
2023-01-04Fix default export for streamGravatar Jarred Sumner 1-11/+4
2023-01-04Fixes #1722Gravatar Jarred Sumner 1-1/+2
2023-01-04split server/client for tcp echo benchmark to better measure net.Socket perfGravatar Jarred Sumner 2-58/+60
2023-01-04buffer list clean-ups (#1721)Gravatar Alex Lam S.L 1-37/+68
2023-01-04Support non-classes in node:net (#1712)Gravatar Jarred Sumner 1-198/+216
2023-01-04Fixes #1716Gravatar Jarred Sumner 1-2/+2
2023-01-0410x faster `new Buffer` (#1717)Gravatar Jarred Sumner 19-520/+480
2023-01-03Update README.mdGravatar Jarred Sumner 1-2/+2
2023-01-03Add sqlite to vendorGravatar Jarred Sumner 1-4/+8
2023-01-03Fixes https://github.com/oven-sh/bun/issues/1695Gravatar Jarred Sumner 1-1/+1
2023-01-03Remove usages of std.xGravatar Jarred Sumner 7-98/+75
2023-01-03[streams] speed up `Readable` in some cases (#1708)Gravatar Alex Lam S.L 3-14/+140
2023-01-03Fix crash in BufferListGravatar Jarred Sumner 1-2/+2