Home
last modified time | relevance | path

Searched refs:nacl (Results 1 – 25 of 42) sorted by relevance

12

/third_party/node/deps/npm/node_modules/tweetnacl/
DREADME.md4 Port of [TweetNaCl](http://tweetnacl.cr.yp.to) / [NaCl](http://nacl.cr.yp.to/)
45 * `nacl.js` is the port of TweetNaCl with minimum differences from the
48 * `nacl-fast.js` is like `nacl.js`, but with some functions replaced with
88 #### nacl.box.keyPair()
99 #### nacl.box.keyPair.fromSecretKey(secretKey)
104 #### nacl.box(message, nonce, theirPublicKey, mySecretKey)
110 `nacl.box.overheadLength` longer than the original message.
112 #### nacl.box.open(box, nonce, theirPublicKey, mySecretKey)
119 #### nacl.box.before(theirPublicKey, mySecretKey)
121 Returns a precomputed shared key which can be used in `nacl.box.after` and
[all …]
DCHANGELOG.md54 * **Breaking change!** All functions from `nacl.util` have been removed. These
57 nacl.util.decodeUTF8
58 nacl.util.encodeUTF8
59 nacl.util.decodeBase64
60 nacl.util.encodeBase64
65 <script src="nacl.min.js"></script>
66 <script src="nacl-util.min.js"></script>
70 var nacl = require('tweetnacl');
71 nacl.util = require('tweetnacl-util');
74 compatibility and better performance. Functions from `nacl.util` were never
[all …]
Dnacl.d.ts3 export as namespace nacl; namespace
5 declare var nacl: nacl; variable
6 export = nacl;
8 declare namespace nacl { namespace
89 declare interface nacl { interface
91 secretbox: nacl.secretbox;
92 scalarMult: nacl.scalarMult;
93 box: nacl.box;
94 sign: nacl.sign;
95 hash: nacl.hash;
Dnacl.js1 (function(nacl) { argument
880 nacl.lowlevel = {
948 if (!nacl.util) {
949 nacl.util = {};
950nacl.util.decodeUTF8 = nacl.util.encodeUTF8 = nacl.util.encodeBase64 = nacl.util.decodeBase64 = fu…
955 nacl.randomBytes = function(n) {
961 nacl.secretbox = function(msg, nonce, key) {
971 nacl.secretbox.open = function(box, nonce, key) {
982 nacl.secretbox.keyLength = crypto_secretbox_KEYBYTES;
983 nacl.secretbox.nonceLength = crypto_secretbox_NONCEBYTES;
[all …]
Dnacl-fast.js1 (function(nacl) { argument
2093 nacl.lowlevel = {
2161 if (!nacl.util) {
2162 nacl.util = {};
2163nacl.util.decodeUTF8 = nacl.util.encodeUTF8 = nacl.util.encodeBase64 = nacl.util.decodeBase64 = fu…
2168 nacl.randomBytes = function(n) {
2174 nacl.secretbox = function(msg, nonce, key) {
2184 nacl.secretbox.open = function(box, nonce, key) {
2195 nacl.secretbox.keyLength = crypto_secretbox_KEYBYTES;
2196 nacl.secretbox.nonceLength = crypto_secretbox_NONCEBYTES;
[all …]
/third_party/flutter/skia/third_party/externals/sdl/src/video/nacl/
DSDL_naclvideo.c46 static SDL_VideoData nacl = {0}; variable
53 nacl.w = width; in NACL_SetScreenResolution()
54 nacl.h = height; in NACL_SetScreenResolution()
55 nacl.format = format; in NACL_SetScreenResolution()
57 if (nacl.window) { in NACL_SetScreenResolution()
58 nacl.window->w = width; in NACL_SetScreenResolution()
59 nacl.window->h = height; in NACL_SetScreenResolution()
60 SDL_SendWindowEvent(nacl.window, SDL_WINDOWEVENT_RESIZED, width, height); in NACL_SetScreenResolution()
103 device->driverdata = &nacl; in NACL_CreateDevice()
/third_party/flutter/skia/third_party/externals/sdl/build-scripts/
Dnacl-buildbot.sh10 TARBALL=sdl-nacl.tar.xz
43 ../configure --host=pnacl --prefix=$PWD/nacl-sdl2-installed
47 …l-sdl2-installed#/usr/local#g;" ./nacl-sdl2-installed/lib/libSDL2.la ./nacl-sdl2-installed/lib/pkg…
49 mv ./nacl-sdl2-installed ./usr/local
Dnaclbuild.sh82 cp -f $SDLPATH/test/nacl/* $TESTBUILDPATH
/third_party/node/deps/npm/node_modules/sshpk/lib/
Ded-compat.js8 var nacl; variable
16 if (nacl === undefined)
17 nacl = require('tweetnacl');
57 return (nacl.sign.detached.verify(
64 if (nacl === undefined)
65 nacl = require('tweetnacl');
90 var sig = nacl.sign.detached(
Dprivate-key.js18 var nacl; variable
93 if (nacl === undefined)
94 nacl = require('tweetnacl');
100 pair = nacl.box.keyPair.fromSecretKey(new Uint8Array(priv));
111 if (nacl === undefined)
112 nacl = require('tweetnacl');
118 pair = nacl.sign.keyPair.fromSeed(new Uint8Array(priv));
Ddhe.js14 var nacl; variable
79 if (nacl === undefined)
80 nacl = require('tweetnacl');
190 var secret = nacl.box.before(new Uint8Array(pub),
261 var pair = nacl.box.keyPair();
324 if (nacl === undefined)
325 nacl = require('tweetnacl');
327 var pair = nacl.sign.keyPair();
Dutils.js32 var nacl; variable
276 if (nacl === undefined)
277 nacl = require('tweetnacl');
279 var kp = nacl.sign.keyPair.fromSeed(new Uint8Array(k));
286 if (nacl === undefined)
287 nacl = require('tweetnacl');
289 var kp = nacl.box.keyPair.fromSeed(new Uint8Array(k));
/third_party/harfbuzz/test/api/
Dtest-ot-meta.c67 hb_blob_t *nacl = hb_ot_meta_reference_entry (face, (hb_ot_meta_tag_t) HB_TAG ('n','a','c','l')); in test_ot_meta_reference_entry() local
68 g_assert_cmpint (hb_blob_get_length (nacl), ==, 0); in test_ot_meta_reference_entry()
69 hb_blob_destroy (nacl); in test_ot_meta_reference_entry()
/third_party/skia/third_party/externals/harfbuzz/test/api/
Dtest-ot-meta.c67 hb_blob_t *nacl = hb_ot_meta_reference_entry (face, (hb_ot_meta_tag_t) HB_TAG ('n','a','c','l')); in test_ot_meta_reference_entry() local
68 g_assert_cmpint (hb_blob_get_length (nacl), ==, 0); in test_ot_meta_reference_entry()
69 hb_blob_destroy (nacl); in test_ot_meta_reference_entry()
/third_party/skia/third_party/externals/swiftshader/docs/
DSubzero.md17 * Run `mkdir nacl && cd nacl && fetch nacl` ([ref](http://www.chromium.org/nativeclient/how-tos/how…
/third_party/cef/patch/patches/
Dchrome_renderer.patch11 import("//components/nacl/features.gni")
31 "//components/nacl/loader",
Dgn_config.patch25 import("//components/nacl/features.gni")
137 import("//components/nacl/features.gni")
Dwebui_2037.patch81 #include "components/nacl/common/nacl_process_type.h"
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/
DREADME-wasm.md6 LD_LIBRARY_PATH=~/nacl/v8/out/native/lib.target make -j48 \
8 LD_LIBRARY_PATH=~/nacl/v8/out/native/lib.target ./pnacl-sz -O2 -filetype=asm \
/third_party/skia/buildtools/reclient_cfgs/
D.gitignore2 /nacl/
/third_party/node/deps/npm/node_modules/node-gyp/gyp/
Dcodereview.settings9 TRYSERVER_SVN_URL: svn://svn.chromium.org/chrome-try/try-nacl
/third_party/flutter/skia/third_party/externals/sdl/docs/
DREADME-nacl.md24 in test/nacl/Makefile, which includes some monkey patching of the common.mk file
28 Also provided in test/nacl is the required support file, such as index.html,
DREADME.md42 - [Native Client](README-nacl.md)
/third_party/skia/
Dpublic.bzl288 "src/ports/*nacl*",
324 "src/ports/*nacl*",
361 "src/ports/*nacl*",
405 "src/ports/*nacl*",
444 "src/ports/*nacl*",
/third_party/flutter/skia/
Dpublic.bzl298 "src/ports/*nacl*",
330 "src/ports/*nacl*",
363 "src/ports/*nacl*",

12