2025-03-18 11:44.10: New job: test mirage/mirage-crypto https://github.com/mirage/mirage-crypto.git#refs/pull/262/head (612ad262d7fcd13e353ba4ff9024312426b6a490) (linux-x86_64:(lower-bound)) Base: ocaml/opam:debian-12-ocaml-4.14@sha256:74114e6518f67eaaca9dfbd3a0a8e27123f8607d1ac62b00e945d9c187c96098 Opam project build To reproduce locally: git clone --recursive "https://github.com/mirage/mirage-crypto.git" && cd "mirage-crypto" && git fetch origin "refs/pull/262/head" && git reset --hard 612ad262 cat > Dockerfile <<'END-OF-DOCKERFILE' FROM ocaml/opam:debian-12-ocaml-4.14@sha256:74114e6518f67eaaca9dfbd3a0a8e27123f8607d1ac62b00e945d9c187c96098 # debian-12-4.14_opam-2.3 USER 1000:1000 ENV CLICOLOR_FORCE="1" ENV OPAMCOLOR="always" WORKDIR /src RUN sudo ln -f /usr/bin/opam-2.3 /usr/bin/opam RUN opam init --reinit -ni RUN uname -rs && opam exec -- ocaml -version && opam --version WORKDIR /src RUN sudo chown opam /src RUN cd ~/opam-repository && (git cat-file -e cb8df6db0195538a02cc2b2eb20e468f22c475a7 || git fetch origin master) && git reset -q --hard cb8df6db0195538a02cc2b2eb20e468f22c475a7 && git log --no-decorate -n1 --oneline && opam update -u COPY --chown=1000:1000 mirage-crypto.opam mirage-crypto-rng.opam mirage-crypto-rng-mirage.opam mirage-crypto-rng-miou-unix.opam mirage-crypto-pk.opam mirage-crypto-ec.opam ./ RUN opam pin add -yn mirage-crypto.dev './' && \ opam pin add -yn mirage-crypto-rng.dev './' && \ opam pin add -yn mirage-crypto-rng-mirage.dev './' && \ opam pin add -yn mirage-crypto-rng-miou-unix.dev './' && \ opam pin add -yn mirage-crypto-pk.dev './' && \ opam pin add -yn mirage-crypto-ec.dev './' RUN echo '(lang dune 3.0)' > './dune-project' ENV DEPS="alcotest.1.0.0 asn1-combinators.0.3.1 astring.0.8.5 base.v0.14.2 base-bigarray.base base-bytes.base base-threads.base base-unix.base bigarray-compat.1.0.0 biniou.1.2.0 cmdliner.1.0.3 conf-gmp.1 conf-gmp-powm-sec.1 conf-pkg-config.1.0 conf-which.1 cppo.1.6.1 cstruct.3.0.0 digestif.1.2.0 domain-name.0.3.0 dune.2.8.5 dune-configurator.2.3.0 dune-private-libs.2.3.0 duration.0.1.0 easy-format.1.0.1 eqaf.0.8 fmt.0.8.7 functoria-runtime.4.0.0~beta1 io-page.2.4.0 ipaddr.5.0.0 jbuilder.1.0+beta20.1 logs.0.6.3 lwt.5.4.0 macaddr.5.0.0 mirage-mtime.5.0.0 mirage-runtime.4.0.0~beta1 mirage-sleep.4.0.0 mirage-unix.5.0.0 mmap.1.1.0 mtime.2.0.0 num.1.0 ocaml.4.14.2 ocaml-base-compiler.4.14.2 ocaml-compiler-libs.v0.11.0 ocaml-config.2 ocaml-options-vanilla.1 ocamlbuild.0.14.0 ocamlfind.1.9.1 ocplib-endian.1.0 ohex.0.2.0 ounit2.2.2.0 parsexp.v0.14.1 ppx_derivers.1.0 ppx_deriving.5.2 ppx_deriving_yojson.3.6.1 ppxlib.0.24.0 ptime.0.8.6 randomconv.0.2.0 re.1.7.2 result.1.5 seq.0.3 sexplib.v0.14.0 sexplib0.v0.14.0 stdlib-shims.0.1.0 topkg.1.0.3 uuidm.0.9.6 yojson.1.6.0 zarith.1.13" ENV CI="true" ENV OCAMLCI="true" RUN opam update --depexts && opam install --cli=2.3 --depext-only -y mirage-crypto.dev mirage-crypto-rng.dev mirage-crypto-rng-mirage.dev mirage-crypto-pk.dev mirage-crypto-ec.dev $DEPS RUN opam install $DEPS COPY --chown=1000:1000 . /src RUN opam exec -- dune build --only-packages=mirage-crypto,mirage-crypto-rng,mirage-crypto-rng-mirage,mirage-crypto-pk,mirage-crypto-ec @install @check @runtest && rm -rf _build END-OF-DOCKERFILE docker build . END-REPRO-BLOCK 2025-03-18 11:44.10: Using cache hint "mirage/mirage-crypto-ocaml/opam:debian-12-ocaml-4.14@sha256:74114e6518f67eaaca9dfbd3a0a8e27123f8607d1ac62b00e945d9c187c96098-debian-12-4.14_opam-2.3-439e4f89e05d62943ba5c3d81d441a46" 2025-03-18 11:44.10: Using OBuilder spec: ((from ocaml/opam:debian-12-ocaml-4.14@sha256:74114e6518f67eaaca9dfbd3a0a8e27123f8607d1ac62b00e945d9c187c96098) (comment debian-12-4.14_opam-2.3) (user (uid 1000) (gid 1000)) (env CLICOLOR_FORCE 1) (env OPAMCOLOR always) (workdir /src) (run (shell "sudo ln -f /usr/bin/opam-2.3 /usr/bin/opam")) (run (shell "opam init --reinit -ni")) (run (shell "uname -rs && opam exec -- ocaml -version && opam --version")) (workdir /src) (run (shell "sudo chown opam /src")) (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "cd ~/opam-repository && (git cat-file -e cb8df6db0195538a02cc2b2eb20e468f22c475a7 || git fetch origin master) && git reset -q --hard cb8df6db0195538a02cc2b2eb20e468f22c475a7 && git log --no-decorate -n1 --oneline && opam update -u")) (copy (src mirage-crypto.opam mirage-crypto-rng.opam mirage-crypto-rng-mirage.opam mirage-crypto-rng-miou-unix.opam mirage-crypto-pk.opam mirage-crypto-ec.opam) (dst ./)) (run (network host) (shell "opam pin add -yn mirage-crypto.dev './' && \ \nopam pin add -yn mirage-crypto-rng.dev './' && \ \nopam pin add -yn mirage-crypto-rng-mirage.dev './' && \ \nopam pin add -yn mirage-crypto-rng-miou-unix.dev './' && \ \nopam pin add -yn mirage-crypto-pk.dev './' && \ \nopam pin add -yn mirage-crypto-ec.dev './'")) (run (network host) (shell "echo '(lang dune 3.0)' > './dune-project'")) (env DEPS "alcotest.1.0.0 asn1-combinators.0.3.1 astring.0.8.5 base.v0.14.2 base-bigarray.base base-bytes.base base-threads.base base-unix.base bigarray-compat.1.0.0 biniou.1.2.0 cmdliner.1.0.3 conf-gmp.1 conf-gmp-powm-sec.1 conf-pkg-config.1.0 conf-which.1 cppo.1.6.1 cstruct.3.0.0 digestif.1.2.0 domain-name.0.3.0 dune.2.8.5 dune-configurator.2.3.0 dune-private-libs.2.3.0 duration.0.1.0 easy-format.1.0.1 eqaf.0.8 fmt.0.8.7 functoria-runtime.4.0.0~beta1 io-page.2.4.0 ipaddr.5.0.0 jbuilder.1.0+beta20.1 logs.0.6.3 lwt.5.4.0 macaddr.5.0.0 mirage-mtime.5.0.0 mirage-runtime.4.0.0~beta1 mirage-sleep.4.0.0 mirage-unix.5.0.0 mmap.1.1.0 mtime.2.0.0 num.1.0 ocaml.4.14.2 ocaml-base-compiler.4.14.2 ocaml-compiler-libs.v0.11.0 ocaml-config.2 ocaml-options-vanilla.1 ocamlbuild.0.14.0 ocamlfind.1.9.1 ocplib-endian.1.0 ohex.0.2.0 ounit2.2.2.0 parsexp.v0.14.1 ppx_derivers.1.0 ppx_deriving.5.2 ppx_deriving_yojson.3.6.1 ppxlib.0.24.0 ptime.0.8.6 randomconv.0.2.0 re.1.7.2 result.1.5 seq.0.3 sexplib.v0.14.0 sexplib0.v0.14.0 stdlib-shims.0.1.0 topkg.1.0.3 uuidm.0.9.6 yojson.1.6.0 zarith.1.13") (env CI true) (env OCAMLCI true) (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "opam update --depexts && opam install --cli=2.3 --depext-only -y mirage-crypto.dev mirage-crypto-rng.dev mirage-crypto-rng-mirage.dev mirage-crypto-pk.dev mirage-crypto-ec.dev $DEPS")) (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "opam install $DEPS")) (copy (src .) (dst /src)) (run (shell "opam exec -- dune build --only-packages=mirage-crypto,mirage-crypto-rng,mirage-crypto-rng-mirage,mirage-crypto-pk,mirage-crypto-ec @install @check @runtest && rm -rf _build")) ) 2025-03-18 11:44.10: Waiting for resource in pool OCluster 2025-03-18 11:44.11: Waiting for worker… 2025-03-18 11:44.11: Got resource from pool OCluster Building on x86-bm-c6.sw.ocaml.org All commits already cached HEAD is now at 612ad26 bump hardcoded version in test-mirage (from ocaml/opam:debian-12-ocaml-4.14@sha256:74114e6518f67eaaca9dfbd3a0a8e27123f8607d1ac62b00e945d9c187c96098) Unable to find image 'ocaml/opam:debian-12-ocaml-4.14@sha256:74114e6518f67eaaca9dfbd3a0a8e27123f8607d1ac62b00e945d9c187c96098' locally docker.io/ocaml/opam@sha256:74114e6518f67eaaca9dfbd3a0a8e27123f8607d1ac62b00e945d9c187c96098: Pulling from ocaml/opam abf49717bc35: Pulling fs layer abf49717bc35: Verifying Checksum abf49717bc35: Download complete abf49717bc35: Pull complete Digest: sha256:74114e6518f67eaaca9dfbd3a0a8e27123f8607d1ac62b00e945d9c187c96098 Status: Downloaded newer image for ocaml/opam@sha256:74114e6518f67eaaca9dfbd3a0a8e27123f8607d1ac62b00e945d9c187c96098 2025-03-18 11:44.12 ---> using "fd8c1dcac8c3a6cd3ee8edd679de5f3384de62d6f587d449e00238111470ab75" from cache /: (comment debian-12-4.14_opam-2.3) /: (user (uid 1000) (gid 1000)) /: (env CLICOLOR_FORCE 1) /: (env OPAMCOLOR always) /: (workdir /src) /src: (run (shell "sudo ln -f /usr/bin/opam-2.3 /usr/bin/opam")) 2025-03-18 11:44.12 ---> using "de47a80829174b96ecc55e5aa5c48b21162bcdcc9d09651e27d103ea9cfd06c8" from cache /src: (run (shell "opam init --reinit -ni")) Configuring from /home/opam/.opamrc and then from built-in defaults. Checking for available remotes: rsync and local, git. - you won't be able to use mercurial repositories unless you install the hg command on your system. - you won't be able to use darcs repositories unless you install the darcs command on your system. This development version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted. You may want to back it up before going further. Continue? [y/n] y [NOTE] The 'jobs' option was reset, its value was 39 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using: opam option jobs=39 --global Format upgrade done. <><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><> [ERROR] Could not update repository "opam-repository-archive": "/usr/bin/git fetch -q" exited with code 128 "fatal: unable to access 'https://github.com/ocaml/opam-repository-archive/': Could not resolve host: github.com" [default] synchronised from file:///home/opam/opam-repository 2025-03-18 11:44.12 ---> using "666b9634e6fcf4c22cc0fae2fecb2f79b9404975453b221efa9a2ed7f04a10d6" from cache /src: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version")) Linux 5.15.0-134-generic The OCaml toplevel, version 4.14.2 2.3.0 2025-03-18 11:44.12 ---> using "3c364749e3d90cc79494b6fe167f04d46c3f9c16044620efc072b1c4dc563758" from cache /src: (workdir /src) /src: (run (shell "sudo chown opam /src")) 2025-03-18 11:44.12 ---> using "06370703ea7514d3b2a452b602d6b963cc28a7a73faf50c2c02db393c46869a1" from cache /src: (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "cd ~/opam-repository && (git cat-file -e cb8df6db0195538a02cc2b2eb20e468f22c475a7 || git fetch origin master) && git reset -q --hard cb8df6db0195538a02cc2b2eb20e468f22c475a7 && git log --no-decorate -n1 --oneline && opam update -u")) From https://github.com/ocaml/opam-repository * branch master -> FETCH_HEAD 94514fa0d0..1a8bbb0ea5 master -> origin/master cb8df6db01 Merge pull request #27631 from dbuenzli/incompatible-cmdliner2 <><> Updating package repositories ><><><><><><><><><><><><><><><><><><><><><><> [opam-repository-archive] synchronised from git+https://github.com/ocaml/opam-repository-archive [default] synchronised from file:///home/opam/opam-repository Everything as up-to-date as possible (run with --verbose to show unavailable upgrades). However, you may "opam upgrade" these packages explicitly, which will ask permission to downgrade or uninstall the conflicting packages. Nothing to do. # To update the current shell environment, run: eval $(opam env) 2025-03-18 11:44.12 ---> using "96e575b2877f1e46c715d9fbdf8d08097146cf70fb1cba90acf5ec4dfad05194" from cache /src: (copy (src mirage-crypto.opam mirage-crypto-rng.opam mirage-crypto-rng-mirage.opam mirage-crypto-rng-miou-unix.opam mirage-crypto-pk.opam mirage-crypto-ec.opam) (dst ./)) 2025-03-18 11:44.12 ---> using "d91bf4ffae579478c319c14efd47ae34dac7f74014026b060e8a5eec39b305ca" from cache /src: (run (network host) (shell "opam pin add -yn mirage-crypto.dev './' && \ \nopam pin add -yn mirage-crypto-rng.dev './' && \ \nopam pin add -yn mirage-crypto-rng-mirage.dev './' && \ \nopam pin add -yn mirage-crypto-rng-miou-unix.dev './' && \ \nopam pin add -yn mirage-crypto-pk.dev './' && \ \nopam pin add -yn mirage-crypto-ec.dev './'")) [mirage-crypto.dev] synchronised (file:///src) mirage-crypto is now pinned to file:///src (version dev) [mirage-crypto-rng.dev] synchronised (file:///src) mirage-crypto-rng is now pinned to file:///src (version dev) [mirage-crypto-rng-mirage.dev] synchronised (file:///src) mirage-crypto-rng-mirage is now pinned to file:///src (version dev) [mirage-crypto-rng-miou-unix.dev] synchronised (file:///src) mirage-crypto-rng-miou-unix is now pinned to file:///src (version dev) [mirage-crypto-pk.dev] synchronised (file:///src) mirage-crypto-pk is now pinned to file:///src (version dev) [mirage-crypto-ec.dev] synchronised (file:///src) mirage-crypto-ec is now pinned to file:///src (version dev) 2025-03-18 11:44.12 ---> using "a5761b26ae2ce84aa5d5ee8a6aeba89a10e2981d9abef8b3df57bd3b4a3f1b00" from cache /src: (run (network host) (shell "echo '(lang dune 3.0)' > './dune-project'")) 2025-03-18 11:44.12 ---> using "7810eb77d87435f8c394d46627db276c04d4a5abe5ea5f3cde777c14f6ba9752" from cache /src: (env DEPS "alcotest.1.0.0 asn1-combinators.0.3.1 astring.0.8.5 base.v0.14.2 base-bigarray.base base-bytes.base base-threads.base base-unix.base bigarray-compat.1.0.0 biniou.1.2.0 cmdliner.1.0.3 conf-gmp.1 conf-gmp-powm-sec.1 conf-pkg-config.1.0 conf-which.1 cppo.1.6.1 cstruct.3.0.0 digestif.1.2.0 domain-name.0.3.0 dune.2.8.5 dune-configurator.2.3.0 dune-private-libs.2.3.0 duration.0.1.0 easy-format.1.0.1 eqaf.0.8 fmt.0.8.7 functoria-runtime.4.0.0~beta1 io-page.2.4.0 ipaddr.5.0.0 jbuilder.1.0+beta20.1 logs.0.6.3 lwt.5.4.0 macaddr.5.0.0 mirage-mtime.5.0.0 mirage-runtime.4.0.0~beta1 mirage-sleep.4.0.0 mirage-unix.5.0.0 mmap.1.1.0 mtime.2.0.0 num.1.0 ocaml.4.14.2 ocaml-base-compiler.4.14.2 ocaml-compiler-libs.v0.11.0 ocaml-config.2 ocaml-options-vanilla.1 ocamlbuild.0.14.0 ocamlfind.1.9.1 ocplib-endian.1.0 ohex.0.2.0 ounit2.2.2.0 parsexp.v0.14.1 ppx_derivers.1.0 ppx_deriving.5.2 ppx_deriving_yojson.3.6.1 ppxlib.0.24.0 ptime.0.8.6 randomconv.0.2.0 re.1.7.2 result.1.5 seq.0.3 sexplib.v0.14.0 sexplib0.v0.14.0 stdlib-shims.0.1.0 topkg.1.0.3 uuidm.0.9.6 yojson.1.6.0 zarith.1.13") /src: (env CI true) /src: (env OCAMLCI true) /src: (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "opam update --depexts && opam install --cli=2.3 --depext-only -y mirage-crypto.dev mirage-crypto-rng.dev mirage-crypto-rng-mirage.dev mirage-crypto-pk.dev mirage-crypto-ec.dev $DEPS")) + /usr/bin/sudo "apt-get" "update" - Get:1 http://deb.debian.org/debian bookworm InRelease [151 kB] - Get:2 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB] - Get:3 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB] - Get:4 http://deb.debian.org/debian bookworm/main amd64 Packages [8792 kB] - Get:5 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [249 kB] - Fetched 9296 kB in 1s (6502 kB/s) - Reading package lists... - <><> Synchronising pinned packages ><><><><><><><><><><><><><><><><><><><><><><> [mirage-crypto.dev] synchronised (file:///src) [mirage-crypto-ec.dev] synchronised (file:///src) [mirage-crypto-pk.dev] synchronised (file:///src) [mirage-crypto-rng.dev] synchronised (file:///src) [mirage-crypto-rng-mirage.dev] synchronised (file:///src) [NOTE] Package ocaml-options-vanilla is already installed (current version is 1). [NOTE] Package ocaml-config is already installed (current version is 2). [NOTE] Package ocaml-base-compiler is already installed (current version is 4.14.2). [NOTE] Package ocaml is already installed (current version is 4.14.2). [NOTE] Package base-unix is already installed (current version is base). [NOTE] Package base-threads is already installed (current version is base). [NOTE] Package base-bigarray is already installed (current version is base). The following system packages will first need to be installed: libgmp-dev pkg-config <><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><> + /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "libgmp-dev" "pkg-config" - debconf: delaying package configuration, since apt-utils is not installed - Selecting previously unselected package libgmpxx4ldbl:amd64. - (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 18745 files and directories currently installed.) - Preparing to unpack .../0-libgmpxx4ldbl_2%3a6.2.1+dfsg1-1.1_amd64.deb ... - Unpacking libgmpxx4ldbl:amd64 (2:6.2.1+dfsg1-1.1) ... - Selecting previously unselected package libgmp-dev:amd64. - Preparing to unpack .../1-libgmp-dev_2%3a6.2.1+dfsg1-1.1_amd64.deb ... - Unpacking libgmp-dev:amd64 (2:6.2.1+dfsg1-1.1) ... - Selecting previously unselected package libpkgconf3:amd64. - Preparing to unpack .../2-libpkgconf3_1.8.1-1_amd64.deb ... - Unpacking libpkgconf3:amd64 (1.8.1-1) ... - Selecting previously unselected package pkgconf-bin. - Preparing to unpack .../3-pkgconf-bin_1.8.1-1_amd64.deb ... - Unpacking pkgconf-bin (1.8.1-1) ... - Selecting previously unselected package pkgconf:amd64. - Preparing to unpack .../4-pkgconf_1.8.1-1_amd64.deb ... - Unpacking pkgconf:amd64 (1.8.1-1) ... - Selecting previously unselected package pkg-config:amd64. - Preparing to unpack .../5-pkg-config_1.8.1-1_amd64.deb ... - Unpacking pkg-config:amd64 (1.8.1-1) ... - Setting up libpkgconf3:amd64 (1.8.1-1) ... - Setting up libgmpxx4ldbl:amd64 (2:6.2.1+dfsg1-1.1) ... - Setting up pkgconf-bin (1.8.1-1) ... - Setting up libgmp-dev:amd64 (2:6.2.1+dfsg1-1.1) ... - Setting up pkgconf:amd64 (1.8.1-1) ... - Setting up pkg-config:amd64 (1.8.1-1) ... - Processing triggers for libc-bin (2.36-9+deb12u9) ... 2025-03-18 11:44.12 ---> using "41405ce0e4349fb89dd93df8cf32a872e5814714f9217f6fd7155e8f751e02ac" from cache /src: (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "opam install $DEPS")) [NOTE] Package ocaml-options-vanilla is already installed (current version is 1). [NOTE] Package ocaml-config is already installed (current version is 2). [NOTE] Package ocaml-base-compiler is already installed (current version is 4.14.2). [NOTE] Package ocaml is already installed (current version is 4.14.2). [NOTE] Package base-unix is already installed (current version is base). [NOTE] Package base-threads is already installed (current version is base). [NOTE] Package base-bigarray is already installed (current version is base). The following actions will be performed: === install 60 packages - install alcotest 1.0.0 - install asn1-combinators 0.3.1 - install astring 0.8.5 - install base v0.14.2 - install base-bytes base - install bigarray-compat 1.0.0 - install biniou 1.2.0 - install cmdliner 1.0.3 - install conf-gmp 1 - install conf-gmp-powm-sec 1 - install conf-pkg-config 1.0 - install conf-which 1 - install cppo 1.6.1 - install cstruct 3.0.0 - install digestif 1.2.0 - install domain-name 0.3.0 - install dune 2.8.5 - install dune-configurator 2.3.0 - install dune-private-libs 2.3.0 - install duration 0.1.0 - install easy-format 1.0.1 - install eqaf 0.8 - install fmt 0.8.7 - install functoria-runtime 4.0.0~beta1 - install io-page 2.4.0 - install ipaddr 5.0.0 - install jbuilder 1.0+beta20.1 (deprecated) - install logs 0.6.3 - install lwt 5.4.0 - install macaddr 5.0.0 - install mirage-mtime 5.0.0 - install mirage-runtime 4.0.0~beta1 - install mirage-sleep 4.0.0 - install mirage-unix 5.0.0 - install mmap 1.1.0 - install mtime 2.0.0 - install num 1.0 - install ocaml-compiler-libs v0.11.0 - install ocamlbuild 0.14.0 - install ocamlfind 1.9.1 - install ocplib-endian 1.0 - install ohex 0.2.0 - install ounit2 2.2.0 - install parsexp v0.14.1 - install ppx_derivers 1.0 - install ppx_deriving 5.2 - install ppx_deriving_yojson 3.6.1 - install ppxlib 0.24.0 - install ptime 0.8.6 - install randomconv 0.2.0 - install re 1.7.2 - install result 1.5 - install seq 0.3 - install sexplib v0.14.0 - install sexplib0 v0.14.0 - install stdlib-shims 0.1.0 - install topkg 1.0.3 - install uuidm 0.9.6 - install yojson 1.6.0 - install zarith 1.13 <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> -> retrieved asn1-combinators.0.3.1 (cached) -> retrieved astring.0.8.5 (cached) -> retrieved bigarray-compat.1.0.0 (cached) -> retrieved biniou.1.2.0 (cached) -> retrieved base.v0.14.2 (cached) -> retrieved conf-gmp.1 (cached) -> retrieved conf-gmp-powm-sec.1 (cached) -> retrieved alcotest.1.0.0 (cached) -> retrieved cmdliner.1.0.3 (cached) -> retrieved cppo.1.6.1 (cached) -> installed conf-gmp.1 -> installed conf-pkg-config.1.0 -> installed conf-which.1 -> retrieved cstruct.3.0.0 (cached) -> retrieved domain-name.0.3.0 (cached) -> installed conf-gmp-powm-sec.1 -> retrieved dune-configurator.2.3.0, dune-private-libs.2.3.0 (cached) -> retrieved digestif.1.2.0 (cached) -> retrieved dune.2.8.5 (cached) -> retrieved duration.0.1.0 (cached) -> retrieved easy-format.1.0.1 (cached) -> retrieved eqaf.0.8 (cached) -> retrieved fmt.0.8.7 (cached) -> retrieved io-page.2.4.0 (cached) -> retrieved ipaddr.5.0.0, macaddr.5.0.0 (cached) -> installed cmdliner.1.0.3 -> retrieved functoria-runtime.4.0.0~beta1, mirage-runtime.4.0.0~beta1 (cached) -> retrieved jbuilder.1.0+beta20.1 (cached) -> retrieved logs.0.6.3 (cached) -> retrieved lwt.5.4.0 (cached) -> retrieved mirage-mtime.5.0.0 (cached) -> retrieved mirage-sleep.4.0.0 (cached) -> retrieved mirage-unix.5.0.0 (cached) -> retrieved mmap.1.1.0 (cached) -> retrieved mtime.2.0.0 (cached) -> retrieved num.1.0 (cached) -> retrieved ocaml-compiler-libs.v0.11.0 (cached) -> retrieved ocamlbuild.0.14.0 (cached) -> retrieved ocamlfind.1.9.1 (cached) -> retrieved ocplib-endian.1.0 (cached) -> retrieved ohex.0.2.0 (cached) -> retrieved ounit2.2.2.0 (cached) -> retrieved parsexp.v0.14.1 (cached) -> retrieved ppx_derivers.1.0 (cached) -> retrieved ppx_deriving.5.2 (cached) -> retrieved ppx_deriving_yojson.3.6.1 (cached) -> retrieved ptime.0.8.6 (cached) -> retrieved randomconv.0.2.0 (cached) -> retrieved result.1.5 (cached) -> retrieved seq.0.3 (cached) -> retrieved re.1.7.2 (cached) -> retrieved sexplib.v0.14.0 (cached) -> retrieved sexplib0.v0.14.0 (cached) -> retrieved ppxlib.0.24.0 (cached) -> retrieved stdlib-shims.0.1.0 (cached) -> retrieved topkg.1.0.3 (cached) -> retrieved uuidm.0.9.6 (cached) -> retrieved yojson.1.6.0 (cached) -> retrieved zarith.1.13 (cached) -> installed ocamlfind.1.9.1 -> installed base-bytes.base -> installed easy-format.1.0.1 -> installed num.1.0 -> installed ocamlbuild.0.14.0 -> installed zarith.1.13 -> installed jbuilder.1.0+beta20.1 -> installed ppx_derivers.1.0 -> installed biniou.1.2.0 -> installed cppo.1.6.1 -> installed re.1.7.2 -> installed ocaml-compiler-libs.v0.11.0 -> installed dune.2.8.5 -> installed bigarray-compat.1.0.0 -> installed randomconv.0.2.0 -> installed ohex.0.2.0 -> installed seq.0.3 -> installed macaddr.5.0.0 -> installed mmap.1.1.0 -> installed result.1.5 -> installed stdlib-shims.0.1.0 -> installed topkg.1.0.3 -> installed sexplib0.v0.14.0 -> installed duration.0.1.0 -> installed uuidm.0.9.6 -> installed ounit2.2.2.0 -> installed mtime.2.0.0 -> installed yojson.1.6.0 -> installed fmt.0.8.7 -> installed ptime.0.8.6 -> installed mirage-mtime.5.0.0 -> installed functoria-runtime.4.0.0~beta1 -> installed astring.0.8.5 -> installed domain-name.0.3.0 -> installed asn1-combinators.0.3.1 -> installed alcotest.1.0.0 -> installed ipaddr.5.0.0 -> installed dune-private-libs.2.3.0 -> installed dune-configurator.2.3.0 -> installed ocplib-endian.1.0 -> installed lwt.5.4.0 -> installed mirage-sleep.4.0.0 -> installed base.v0.14.2 -> installed logs.0.6.3 -> installed mirage-runtime.4.0.0~beta1 -> installed parsexp.v0.14.1 -> installed ppxlib.0.24.0 -> installed sexplib.v0.14.0 -> installed cstruct.3.0.0 -> installed io-page.2.4.0 -> installed mirage-unix.5.0.0 -> installed eqaf.0.8 -> installed digestif.1.2.0 -> installed ppx_deriving.5.2 -> installed ppx_deriving_yojson.3.6.1 Done. <><> jbuilder.1.0+beta20.1 installed successfully <><><><><><><><><><><><><><><> => Note: This package is deprecated. # To update the current shell environment, run: eval $(opam env) 2025-03-18 11:44.12 ---> using "0d773f3a24ddc4de236faa6e02883b5b88e47ccaa42a566b34752451205c7b90" from cache /src: (copy (src .) (dst /src)) 2025-03-18 11:44.13 ---> saved as "d8a97a35cba2f50e7d0bcd1e68118ca11ac5c3b6c36db93f6a6581ffd91af225" /src: (run (shell "opam exec -- dune build --only-packages=mirage-crypto,mirage-crypto-rng,mirage-crypto-rng-mirage,mirage-crypto-pk,mirage-crypto-ec @install @check @runtest && rm -rf _build")) File "/home/opam/.opam/4.14/lib/biniou/biniou.dune", line 1, characters 0-0: Warning: .dune files are ignored since 2.0. Reinstall the library with dune >= 2.0 to get rid of this warning and enable support for the subsystem this library provides. File "/home/opam/.opam/4.14/lib/ppx_derivers/ppx_derivers.dune", line 1, characters 0-0: Warning: .dune files are ignored since 2.0. Reinstall the library with dune >= 2.0 to get rid of this warning and enable support for the subsystem this library provides. File "/home/opam/.opam/4.14/lib/ocaml-compiler-libs/bytecomp/ocaml-compiler-libs.bytecomp.dune", line 1, characters 0-0: Warning: .dune files are ignored since 2.0. Reinstall the library with dune >= 2.0 to get rid of this warning and enable support for the subsystem this library provides. File "/home/opam/.opam/4.14/lib/ocaml-compiler-libs/common/ocaml-compiler-libs.common.dune", line 1, characters 0-0: Warning: .dune files are ignored since 2.0. Reinstall the library with dune >= 2.0 to get rid of this warning and enable support for the subsystem this library provides. File "/home/opam/.opam/4.14/lib/ocaml-compiler-libs/shadow/ocaml-compiler-libs.shadow.dune", line 1, characters 0-0: Warning: .dune files are ignored since 2.0. Reinstall the library with dune >= 2.0 to get rid of this warning and enable support for the subsystem this library provides. File "/home/opam/.opam/4.14/lib/ocaml-compiler-libs/toplevel/ocaml-compiler-libs.toplevel.dune", line 1, characters 0-0: Warning: .dune files are ignored since 2.0. Reinstall the library with dune >= 2.0 to get rid of this warning and enable support for the subsystem this library provides. File "/home/opam/.opam/4.14/lib/cstruct/cstruct.dune", line 1, characters 0-0: Warning: .dune files are ignored since 2.0. Reinstall the library with dune >= 2.0 to get rid of this warning and enable support for the subsystem this library provides. File "/home/opam/.opam/4.14/lib/re/re.dune", line 1, characters 0-0: Warning: .dune files are ignored since 2.0. Reinstall the library with dune >= 2.0 to get rid of this warning and enable support for the subsystem this library provides. File "/home/opam/.opam/4.14/lib/re/emacs/re.emacs.dune", line 1, characters 0-0: Warning: .dune files are ignored since 2.0. Reinstall the library with dune >= 2.0 to get rid of this warning and enable support for the subsystem this library provides. File "/home/opam/.opam/4.14/lib/re/glob/re.glob.dune", line 1, characters 0-0: Warning: .dune files are ignored since 2.0. Reinstall the library with dune >= 2.0 to get rid of this warning and enable support for the subsystem this library provides. File "/home/opam/.opam/4.14/lib/re/pcre/re.pcre.dune", line 1, characters 0-0: Warning: .dune files are ignored since 2.0. Reinstall the library with dune >= 2.0 to get rid of this warning and enable support for the subsystem this library provides. File "/home/opam/.opam/4.14/lib/re/perl/re.perl.dune", line 1, characters 0-0: Warning: .dune files are ignored since 2.0. Reinstall the library with dune >= 2.0 to get rid of this warning and enable support for the subsystem this library provides. File "/home/opam/.opam/4.14/lib/re/posix/re.posix.dune", line 1, characters 0-0: Warning: .dune files are ignored since 2.0. Reinstall the library with dune >= 2.0 to get rid of this warning and enable support for the subsystem this library provides. File "/home/opam/.opam/4.14/lib/re/str/re.str.dune", line 1, characters 0-0: Warning: .dune files are ignored since 2.0. Reinstall the library with dune >= 2.0 to get rid of this warning and enable support for the subsystem this library provides. test_entropy alias tests/runtest test entropy OK test_random_runner alias tests/runtest ......... Ran: 9 tests in: 0.11 seconds. OK test_symmetric_runner alias tests/runtest accel: XOR AES GHASH ................................................................ Ran: 64 tests in: 0.11 seconds. OK test_entropy_collection alias tests/runtest reseeding: 000000 0008 5e89 06ae 09ba 8f94 0008 53d1 f9fb ..^.........S... 000010 2412 c31a 0008 a290 c5e2 e412 d3b2 0008 $............... 000020 258d 2de0 93eb e57b 0008 443d e02a cb85 %.-....{..D=.*.. 000030 0135 0008 22ad 684b ec34 61e7 0008 a275 .5..".hK.4a....u 000040 267e 3a2d 7e36 0008 8854 bd55 f589 41e6 &~:-~6...T.U..A. 000050 0008 435f 74a7 5a9a 02d1 0008 1518 c71f ..C_t.Z......... 000060 05a2 3985 0008 fc11 07a0 787a 91e3 0008 ..9.......xz.... 000070 b1a5 e72d 1409 93ec 0008 5a52 92c5 c63e ...-......ZR...> 000080 cd56 0008 5e95 cda4 eb3d 684f 0008 d3dd .V..^....=hO.... 000090 aa11 4175 d719 0008 1db9 7388 a424 d0c7 ..Au......s..$.. 0000a0 0008 c815 ea81 9937 c4af 0008 b236 8035 .......7.....6.5 0000b0 bd0f 717a 0008 4799 0a6e 85f0 28c6 0008 ..qz..G..n..(... 0000c0 677d 330c 1f09 374c 0008 0ca0 7e6c f817 g}3...7L....~l.. 0000d0 d67d 0008 3b2e 8105 e8fa fc12 0008 103a .}..;..........: 0000e0 c26c 9d9b 8301 0008 efb0 d8a2 3c71 d4bf .l..........<q.. 0000f0 0008 716e 9af2 e8f9 b098 0008 34cf d743 ..qn........4..C 000100 1e51 72c4 0008 fb82 9c2f 94d9 8734 0008 .Qr....../...4.. 000110 575d af9a 3452 7cae 0008 a869 1ae1 db8c W]..4R|....i.... 000120 7e60 0008 61f4 9f4f b691 098b 0008 2484 ~`..a..O......$. 000130 2089 5f2c 2ac3 0008 4ef1 2b0f f0e4 8f35 ._,*...N.+....5 000140 0008 2d4a 0fbe 79ed e8b7 0008 59fe 7aec ..-J..y.....Y.z. 000150 20eb 24e3 0008 7e72 0874 45f2 2cb5 0008 .$...~r.tE.,... 000160 2c2f ee07 a28b 5f38 0008 55c7 66ee 3e02 ,/...._8..U.f.>. 000170 c986 0008 eb30 db04 fa68 5e2e 0008 04ce .....0...h^..... 000180 619a 1821 cd85 0008 ba29 536f 234a d500 a..!.....)So#J.. 000190 0008 0bc4 f63c 53ac 3b2f 0008 4632 5127 .....<S.;/..F2Q' 0001a0 634c 56e0 0008 0a87 7ed6 f1dd 8dfd 0008 cLV.....~....... 0001b0 0d33 ae9e 4edb e6a2 0008 c542 aa1b e1a9 .3..N......B.... 0001c0 13f7 0008 2a3f 70d5 094e 4ade 0008 73e4 ....*?p..NJ...s. 0001d0 2b4d 28a7 df16 0008 8823 5cb9 5b80 cb31 +M(......#\.[..1 0001e0 0008 dde5 32c9 afde c513 0008 1c8e 1601 ....2........... 0001f0 3229 c58c 0008 4ec7 e94c 1286 fc6e 0008 2)....N..L...n.. 000200 c783 9118 85a1 b81c 0008 53dd c916 7ff0 ..........S..... 000210 0786 0008 1ae9 a364 c3c2 8b3b 0008 bcb7 .......d...;.... 000220 d992 b882 ad4e 0008 6b78 612e c069 3933 .....N..kxa..i93 000230 0008 43cc 9847 0b34 f279 0008 4ecb 1407 ..C..G.4.y..N... 000240 b8b5 4b97 0008 6fb6 195d e716 28b8 0008 ..K...o..]..(... 000250 c81b 9238 f7ea 224f 0008 50be 0c07 a66a ...8.."O..P....j 000260 2683 0008 8ff6 c79c f67f cf3e 0008 90b2 &..........>.... 000270 7c9c 9d98 d603 0008 9a6d d6c1 59c4 3716 |........m..Y.7. 000280 0008 66a7 380f 9511 fe15 0008 3105 0cb1 ..f.8.......1... 000290 40be cc1c 0008 049d 8128 e121 8510 0008 @........(.!.... 0002a0 62d6 1d09 0ef4 5c73 0008 248c 90f9 f3be b.....\s..$..... 0002b0 26dd 0008 64c3 ee8b b734 e880 0008 d0ab &...d....4...... 0002c0 930c c62d f3c1 0008 e7ff 1425 4afe 639b ...-.......%J.c. 0002d0 0008 ddf8 0891 c4d3 f695 0008 10d1 dc40 ...............@ 0002e0 09d2 d557 0008 fc34 6122 f3f2 d06b 0008 ...W...4a"...k.. 0002f0 dfb8 0ce7 1fc4 96b0 0008 dd31 758d 2821 ...........1u.(! 000300 056b 0008 121c 40e2 fe0d 8abc 0008 400f .k....@.......@. 000310 cf9a 3f7e 5d7b 0008 0cb1 c7b1 1784 89ad ..?~]{.......... 000320 0008 a50c dbb3 57ed e896 0008 3389 5158 ......W.....3.QX 000330 1198 5aff 0008 b730 1902 39cd 9a00 0008 ..Z....0..9..... 000340 c0fe 3c4b 5929 5ec9 0008 1353 6263 6a71 ..<KY)^....Sbcjq 000350 c2ca 0008 575c 2f65 d424 b568 0008 e082 ....W\/e.$.h.... 000360 ec95 d4ae 9857 0008 046b df1f 53f9 ca07 .....W...k..S... 000370 0008 2114 f3be 2173 aa6c 0008 d907 fae0 ..!...!s.l...... 000380 6407 de07 0008 4abd a8ee ca0e 24c3 0008 d.....J.....$... 000390 3600 35e3 5325 66b0 0008 b54b f5c4 5435 6.5.S%f....K..T5 0003a0 bdd0 0008 4911 8423 6ef0 b666 0008 49ef ....I..#n..f..I. 0003b0 4365 ab8f c911 0008 6134 e0b6 2fed bc95 Ce......a4../... 0003c0 0008 c8ab cf9a bf25 048a 0008 1b5c 0f28 .......%.....\.( 0003d0 2cda 63d0 0008 f8f3 527e af5c f4ae 0008 ,.c.....R~.\.... 0003e0 bbc7 26cc 4ae9 73e1 0008 453b aef6 6474 ..&.J.s...E;..dt 0003f0 3015 0008 4b41 5c34 e208 fb10 0008 f387 0...KA\4........ 000400 19b2 1568 c4e2 0008 e531 a9c3 9fcd d948 ...h.....1.....H 000410 0008 bc8e e776 b0ba 3cd9 0008 4fc3 5f24 .....v..<...O._$ 000420 0abd 40ee 0008 9037 3229 c2eb b7f4 0008 ..@....72)...... 000430 730e 8171 bb6f de6b 0008 090f 0832 57a9 s..q.o.k.....2W. 000440 d85b 0008 3588 63e8 738e 7167 0008 2b44 .[..5.c.s.qg..+D 000450 cc10 71ba dc0d 0008 8f8d fea8 cd71 96e9 ..q..........q.. 000460 0008 c4d9 6246 65f1 a8c9 0008 b102 7f38 ....bFe........8 000470 08ec 4a97 0008 aa4b 7e2d d642 5677 0008 ..J....K~-.BVw.. 000480 5ce8 f1aa b43c 31ba 0008 da29 9e01 f4d3 \....<1....).... 000490 fe2c 0008 06e6 d41c 8427 afab 0008 54f0 .,.......'....T. 0004a0 5241 53f1 4b3a 0008 7ebb 690d bf30 4730 RAS.K:..~.i..0G0 0004b0 0008 dd2d a24c 4449 897a 0008 b095 bddc ...-.LDI.z...... 0004c0 38fa a71c 0008 4bcf b4fc 3693 1c0f 0008 8.....K...6..... 0004d0 469c 1456 7231 e162 0008 d5cb e234 9641 F..Vr1.b.....4.A 0004e0 0e54 0008 ee12 4edb c05b fa4d 0008 a302 .T....N..[.M.... 0004f0 8ab1 f49b fd8c 0008 a83e 3777 711a 44d6 .........>7wq.D. 000500 0008 2b46 3d73 4645 367a 0008 c4ac 33e9 ..+F=sFE6z....3. 000510 7f27 91e6 0008 44d3 d21d 7386 13da 0008 .'....D...s..... 000520 6be1 bf1e 7fe2 2613 0008 c98f 9146 51d2 k.....&......FQ. 000530 c831 0008 ac99 af51 51a7 97a6 0008 d335 .1.....QQ......5 000540 d517 e885 7fb7 0008 9085 e72c fff0 3377 ...........,..3w 000550 0008 420f 7407 6231 66f7 0008 8854 838f ..B.t.b1f....T.. 000560 70e8 2f34 0008 96dc 9fc7 f0dc d016 0008 p./4............ 000570 18e9 56d7 8e14 611c 0008 1ce7 94ed 5bba ..V...a.......[. 000580 429e 0008 43df 4c9d 8412 4858 0008 3cfc B...C.L...HX..<. 000590 8060 300c 43b4 0008 d006 f1f3 6bcd 40e0 .`0.C.......k.@. 0005a0 0008 4cbf b556 7d17 2394 0008 3547 d450 ..L..V}.#...5G.P 0005b0 d8a7 f1b1 0008 6dc1 7286 417e 42b1 0008 ......m.r.A~B... 0005c0 8973 bda5 c3a2 e9fb 0008 c34a 792a 0c52 .s.........Jy*.R 0005d0 c4e7 0008 aab4 e82b 303a 2c33 0008 ad74 .......+0:,3...t 0005e0 351b c82b 5661 0008 8005 d873 64fd d7ed 5..+Va.....sd... 0005f0 0008 19b5 fde7 a496 5407 0008 bacf d8f4 ........T....... 000600 e142 a403 0008 65a9 88ef ea5b db95 0008 .B....e....[.... 000610 d9ec d49e 0eb3 a7c4 0008 8c34 1e1f ff17 ...........4.... 000620 8c29 0008 763e ad64 9e3e 357f 0008 2f40 .)..v>.d.>5.../@ 000630 618e 4f20 176d 0008 ea8d 265f 1c79 17fa a.O .m....&_.y.. 000640 0008 1af6 89f1 9b3c b971 0008 d8a2 cf9d .......<.q...... 000650 e992 9273 0008 f6a4 c020 e592 06a8 0008 ...s..... ...... 000660 df32 a166 5f35 a7e8 0008 0f50 8419 a757 .2.f_5.....P...W 000670 8b3b 0008 a90f ada6 348a b768 0008 5363 .;......4..h..Sc 000680 c992 d35f af46 0008 77e4 9810 7877 abb8 ..._.F..w...xw.. 000690 0008 5efe 2fc3 c885 a54f 0008 fe99 b296 ..^./....O...... 0006a0 8fc3 8521 0008 a35a 4f65 7fe9 57cf 0008 ...!...ZOe..W... 0006b0 aa13 1290 6549 65f1 0008 e37a 9e97 6238 ....eIe....z..b8 0006c0 a980 0008 5b44 821c c06f a7a8 0008 b5f8 ....[D...o...... 0006d0 2c6a 429b 46c6 0008 1eb8 0400 7ac8 1947 ,jB.F.......z..G 0006e0 0008 31f8 1899 d2ba 53ae 0008 4b3e f042 ..1.....S...K>.B 0006f0 5def 41d8 0008 a8b0 417a 80c7 9c18 0008 ].A.....Az...... 000700 80a6 8bd5 b44c 6a41 0008 51f0 8904 c1f3 .....LjA..Q..... 000710 2419 0008 fe61 ec3f fd6d aa8b 0008 beaf $....a.?.m...... 000720 bc96 67d2 9194 0008 18d4 5782 beda 4e0a ..g.......W...N. 000730 0008 34e7 091f 9706 20e9 0008 15fa 21c8 ..4..... .....!. 000740 b5d8 9a11 0008 fa01 ac20 0edb 9c87 0008 ......... ...... 000750 3ade c642 bf6c 7cd1 0008 d3a2 fe3d 591c :..B.l|......=Y. 000760 d871 0008 5295 4c1c 3d1c 4970 0008 820b .q..R.L.=.Ip.... 000770 a4bb 6bf0 6269 0008 601d b9d8 e6b1 2956 ..k.bi..`.....)V 000780 0008 869d 9d51 461a 4a7e 0008 540f 11d2 .....QF.J~..T... 000790 60fa 14e3 0008 6eed fc43 af65 dbe4 0008 `.....n..C.e.... 0007a0 c08d 5168 c8c6 d7b4 0008 ee68 ba15 ff08 ..Qh.......h.... 0007b0 4ca2 0008 3cb2 2c4e 8d14 cc69 0008 cd27 L...<.,N...i...' 0007c0 d0f8 ab47 fcc6 0008 bfbc f2cc e186 2459 ...G..........$Y 0007d0 0008 db33 b27a 5a34 f396 0008 3ecf 5dbf ...3.zZ4....>.]. 0007e0 8485 6459 0008 b360 db2e e8c0 df84 0008 ..dY...`........ 0007f0 28bb 911b f1f1 8343 0008 2dee 9c96 7ac5 (......C..-...z. 000800 efa2 0008 0cee 415f d1b3 c351 0008 1f3d ......A_...Q...= 000810 0bdd 9eab 9f4c 0008 5c36 2fff 35f0 3475 .....L..\6/.5.4u 000820 0008 2019 3033 8b5a 3937 0008 135d 120a .. .03.Z97...].. 000830 4078 89f7 0008 1ed0 441f 87ac 49f1 0008 @x......D...I... 000840 bc9a 0d88 774b bae9 0008 dd7e ecdd aeb7 ....wK.....~.... 000850 bc19 0008 a4ef 1bfe ecb8 c7f3 0008 8993 ................ 000860 1b64 cb9b 6e59 0008 4df4 0559 befb e0c5 .d..nY..M..Y.... 000870 0008 34de 7089 323d ff3b 0008 8c65 f052 ..4.p.2=.;...e.R 000880 f3f1 2575 0008 38a6 ca9d b34e 9676 0008 ..%u..8....N.v.. 000890 88a5 76a2 0bdc 99a7 0008 e5a0 0e35 354c ..v..........55L 0008a0 af95 0008 e593 0085 10d5 8d40 0008 1abe ...........@.... 0008b0 335e 6047 bcda 0008 4a78 6294 cf41 12bd 3^`G....Jxb..A.. 0008c0 0008 12d4 cfd8 fa60 142d 0008 6935 577c .......`.-..i5W| 0008d0 0298 e333 0008 8a35 35ac 4cf6 fd9c 0008 ...3...55.L..... 0008e0 2d38 41b9 98ef 09bb 0008 6048 f46e eba4 -8A.......`H.n.. 0008f0 f168 0008 5c14 0778 badb f5a9 0008 1552 .h..\..x.......R 000900 6946 6cbb 0c78 0008 0245 ae7f 735b 15f4 iFl..x...E..s[.. 000910 0008 58a3 6e01 22b9 e1c4 0008 4406 26d8 ..X.n.".....D.&. 000920 3bd9 cfbe 0008 3a2c 0f1a 76c1 0d77 0008 ;.....:,..v..w.. 000930 7d48 6e58 ce49 b73c 0008 776e 8f19 960d }HnX.I.<..wn.... 000940 bfef 0008 f7e3 9a8b 3d3a 8e2c 0008 2f1b ........=:.,../. 000950 43b5 019b 1b1e 0008 5711 f9ec 13c2 1c43 C.......W......C 000960 0008 1131 83e1 db16 80d5 0008 9655 1936 ...1.........U.6 000970 bcbb 7364 0008 15a5 b372 bd31 5646 0008 ..sd.....r.1VF.. 000980 e6e4 e8cd 3a69 ecf2 0008 a19a 5891 f818 ....:i......X... 000990 3e36 0008 cad2 fd1c 1641 e698 0008 32f7 >6.......A....2. 0009a0 7dba 3ee5 dedd 0008 a5b9 30b7 fd8d 4778 }.>.......0...Gx 0009b0 0008 dfca e1c9 a00a 7d23 0008 9e71 e47e ........}#...q.~ 0009c0 845d ca4a 0008 b614 9d22 af66 b305 0008 .].J.....".f.... 0009d0 c232 5397 1db4 fbdb 0008 de33 9045 8284 .2S........3.E.. 0009e0 396b 0008 87f3 0c47 5371 9740 0008 691d 9k.....GSq.@..i. 0009f0 9870 eb71 71bf 0008 e184 73c5 c214 849b .p.qq.....s..... 000a00 0008 38ad 54a5 7ede 45e8 0008 7475 fdf5 ..8.T.~.E...tu.. 000a10 7425 4fe9 0008 f8cd 5b16 2dab 8067 0008 t%O.....[.-..g.. 000a20 038e fa62 fe37 0641 0008 1d72 15bc ced8 ...b.7.A...r.... 000a30 6af6 0008 544e bc20 11ab d36c 0008 4809 j...TN. ...l..H. 000a40 4135 e128 64ba 0008 3d0e 0afc bcbe ca71 A5.(d...=......q 000a50 0008 f259 9ea4 c156 81bb 0008 3dd3 18db ...Y...V....=... 000a60 f125 c385 0008 c50a 66a6 ff25 6c8b 0008 .%......f..%l... 000a70 0550 d0e3 05d7 8357 0008 2fbb 42dd 1e89 .P.....W../.B... 000a80 d73a 0008 b2a0 7063 64cf 37bf 0008 3cce .:....pcd.7...<. 000a90 ed91 0550 3f33 0008 6fdc aad7 2a60 850b ...P?3..o...*`.. 000aa0 0008 dbb8 5261 8766 42ad 0008 9fb6 deef ....Ra.fB....... 000ab0 a9fc a302 0008 76a1 6ef1 9e4a 09e7 0008 ......v.n..J.... 000ac0 724b 78aa aa73 1f43 0008 710a 86b3 d5dd rKx..s.C..q..... 000ad0 a3a3 0008 b58e 2e39 bccc 2c57 0008 9ddc .......9..,W.... 000ae0 8b5c 3b2b 2ccf 0008 8003 dab4 95e6 7f76 .\;+,..........v 000af0 0008 da8e 3115 6205 9820 0008 56ff 2a4c ....1.b.. ..V.*L 000b00 875a c0a4 0008 167a 63e3 0eb3 38d1 0008 .Z.....zc...8... 000b10 435e 853c 1786 00a8 0008 05e5 231c 5039 C^.<........#.P9 000b20 8563 0008 cf83 6d31 ef10 3d27 0008 f9de .c....m1..='.... 000b30 c1ab 093b 8791 0008 322b 38fe f4d7 1cdb ...;....2+8..... 000b40 0008 bc05 f881 7795 e0e3 0008 adca 8ff1 ......w......... 000b50 de94 687b 0008 6683 6c86 b73f 264d 0008 ..h{..f.l..?&M.. 000b60 5953 9ba0 8393 5550 0008 1b0e e7a8 5fdf YS....UP......_. 000b70 7f5d 0008 797f b812 7d5b 936e 0008 9212 .]..y...}[.n.... 000b80 65de e64a 5423 0008 a9af 484f 099b ea06 e..JT#....HO.... 000b90 0008 a91e 31d1 8f99 e6e3 0008 567e 8af8 ....1.......V~.. 000ba0 dcfd 8052 0008 ea3d 457b d03f 3872 0008 ...R...=E{.?8r.. 000bb0 89c4 8bcf ca1e 7e79 0008 a25e 5a8a cc06 ......~y...^Z... 000bc0 b514 0008 f552 8400 292b b9c4 0008 e420 .....R..)+..... 000bd0 8ac6 c5ce a3a2 0008 398a 638a 08ef 8858 ........9.c....X 000be0 0008 ca59 f905 6ce8 b39e 0008 206b c606 ...Y..l..... k.. 000bf0 df12 36dd 0008 7601 1dfe ed6b 0074 0008 ..6...v....k.t.. 000c00 9555 e165 f671 d07b 0008 419c 035d 8eac .U.e.q.{..A..].. 000c10 4cc8 0008 e1b7 b899 f6c4 4333 0008 36ce L.........C3..6. 000c20 eef3 b9ac 4971 0008 cc5c 531f 4111 3566 ....Iq...\S.A.5f 000c30 0008 0b0d 6167 8901 2244 0008 1dde 8bcf ....ag.."D...... 000c40 9823 9e49 0008 2673 7f4f 4842 dada 0008 .#.I..&s.OHB.... 000c50 fc19 a06e ebea 6fb7 0008 d5b5 e31a 512a ...n..o.......Q* 000c60 efc5 0008 5ea6 cecb 1b1c 8624 0008 a37f ....^......$.... 000c70 023c 5914 d672 0008 baa3 f887 d5e3 1454 .<Y..r.........T 000c80 0008 d645 28aa de3a 4f89 0008 b8fb 283b ...E(..:O.....(; 000c90 7549 f874 0008 1296 02a2 d130 7285 0008 uI.t.......0r... 000ca0 fd42 6af8 d760 42c2 0008 dfb7 b427 9b5a .Bj..`B......'.Z 000cb0 c66a 0008 3802 03b7 b97f 7be4 0008 5abb .j..8.....{...Z. 000cc0 0bac 25f4 7083 0008 df9e 55d9 6581 9f4f ..%.p.....U.e..O 000cd0 0008 578a f98a f438 c5a8 0008 0d55 8bf1 ..W....8.....U.. 000ce0 fb60 a272 0008 0555 f12a 8f07 176b 0008 .`.r...U.*...k.. 000cf0 6223 a595 430f ce6b 0008 144b bdf1 6861 b#..C..k...K..ha 000d00 e92b 0008 baf8 2144 acee 5a82 0008 5246 .+....!D..Z...RF 000d10 a686 81ca 65a1 0008 2069 b00c 7a7e 6225 ....e... i..z~b% 000d20 0008 39b0 cf44 13d0 d422 0008 30ed 7a51 ..9..D..."..0.zQ 000d30 ec8d b68a 0008 eb81 8dbc e934 7cd9 0008 ...........4|... 000d40 ba94 1daf 4938 2a7d 0008 506e 224f 350b ....I8*}..Pn"O5. 000d50 1f40 0008 7c7a 01dc d9da ff7d 0008 b70a .@..|z.....}.... 000d60 54ab 0c1a 8058 0008 b59d 66db 44eb c609 T....X....f.D... 000d70 0008 f6e8 b732 bd23 6eb8 0008 054e 9ae2 .....2.#n....N.. 000d80 fd2d 1e8d 0008 5c83 4020 05f0 4e00 0008 .-....\.@ ..N... 000d90 2ef5 0303 4326 bdd8 0008 7815 bb2a f427 ....C&....x..*.' 000da0 deaf 0008 7c91 9ac3 0a98 73c7 0008 d6b6 ....|.....s..... 000db0 5054 8212 3633 0008 a7ab 421a c094 71e1 PT..63....B...q. 000dc0 0008 4c03 3a9d 9323 54b4 0008 5a57 5c37 ..L.:..#T...ZW\7 000dd0 89e7 dd46 0008 c99d aeb2 8bcd 9ee3 0008 ...F............ 000de0 69cd ada2 e3cc fe3c 0008 78a0 06cb 0e4e i......<..x....N 000df0 ebd8 0008 3506 ee67 d954 ef6e 0008 aacd ....5..g.T.n.... 000e00 5fca 3ce2 bce8 0008 4047 83ce 08b7 1062 _.<.....@G.....b 000e10 0008 9a0a 0797 2f1f 54cc 0008 1655 8983 ....../.T....U.. 000e20 6b87 599f 0008 c54e b6a1 fcec ad05 0008 k.Y....N........ 000e30 c87b d610 1c93 744b 0008 786c ae13 ede4 .{....tK..xl.... 000e40 9a12 0008 a847 0cd5 8e4b 50d5 0008 78dc .....G...KP...x. 000e50 68ad d9a9 e5c5 0008 aa5d d133 93f8 c027 h........].3...' 000e60 0008 4d8a 2d13 5744 5ccf 0008 4d96 4cb9 ..M.-.WD\...M.L. 000e70 3c2f 6212 0008 7f65 321a cce1 28db 0008 </b....e2...(... 000e80 69de 7350 e306 41ff 0008 9969 f4ce 816b i.sP..A....i...k 000e90 6c63 0008 ca82 27ff 7866 5552 0008 12f4 lc....'.xfUR.... 000ea0 dab0 a0e0 d2c3 0008 1629 6553 a429 2589 .........)eS.)%. 000eb0 0008 c84c 8874 215b 443d 0008 d8c3 551e ...L.t![D=....U. 000ec0 b2b7 4e1e 0008 33ec 9863 6cee 7f18 0008 ..N...3..cl..... 000ed0 425c b932 82ab e635 0008 dc8c c40d cce0 B\.2...5........ 000ee0 4c75 0008 85fc b52c 8f0c f5eb 0008 b09b Lu.....,........ 000ef0 e90a f08a b06c 0008 3d84 28a5 7fb7 a177 .....l..=.(....w 000f00 0008 9da2 1252 16b4 ac63 0008 cf38 891f .....R...c...8.. 000f10 db65 83a5 0008 2ac6 2a84 b380 a6f8 0008 .e....*.*....... 000f20 b21c 4759 16f5 4713 0008 6ead 9dad 76b8 ..GY..G...n...v. 000f30 dc50 0008 9403 dd96 293f 5d7d 0008 0f7f .P......)?]}.... 000f40 0c63 12aa ea1c 0008 5e80 c6cd ed72 d58d .c......^....r.. 000f50 0008 f3c9 e532 9aee 9dcc 0008 f5f2 f323 .....2.........# 000f60 8bad a66e 0008 a053 8f99 3c4e f158 0008 ...n...S..<N.X.. 000f70 ea49 6f03 c136 2a78 0008 be61 57b8 1a95 .Io..6*x...aW... 000f80 43c8 0008 bf8d e5e7 0a03 e84b 0008 f6eb C..........K.... 000f90 8bdb 9888 ff76 0008 5633 78da e8e2 a165 .....v..V3x....e 000fa0 0008 c6bd 8cbd a332 be3f 0008 5424 d94f .......2.?..T$.O 000fb0 8060 05e5 0008 100d d314 b522 b112 0008 .`.........".... 000fc0 0db4 826b bf5e d4b3 0008 86aa 4957 3439 ...k.^......IW49 000fd0 3b25 0008 7a75 cda0 06a7 8bbc 0008 ba6e ;%..zu.........n 000fe0 43a5 b3d4 12ca 0008 3bcf bb25 cd4c 7e2c C.......;..%.L~, 000ff0 0008 7f58 d55a 4193 e65c 0008 c92a bdac ...X.ZA..\...*.. 001000 56f5 e579 0008 ad24 c80a a2ab 1047 0008 V..y...$.....G.. 001010 14f4 0459 4f38 3a48 0008 f288 98fe adc1 ...YO8:H........ 001020 52d6 0008 3b34 7bc7 c06c f11a 0008 7339 R...;4{..l....s9 001030 a6ab 21ac e89a 0008 d1cc 857b d27b 1a6f ..!........{.{.o 001040 0008 1233 e21d e963 51bb 0008 6294 fbfb ...3...cQ...b... 001050 1bc9 c7d2 0008 1889 20af 45b1 5db3 0008 ........ .E.]... 001060 27e2 592f 7a48 b087 0008 8011 0534 d5e0 '.Y/zH.......4.. 001070 d852 0008 1c39 997d 236c 5468 0008 6fe0 .R...9.}#lTh..o. 001080 9b79 6dd8 0a63 0008 e48b ad29 84c8 e7c0 .ym..c.....).... 001090 0008 cfdb 0820 efe9 e03b 0008 1912 765d ..... ...;....v] 0010a0 9637 1ee4 0008 02c2 6021 0dc2 80f2 0008 .7......`!...... 0010b0 e40e 1698 c622 4663 0008 be63 fb76 a683 ....."Fc...c.v.. 0010c0 aee7 0008 cd50 e4c3 b6f0 3d64 0008 6c50 .....P....=d..lP 0010d0 9510 f3c4 1999 0008 1e60 c163 7f8c 8e9e .........`.c.... 0010e0 0008 8f39 c9ec 0d1d ce2e 0008 e7ec 25bf ...9..........%. 0010f0 1542 6c26 0008 b717 f8e0 7fd6 9643 0008 .Bl&.........C.. 001100 dcc7 a5bc 4013 dac6 0008 400a 3468 1ef7 ....@.....@.4h.. 001110 9535 0008 cdd8 014a 7007 b405 0008 7e36 .5.....Jp.....~6 001120 0de8 4bb4 22a5 0008 e320 e0ab 135e 059c ..K.".... ...^.. 001130 0008 8777 ac23 a2a6 429b 0008 51b1 a672 ...w.#..B...Q..r 001140 3968 9be8 0008 61ed 7dfd 8f51 e9ad 0008 9h....a.}..Q.... 001150 7b47 e23b ea24 30dd 0008 4bb7 e1d1 bd6e {G.;.$0...K....n 001160 4bcb 0008 6b2a 3246 3e39 dcb9 0008 63da K...k*2F>9....c. 001170 ae3a e4a3 db6a 0008 37b9 ced8 0f3a 3153 .:...j..7....:1S 001180 0008 4493 91eb 9a9b c8be 0008 715f 67c3 ..D.........q_g. 001190 d729 08f6 0008 01b8 b2d8 9389 01cf 0008 .).............. 0011a0 de58 3c7f fddc 402d 0008 1e61 cbb4 54ec .X<...@-...a..T. 0011b0 1f43 0008 4255 d500 a116 f502 0008 1a57 .C..BU.........W 0011c0 3963 974d e341 0008 b0fa 2086 aab9 9bb8 9c.M.A.... ..... 0011d0 0008 67c4 ed9d a65a 4211 0008 5f72 48de ..g....ZB..._rH. 0011e0 4eb3 2c8f 0008 7781 be0a 1a10 579a 0008 N.,...w.....W... 0011f0 9215 d2ca ab61 e3ed 0008 05de d0c0 2985 .....a........). 001200 9afc 0008 587e 24a5 31c2 a699 0008 38d4 ....X~$.1.....8. 001210 b72b 3d7a fe26 0008 02d7 3856 ddee 72ae .+=z.&....8V..r. 001220 0008 fe04 d013 4feb c683 0008 6348 3896 ......O.....cH8. 001230 87f8 b413 0008 a4bc c2cd 32a0 a1ac 0008 ..........2..... 001240 68df 59ef a18a 5ae0 0008 4287 4689 9d24 h.Y...Z...B.F..$ 001250 3f42 0008 ed23 46b6 296c 1dd6 0008 2e55 ?B...#F.)l.....U 001260 86c2 d5e2 65a4 0008 d760 bb00 5ce1 fcd9 ....e....`..\... 001270 0008 bf0d 9c12 940d b128 0008 2e3c 3d4b .........(...<=K 001280 0c88 c245 0008 c96f 1a8b 461f b3d8 0008 ...E...o..F..... 001290 b8d7 a8f7 da77 74a0 0008 03a6 e959 32d1 .....wt......Y2. 0012a0 dc8f 0008 7387 ab2f 8ddd 02ab 0008 53c0 ....s../......S. 0012b0 b258 1f01 f3c8 0008 7362 d761 e728 abd7 .X......sb.a.(.. 0012c0 0008 a860 eb9d ab81 dd76 0008 a066 2524 ...`.....v...f%$ 0012d0 e382 19f4 0008 d76e 88e2 b4d0 4ed5 0008 .......n....N... 0012e0 c71d 2c3d bdd1 dc53 0008 b4e9 d194 0f66 ..,=...S.......f 0012f0 bf86 0008 5788 3511 9d91 07d9 0008 7519 ....W.5.......u. 001300 8d68 8d61 30cc 0008 743a 8721 4e06 5035 .h.a0...t:.!N.P5 001310 0008 8028 8668 3d61 6f1a 0008 f300 e757 ...(.h=ao......W 001320 321a a7de 0008 dfa4 8290 8978 6195 0008 2..........xa... 001330 db83 60b1 8710 d8e8 0008 24aa 9f2f a247 ..`.......$../.G 001340 9387 0008 a03a 02e8 58d4 958c 0008 e5a4 .....:..X....... 001350 9e8a 3e1a 2a5e 0008 5835 f1e5 352b 0ccb ..>.*^..X5..5+.. 001360 0008 0c4d ace2 cbd9 6176 0008 ded5 4520 ...M....av....E 001370 a54a d547 0008 73e4 8cb9 edba 97e8 0008 .J.G..s......... 001380 5a97 2fa3 77af 571c 0008 913a 4277 c572 Z./.w.W....:Bw.r 001390 b877 0008 19e6 b752 dac5 5889 0008 dbe9 .w.....R..X..... 0013a0 a8ef 52d1 16cb 0008 0a9a 7944 7056 bd74 ..R.......yDpV.t 0013b0 0008 c158 b0c5 e83a f5dd 0008 7c4b 709a ...X...:....|Kp. 0013c0 9595 2d48 0008 40be 9cab c569 86c3 0008 ..-H..@....i.... 0013d0 40b9 32b6 7e1a 6b13 0008 dfb2 41f0 ecc1 @.2.~.k.....A... 0013e0 fca4 0008 9803 ec7a d5a2 8e3d 0008 a483 .......z...=.... 0013f0 9c45 8bd4 d894 0008 18a2 7720 e2e4 a69d .E........w .... 001400 0108 315e a95f 85b9 b489 0108 2941 b8b0 ..1^._......)A.. 001410 8b10 6d5d 0108 bb7a 26f7 50db 4aab 0108 ..m]...z&.P.J... 001420 886f 92ef fdfc 99f9 0108 92e3 a179 4829 .o...........yH) 001430 d237 0108 d6f5 5503 4d4c 866c 0108 fa2c .7....U.ML.l..., 001440 9a11 592d c0ba 0108 1c8e 7f3d 8700 f93d ..Y-.......=...= 001450 0108 fdc9 f712 b88a 01c2 0108 ee7c d109 .............|.. 001460 bf95 8da9 0108 4a96 04bd 004c 1530 0108 ......J....L.0.. 001470 0107 85df c3ff 5167 0108 4304 967a 5e75 ......Qg..C..z^u 001480 3fa7 0108 93c0 9c4e 4268 0a3b 0108 0d91 ?......NBh.;.... 001490 35a2 b5be d960 0108 ef0e fa30 1538 fc70 5....`.....0.8.p 0014a0 0108 aff3 8a93 cf25 ddc2 0108 b690 6c66 .......%......lf 0014b0 d053 067e 0108 8c4d b4a1 480f 9759 0108 .S.~...M..H..Y.. 0014c0 6eb0 b620 e9ed f4c7 0108 c452 07a3 bc7a n.. .......R...z 0014d0 b180 0108 d028 227b 832e 94d2 0108 1156 .....("{.......V 0014e0 5296 abbe e694 0108 9da9 7654 3167 e519 R.........vT1g.. 0014f0 0108 9fa7 3730 7522 c23e 0108 2e71 8ee2 ....70u".>...q.. 001500 db7a 5769 0108 9a04 87ef 5d0f 6f6a 0108 .zWi......].oj.. 001510 79b4 d764 223e e368 0108 3a1c bd72 0c52 y..d">.h..:..r.R 001520 114a 0108 d7e2 cc35 93ef 51a0 0108 e0e2 .J.....5..Q..... 001530 1ac3 1862 3c9c 0108 3a41 b92d ee39 5444 ...b<...:A.-.9TD 001540 0108 e5c9 dd2d e674 bfb6 0108 097f 2a15 .....-.t......*. 001550 0308 6596 0108 f4b1 a609 f75b 2444 0108 ..e........[$D.. 001560 506e 370a cea3 2f71 0108 f561 cd4c a679 Pn7.../q...a.L.y 001570 077f 0108 e490 a8ad 5d17 8974 0108 fb60 ........]..t...` 001580 e558 3a13 218a 0108 0245 cae0 2a22 a445 .X:.!....E..*".E 001590 0108 4242 a026 49f8 9af7 0108 6e7e 8dc8 ..BB.&I.....n~.. 0015a0 0c44 3ed9 0108 11c3 df52 f6f3 e3f5 0108 .D>......R...... 0015b0 f9cb 3a69 80cc 5fe0 0108 eac9 a3be f76d ..:i.._........m 0015c0 43b0 0108 0612 ca41 3fb5 46bd 0108 88b1 C......A?.F..... 0015d0 6805 e986 606c 0108 5a51 ad50 d952 aa9b h...`l..ZQ.P.R.. 0015e0 0108 4b64 9c0e d2de 792b 0108 d99f 978d ..Kd....y+...... 0015f0 9944 e5d9 0108 8995 e574 8519 d4cd 0108 .D.......t...... 001600 e008 d228 16c5 2264 0108 48de 80d9 c1da ...(.."d..H..... 001610 3269 0108 0d3b c7e1 7306 b646 0108 0abc 2i...;..s..F.... 001620 2110 a053 86ff 0108 03a7 c7fd fe1c 2a56 !..S..........*V 001630 0108 c455 feda 68b1 5367 0108 eec4 62db ...U..h.Sg....b. 001640 7fde 3643 0108 a5e0 6611 54ca 107d 0108 ..6C....f.T..}.. 001650 f36b c988 8b02 9c6a 0108 e686 2603 8d0e .k.....j....&... 001660 115a 0108 a3d7 bdbd b247 9af2 0108 07cb .Z.......G...... 001670 654b 8e18 af6b 0108 7268 aee9 173f 6ed3 eK...k..rh...?n. 001680 0108 6906 7698 b8be 5437 0108 f645 8bf6 ..i.v...T7...E.. 001690 9709 3f9b 0108 04ad b1cd ab8f 861d 0108 ..?............. 0016a0 20cf 1faf b3be 0b34 0108 78ee dfe7 fd33 ......4..x....3 0016b0 d975 0108 ba90 d145 8b33 d043 0108 3631 .u.....E.3.C..61 0016c0 87a1 75a4 1d25 0108 133d 478a ced9 84d6 ..u..%...=G..... 0016d0 0108 9365 dae5 9c7f 424d 0108 afe2 82e3 ...e....BM...... 0016e0 eced 18bd 0108 957b f147 773c c802 0108 .......{.Gw<.... 0016f0 1fc9 fdf1 d804 0176 0108 380f a628 acfb .......v..8..(.. 001700 ec16 0108 95d2 7ab8 2ec4 2344 0108 68ce ......z...#D..h. 001710 e0a8 d3d5 da5f 0108 147e e960 4cd9 130a ....._...~.`L... 001720 0108 1951 475a 8933 a4fc 0108 7c99 147d ...QGZ.3....|..} 001730 1ff1 1eac 0108 d016 5700 c7da 7cbc 0108 ........W...|... 001740 65e7 2a2d 2f29 4a34 0108 ef5e 1d39 a7b0 e.*-/)J4...^.9.. 001750 a99c 0108 f920 43e4 5873 c6ed 0108 c660 ..... C.Xs.....` 001760 d93a 9e59 ee36 0108 8da9 9760 c2f4 18de .:.Y.6.....`.... 001770 0108 0e42 743f 3d4f fcf8 0108 9ae4 a664 ...Bt?=O.......d 001780 f758 3a60 0108 c54f 19ac 8447 5fcb 0108 .X:`...O...G_... 001790 2514 d361 acea 843f 0108 5042 8fbb 511e %..a...?..PB..Q. 0017a0 03e0 0108 eda5 e54c a8dc c609 0108 357d .......L......5} 0017b0 1bfb 4fc7 b528 0108 6484 0a63 b53e 5143 ..O..(..d..c.>QC 0017c0 0108 275e e6be 48cd 2949 0108 9727 0ed1 ..'^..H.)I...'.. 0017d0 6576 4556 0108 01be f5ea 9e1b 902a 0108 evEV.........*.. 0017e0 c0b6 720a 7296 02bf 0108 3b08 2dd9 87aa ..r.r.....;.-... 0017f0 9e74 0108 525c 676e cbf9 8433 0108 5f29 .t..R\gn...3.._) 001800 4da5 f6b1 6b13 0108 16c5 18e3 1afa e6af M...k........... 001810 0108 a4bd dc78 375c 3bf7 0108 2621 1046 .....x7\;...&!.F 001820 8f01 bc77 0108 b87c 69c2 7cf7 4110 0108 ...w...|i.|.A... 001830 6d28 acdc 0b91 b0ff 0108 1c7c c5d5 1d9a m(.........|.... 001840 7f58 0108 34d0 600b e283 338d 0108 7b01 .X..4.`...3...{. 001850 6788 8745 7d12 0108 3397 5026 7215 6111 g..E}...3.P&r.a. 001860 0108 3d04 7641 413d df00 0108 5bdb ef15 ..=.vAA=....[... 001870 d6e8 713f 0108 94ed 028b 3376 245d 0108 ..q?......3v$].. 001880 ad4b c538 0bdc eaf0 0108 8070 52ab 95a9 .K.8.......pR... 001890 c1cc 0108 b5e8 a814 472e 2a2e 0108 65da ........G.*...e. 0018a0 8002 1dba c0f6 0108 bd74 579f c364 ca79 .........tW..d.y 0018b0 0108 18c4 61fd 9c5b b21a 0108 d69f 33a5 ....a..[......3. 0018c0 4c15 b702 0108 1b5b 4ecf f27a 6db2 0108 L......[N..zm... 0018d0 5aa2 53dd 37d6 81e1 0108 b431 f70d 6059 Z.S.7......1..`Y 0018e0 feaf 0108 a0e0 4888 1d6a a324 0108 2e83 ......H..j.$.... 0018f0 ecf7 fac4 0261 0108 a6cf 1633 0188 b437 .....a.....3...7 001900 0108 a492 adc1 ca9e 9e6e 0108 80a7 b82b .........n.....+ 001910 c670 13ae 0108 1b3b 112a 6dfa c359 0108 .p.....;.*m..Y.. 001920 1b03 755a d3c2 f12d 0108 05d9 bc9f d1eb ..uZ...-........ 001930 7637 0108 1ec5 4da4 e541 e736 0108 dbc0 v7....M..A.6.... 001940 e2d7 5091 dd7d 0108 2f2c ceb1 a2ea 061b ..P..}../,...... 001950 0108 79b7 0435 bc11 2b18 0108 00d5 f79c ..y..5..+....... 001960 b80a 3f4a 0108 032c c05d c95a a225 0108 ..?J...,.].Z.%.. 001970 6484 938f ddba bbb7 0108 0e28 831c c69f d..........(.... 001980 3b30 0108 f776 ab58 4d1e 25b5 0108 62a6 ;0...v.XM.%...b. 001990 4025 64e2 d727 0108 527d 98c0 f83f 2ea9 @%d..'..R}...?.. 0019a0 0108 370e 78ce 8875 607a 0108 32f1 e79d ..7.x..u`z..2... 0019b0 b473 3f91 0108 ebff 5ff7 47b1 482a 0108 .s?....._.G.H*.. 0019c0 89fb aaf1 4611 1a61 0108 bde9 d48f 2a3c ....F..a......*< 0019d0 2bae 0108 ca7c 4956 f3d7 1950 0108 f774 +....|IV...P...t 0019e0 63bd 2ff4 8c00 0108 82a1 ff17 79fd 7dfc c./.........y.}. 0019f0 0108 1965 7db5 e942 541a 0108 1449 8c5f ...e}..BT....I._ 001a00 95b1 c243 0108 9eca ae26 88da 6c40 0108 ...C.....&..l@.. 001a10 92a8 30d9 89da 7fa3 0108 dbe0 7343 ae37 ..0.........sC.7 001a20 d163 0108 054d 2533 ecf8 61a4 0108 e8e8 .c...M%3..a..... 001a30 63c0 6e6f a4b5 0108 a854 ab42 76ed 1248 c.no.....T.Bv..H 001a40 0108 ff45 86a0 be81 12db 0108 a502 28c4 ...E..........(. 001a50 333d 20b2 0108 7efc 13ad 398d 6859 0108 3= ...~...9.hY.. 001a60 a4e5 5438 3a4c 4ef8 0108 5dad 1d80 d48a ..T8:LN...]..... 001a70 0f2e 0108 5d19 1c54 3bcd 113e 0108 e46d ....]..T;..>...m 001a80 6690 5b52 3ea5 0108 91af 0042 c442 b8cb f.[R>......B.B.. 001a90 0108 fa1a d798 fc8f 8d78 0108 9ca3 cc2e .........x...... 001aa0 3cee 8337 0108 9c18 323a 7b36 9be6 0108 <..7....2:{6.... 001ab0 db8a cb70 58b7 5d75 0108 abe4 f258 984c ...pX.]u.....X.L 001ac0 9993 0108 b0a8 3e52 5d24 3b75 0108 7843 ......>R]$;u..xC 001ad0 b93b f069 f670 0108 1de7 5fb5 7fc5 c103 .;.i.p...._..... 001ae0 0108 15bb 0606 2b8e fd21 0108 4f0c 0cbe ......+..!..O... 001af0 1357 4860 0108 b2e3 5877 4680 4ab2 0108 .WH`....XwF.J... 001b00 733c 7fc5 a034 105d 0108 cd03 ec66 c1c8 s<...4.].....f.. 001b10 01b6 0108 9a03 553a 57b2 6f14 0108 98a2 ......U:W.o..... 001b20 2dd5 e38d 24a4 0108 1ff8 ff71 2563 7d4e -...$......q%c}N 001b30 0108 84f4 e194 d02b df94 0108 9977 79fd .......+.....wy. 001b40 5a19 0049 0108 f196 868b 8041 0c08 0108 Z..I.......A.... 001b50 47ff f4a6 4beb 6f43 0108 90fb b7e4 7802 G...K.oC......x. 001b60 6f84 0108 7a7a 5cfc 56bc 428f 0108 df68 o...zz\.V.B....h 001b70 4515 87a0 1da6 0108 6cf5 a761 3dc1 7a67 E.......l..a=.zg 001b80 0108 328b 430d 784e b567 0108 87c8 76a7 ..2.C.xN.g....v. 001b90 6028 2767 0108 46d8 1122 7b51 4401 0108 `('g..F.."{QD... 001ba0 9126 79d9 e89b 6aae 0108 2a34 8e1f 0a8c .&y...j...*4.... 001bb0 e949 0108 439e 15f2 b0c8 ca91 0108 f7fc .I..C........... 001bc0 1387 a135 5700 0108 3d07 0b0a 8b80 1551 ...5W...=......Q 001bd0 0108 a336 6516 90bc a36f 0108 cb9b d00d ...6e....o...... 001be0 c243 41cd 0108 c11e 36d9 95b0 0f7d 0108 .CA.....6....}.. 001bf0 f8d1 7fe7 1c08 a46a 0108 ffab 3b9a 884b .......j....;..K 001c00 4d65 0108 1199 87c5 608d bcac 0108 4e0a Me......`.....N. 001c10 10da aa9c 8003 0108 21d5 00d3 a6e7 9ff2 ........!....... 001c20 0108 0edd 69d4 0d96 c1d5 0108 4bd0 b0e1 ....i.......K... 001c30 cc09 4c5d 0108 1577 4139 0740 23fb 0108 ..L]...wA9.@#... 001c40 c174 a2b6 f67c e151 0108 19a6 120e e437 .t...|.Q.......7 001c50 25f4 0108 d863 00fd a081 3c14 0108 b12f %....c....<..../ 001c60 3f12 220a 74ef 0108 405e b996 0e4b f7a2 ?.".t...@^...K.. 001c70 0108 3b75 e471 c464 3e3d 0108 0a54 94db ..;u.q.d>=...T.. 001c80 e621 eb63 0108 0b7d ac87 994e 88bd 0108 .!.c...}...N.... 001c90 f383 9fd5 b081 5f9f 0108 83ca 3ca5 5ba7 ......_.....<.[. 001ca0 1753 0108 4e71 1fcd bf29 aaef 0108 b53f .S..Nq...).....? 001cb0 58cc 5ca0 767b 0108 2a5e a545 032f f8a6 X.\.v{..*^.E./.. 001cc0 0108 dd57 7bcd d259 96ca 0108 84e0 cc3f ...W{..Y.......? 001cd0 6436 3681 0108 a69f adf6 0cc7 c660 0108 d66..........`.. 001ce0 899b ec38 2177 d213 0108 a71e 4517 135f ...8!w......E.._ 001cf0 aef6 0108 25d1 3963 e0e0 eb12 0108 7c49 ....%.9c......|I 001d00 c0f1 5e72 2f90 0108 dc54 7147 a55f 1c3f ..^r/....TqG._.? 001d10 0108 5eb2 9422 4ea5 1424 0108 bb8f 1cc6 ..^.."N..$...... 001d20 fbd6 61b3 0108 10c2 14ac 2b7f b555 0108 ..a.......+..U.. 001d30 e1f5 a91f 538f c70f 0108 31c7 91cf 2952 ....S.....1...)R 001d40 94d8 0108 e1ce ccd8 a7b4 bc20 0108 45a2 ........... ..E. 001d50 744a 14de 6061 0108 f38b 676f e046 3504 tJ..`a....go.F5. 001d60 0108 1aaa 4e91 4bd9 6d9e 0108 e5fa 49a0 ....N.K.m.....I. 001d70 84eb 892a 0108 fb0e 9368 60a7 d6b1 0108 ...*.....h`..... 001d80 a3ef 2f83 2733 c5c1 0108 086a 1f65 16a2 ../.'3.....j.e.. 001d90 6b60 0108 be63 ac27 bfd7 3aca 0108 9403 k`...c.'..:..... 001da0 a59c 737f 5079 0108 6844 2ac0 c173 d720 ..s.Py..hD*..s. 001db0 0108 58ce a4c8 3ad5 6c74 0108 c423 e752 ..X...:.lt...#.R 001dc0 7ecb d0bb 0108 0078 662a 764a 09c3 0108 ~......xf*vJ.... 001dd0 4382 0823 95aa 310b 0108 b0af d3cb 40f2 C..#..1.......@. 001de0 a4ee 0108 3751 f9c8 9e47 d14e 0108 3b27 ....7Q...G.N..;' 001df0 1f2a 800e 732e 0108 c847 e54b 57c4 db53 .*..s....G.KW..S 001e00 0108 205a 5a16 b957 36ea 0108 add0 10a4 .. ZZ..W6....... 001e10 389d a1a5 0108 f27d 87f5 8478 4e2a 0108 8......}...xN*.. 001e20 acfc bd4f eaf8 88a3 0108 770d 49f1 8b9c ...O......w.I... 001e30 2776 0108 59c2 bafd 15b9 d37e 0108 2496 'v..Y......~..$. 001e40 54a3 e3cc 2b0f 0108 46ca 1598 a6eb 0d14 T...+...F....... 001e50 0108 2ac7 f819 2a9e 5673 0108 8cd4 3fe2 ..*...*.Vs....?. 001e60 e77b d974 0108 9b10 51e6 562b a452 0108 .{.t....Q.V+.R.. 001e70 e7c5 8c7d 6c57 0d16 0108 53b5 9fd0 347d ...}lW....S...4} 001e80 9dd4 0108 bf1a 01dc 39f4 e03e 0108 1c58 ........9..>...X 001e90 dc91 a8bf c1fa 0108 fe96 451e e678 1fa7 ..........E..x.. 001ea0 0108 c6a9 62a8 cb5a 7834 0108 af1d bf52 ....b..Zx4.....R 001eb0 8f5c 2b96 0108 d445 b71d a9e4 b9b9 0108 .\+....E........ 001ec0 8dde bff2 dc57 8ec6 0108 b453 1683 60d1 .....W.....S..`. 001ed0 5897 0108 fd05 9644 b5ff 13d7 0108 5ad5 X......D......Z. 001ee0 1b93 f273 a6e0 0108 6de9 d82a 6e0e f3e7 ...s....m..*n... 001ef0 0108 9a77 3a37 2f46 475d 0108 40ce 4769 ...w:7/FG]..@.Gi 001f00 9817 76f7 0108 7d47 3613 07a6 df38 0108 ..v...}G6....8.. 001f10 70f8 0cc1 93bd e8a5 0108 ff32 918a 9260 p..........2...` 001f20 eab8 0108 6b2b 4391 eec7 5982 0108 3efc ....k+C...Y...>. 001f30 0a81 0edb 6faf 0108 c7b1 e978 a805 002b ....o......x...+ 001f40 0108 a683 a4db fc76 f569 0108 cbf9 6671 .......v.i....fq 001f50 29c2 62f4 0108 0a8e 1189 7a21 8565 0108 ).b.......z!.e.. 001f60 98f2 bb44 ea48 6014 0108 0f52 75e6 aa67 ...D.H`....Ru..g 001f70 f262 0108 20dc da0d 0d0a 529a 0108 da9b .b.. .....R..... 001f80 abff 2e6e 23fc 0108 a619 3ad6 7350 ad2b ...n#.....:.sP.+ 001f90 0108 1132 a574 06b4 52eb 0108 1527 c04a ...2.t..R....'.J 001fa0 6aaa 7a23 0108 d580 aae9 3ddf 608d 0108 j.z#......=.`... 001fb0 4ab3 5487 b822 aeb4 0108 ce41 2663 ed8e J.T..".....A&c.. 001fc0 9aaa 0108 313e 80f6 ab10 cc39 0108 cf2e ....1>.....9.... 001fd0 a612 a7d9 8970 0108 42ed 3090 3dcf d3a3 .....p..B.0.=... 001fe0 0108 78ea a2c8 0e65 b11e 0108 bbdd dce2 ..x....e........ 001ff0 8e51 2e42 0108 f1d1 7fec 556f a9db 0108 .Q.B......Uo.... 002000 fa7e d059 f18c 7dae 0108 ead5 ff19 9274 .~.Y..}........t 002010 99a4 0108 fb85 3c55 6b03 a75a 0108 ba90 ......<Uk..Z.... 002020 666d e90c 5360 0108 e5fa 68fb 7a2e 7dfd fm..S`....h.z.}. 002030 0108 b73b 83a9 f0df 4b4a 0108 4167 ce84 ...;....KJ..Ag.. 002040 ec65 f04b 0108 d799 9f73 a5e9 4e53 0108 .e.K.....s..NS.. 002050 4960 08cb 03b7 e94d 0108 fd22 e32d 90b5 I`.....M...".-.. 002060 852a 0108 6f3a 0f7b 500c 8cdf 0108 5daa .*..o:.{P.....]. 002070 4bc6 087d 4c45 0108 1473 8168 bc78 6256 K..}LE...s.h.xbV 002080 0108 06a3 6ecf b2b3 050a 0108 cb97 a501 ....n........... 002090 fe85 d4f6 0108 8ea6 1daf bffb b3c5 0108 ................ 0020a0 a2fa e4c4 526f 805e 0108 f6fb 360b 556b ....Ro.^....6.Uk 0020b0 8d54 0108 19c1 154e 2297 7f4b 0108 57f1 .T.....N"..K..W. 0020c0 d804 29a6 d989 0108 169d 8124 602c 89af ..)........$`,.. 0020d0 0108 9d62 52e8 9940 4795 0108 b85b 56f9 ...bR..@G....[V. 0020e0 77d6 a03a 0108 6143 b390 8694 f525 0108 w..:..aC.....%.. 0020f0 1df0 c290 4397 8848 0108 6023 2afd f43a ....C..H..`#*..: 002100 b9ec 0108 c67e 6612 fb6b fdd6 0108 f98f .....~f..k...... 002110 8935 3b34 1206 0108 cda1 96c2 c63b ce97 .5;4.........;.. 002120 0108 00e7 5cfa 6ba8 98e5 0108 189e 38dd ....\.k.......8. 002130 ca3a 93b0 0108 92d8 5daa 82bd a3a0 0108 .:......]....... 002140 b793 70de 51f7 aa15 0108 ca9e 80cd 756a ..p.Q.........uj 002150 6bb7 0108 1cf4 09e3 a83b 8dee 0108 aade k........;...... 002160 d763 b35c e67f 0108 b57d 54b9 4b1f 2eba .c.\.....}T.K... 002170 0108 77b2 eb93 e34d a62f 0108 6767 d509 ..w....M./..gg.. 002180 a316 21bd 0108 418b 3a64 e82b 5f56 0108 ..!...A.:d.+_V.. 002190 e026 06ce 9e6b fbdb 0108 141e ba36 9131 .&...k.......6.1 0021a0 1363 0108 3cf1 564e 3e38 fa21 0108 555b .c..<.VN>8.!..U[ 0021b0 1823 8d0d 5862 0108 f5ec e875 1a84 a1dd .#..Xb.....u.... 0021c0 0108 870e 8ca6 eeb3 5604 0108 1f2b 6d6a ........V....+mj 0021d0 3349 ed5e 0108 d57b 6bf4 becf 90fc 0108 3I.^...{k....... 0021e0 a156 8ba0 f84c 8584 0108 05a9 0fbe 16a6 .V...L.......... 0021f0 8c14 0108 9de8 9ad4 3957 6b60 0108 d2f7 ........9Wk`.... 002200 4ec4 2e3c 5d7a 0108 a01d f9a9 93bb f2ba N..<]z.......... 002210 0108 e70b 0600 84a6 205a 0108 3a84 5880 ........ Z..:.X. 002220 41c9 ae6a 0108 ef74 f759 8d2b d799 0108 A..j...t.Y.+.... 002230 a873 f483 fdea 8d43 0108 9ed0 4f2b a986 .s.....C....O+.. 002240 d822 0108 712c 39e1 d0ae 6017 0108 3e99 ."..q,9...`...>. 002250 8ecd b79c 0204 0108 e5c1 6330 91ee ec30 ..........c0...0 002260 0108 dea1 2b4c 239a 9b8b 0108 58c7 e941 ....+L#.....X..A 002270 7af6 6ecf 0108 2a2f 691d a89e 7e58 0108 z.n...*/i...~X.. 002280 719a b844 515d 1bf7 0108 be85 271d c0b2 q..DQ]......'... 002290 85fe 0108 383e 7c7b df0e 1f15 0108 9605 ....8>|{........ 0022a0 2a55 20f1 4d46 0108 2919 203d b7bf 9418 *U .MF..). =.... 0022b0 0108 821e 71c7 a553 c495 0108 1d4d 0bf8 ....q..S.....M.. 0022c0 cd09 c8c0 0108 6962 cec1 d35f c822 0108 ......ib..._.".. 0022d0 a27b d9ff b36b d46e 0108 17d0 2d07 ce63 .{...k.n....-..c 0022e0 71d4 0108 b743 0b54 98ff 3002 0108 90d8 q....C.T..0..... 0022f0 3137 7702 ee5a 0108 700b db47 ab52 8258 17w..Z..p..G.R.X 002300 0108 131e a0f2 3491 bf3f 0108 a936 8a4c ......4..?...6.L 002310 74c4 ac7e 0108 6cd0 2495 c763 4fc4 0108 t..~..l.$..cO... 002320 7334 1738 98db d320 0108 fe00 cc29 a8c5 s4.8... .....).. 002330 05d6 0108 4f3d 84d1 9199 7348 0108 cae5 ....O=....sH.... 002340 c0f3 984f 7a1b 0108 22e8 a8e9 dc07 f322 ...Oz..."......" 002350 0108 3a23 251e 6836 85e3 0108 2751 d1e2 ..:#%.h6....'Q.. 002360 aadd c207 0108 79c5 216b f4e5 a113 0108 ......y.!k...... 002370 17c1 0b4c 97d1 cc6e 0108 6485 90eb b1b5 ...L...n..d..... 002380 1ad5 0108 d876 453f 83fe 3bfb 0108 7205 .....vE?..;...r. 002390 63e9 e1a8 a406 0108 6d4e b3c2 a63b d32a c.......mN...;.* 0023a0 0108 9b2d 7ea6 d31c 051e 0108 da86 fedb ...-~........... 0023b0 0381 977e 0108 6e14 0186 2bd8 73ef 0108 ...~..n...+.s... 0023c0 6ef0 4626 184d 802d 0108 0eb6 a5c7 9ce3 n.F&.M.-........ 0023d0 f974 0108 1b38 d71a 0207 9e4d 0108 df2e .t...8.....M.... 0023e0 b1c9 cb52 fb3c 0108 ddce f276 eef3 dffc ...R.<.....v.... 0023f0 0108 b50a 9073 9014 1464 0108 5a0e 704a .....s...d..Z.pJ 002400 3e28 2926 0108 37f6 ec7b bf53 3b4f 0108 >()&..7..{.S;O.. 002410 06c4 c32f 18a0 09eb 0108 bd4a d600 5786 .../.......J..W. 002420 bab7 0108 7e34 7cfc 6851 5546 0108 a043 ....~4|.hQUF...C 002430 94cf 31d7 a528 0108 4451 fa85 bd72 21b1 ..1..(..DQ...r!. 002440 0108 681e 22ca 9477 d249 0108 07ff 8762 ..h."..w.I.....b 002450 1891 64f4 0108 e2be 8953 4f36 eab7 0108 ..d......SO6.... 002460 645f e3fa 5b7f 31c9 0108 43da d2a3 23b5 d_..[.1...C...#. 002470 d554 0108 21bc b2c5 2833 bbb6 0108 c861 .T..!...(3.....a 002480 f455 adf3 0521 0108 92cd be27 1f4e a2a5 .U...!.....'.N.. 002490 0108 4379 edee 9281 b702 0108 6bf0 62b8 ..Cy........k.b. 0024a0 3960 aa6d 0108 a944 a660 0590 d847 0108 9`.m...D.`...G.. 0024b0 b139 6ebc a216 8b78 0108 5f7e 9a7e 5bff .9n....x.._~.~[. 0024c0 c8ba 0108 d23d ec7d a97a e566 0108 dc9d .....=.}.z.f.... 0024d0 939d b52b 6849 0108 de30 f9d7 4fd3 c636 ...+hI...0..O..6 0024e0 0108 07c4 a993 2e0f 2cac 0108 c3ef a069 ........,......i 0024f0 2a9b be58 0108 c165 f2a7 da55 0ae1 0108 *..X...e...U.... 002500 d450 395c 391c d66b 0108 97ed 3963 e8eb .P9\9..k....9c.. 002510 a5e6 0108 5b4e 7969 3244 3bcc 0108 d196 ....[Nyi2D;..... 002520 a207 5956 3646 0108 3659 fe8e bd19 59d0 ..YV6F..6Y....Y. 002530 0108 56c7 4a98 255b 9ec0 0108 07e7 350c ..V.J.%[......5. 002540 b7ec 1114 0108 6997 d3cc f0b2 93be 0108 ......i......... 002550 3e3a dec2 013b 81b2 0108 7fb7 3a8d fc75 >:...;......:..u 002560 ee4f 0108 3fa7 7004 d01a 0f33 0108 c9e3 .O..?.p....3.... 002570 9eb6 4e7a cbc1 0108 3136 fd5d 8648 0b29 ..Nz....16.].H.) 002580 0108 0503 06ed e5e7 49f7 0108 7c7f 91b5 ........I...|... 002590 aecf ced0 0108 ff5a 21f0 e038 0fdc 0108 .......Z!..8.... 0025a0 ac16 abbf 9669 a0a9 0108 c449 cf9f 62e7 .....i.....I..b. 0025b0 7989 0108 f938 bf1e 13e5 7d84 0108 9d43 y....8....}....C 0025c0 a78a ae53 b7af 0108 a40b ea1c 2c73 6663 ...S........,sfc 0025d0 0108 d484 19b6 7ba6 5751 0108 a0e6 eb39 ......{.WQ.....9 0025e0 914c feba 0108 07d2 dca5 2da2 d458 0108 .L........-..X.. 0025f0 c88a e6c9 a3d3 03a9 0108 7aeb 24ae 23bf ..........z.$.#. 002600 006f 0108 96d3 a73a a244 afc0 0108 7690 .o.....:.D....v. 002610 46d3 2467 f5da 0108 c180 0ef3 f1c0 18f1 F.$g............ 002620 0108 9cee 371f fda8 b7ca 0108 3fc9 223c ....7.......?."< 002630 11e3 27c2 0108 75be b8f7 21ac c598 0108 ..'...u...!..... 002640 a72d 1dee 9974 ce29 0108 b42f 515d ba9b .-...t.).../Q].. 002650 4568 0108 80fc 81c5 19a6 699a 0108 5e67 Eh........i...^g 002660 b655 6e7e ff9f 0108 886f 1020 629b 4237 .Un~.....o. b.B7 002670 0108 21aa 99b2 37f5 28c5 0108 b035 0dfc ..!...7.(....5.. 002680 3e59 a804 0108 6883 0650 983d f052 0108 >Y....h..P.=.R.. 002690 fa97 b864 19f2 f6d0 0108 f4ed 1c9f 3b64 ...d..........;d 0026a0 7f12 0108 ea8e b28a ccc6 471d 0108 2e52 ..........G....R 0026b0 a2bd e436 5400 0108 fc93 6bbd 9201 0806 ...6T.....k..... 0026c0 0108 52d5 e35c 05e9 77cc 0108 7058 37a3 ..R..\..w...pX7. 0026d0 76c3 8b71 0108 838c e304 459c 17cc 0108 v..q......E..... 0026e0 3dfd e304 df25 9927 0108 d5f8 fd2b 11fa =....%.'.....+.. 0026f0 ea23 0108 d9c1 966c c0d5 07c5 0108 9fb2 .#.....l........ 002700 e4ac 0565 5934 0108 2e90 068b b053 5420 ...eY4.......ST 002710 0108 6d7f f8b1 af58 f7cf 0108 3a2c 5014 ..m....X....:,P. 002720 b337 0b96 0108 471f 48e1 63f1 c6cb 0108 .7....G.H.c..... 002730 6c1f a79d cf0c 8478 0108 fb91 95ee 19e6 l......x........ 002740 a41f 0108 8a52 14ab 8370 1a6b 0108 7763 .....R...p.k..wc 002750 2c15 5ba2 faee 0108 975e 837f 832e d016 ,.[......^...... 002760 0108 4b1b c6b1 3f40 8276 0108 a24a d1e1 ..K...?@.v...J.. 002770 7014 b790 0108 bdb0 c40f 19e4 9ab8 0108 p............... 002780 046f fd7d 570c 70db 0108 c75a 87ee 6371 .o.}W.p....Z..cq 002790 3999 0108 a5a6 7434 de1f a015 0108 6ee5 9.....t4......n. 0027a0 bc9f 6788 bac3 0108 8380 f402 7556 5d50 ..g.........uV]P 0027b0 0108 b2a7 9f77 ce10 3540 0108 d1ed 20a3 .....w..5@.... . 0027c0 35ac ba2c 0108 87c4 83ff 92eb 4908 0108 5..,........I... 0027d0 bc05 68c1 faef 3e75 0108 d8e9 2b98 ff0c ..h...>u....+... 0027e0 0212 0108 ee1e 73e9 0a3f 6315 0108 dd84 ......s..?c..... 0027f0 8d4d 1989 34ad 0108 19ba 56eb ed92 9b4a .M..4.....V....J 002800 02c8 9a93 06a3 a6ad eeb3 36c2 d2cc 0ed0 ..........6..... 002810 96d0 06d3 36de a6ee def7 0607 7611 8a16 ....6.......v... 002820 7a20 2a22 ce29 d22f 763d 1244 ae44 4247 z *".)./v=.D.DBG 002830 c253 9661 3267 aa73 a682 868c b690 5293 .S.a2g.s......R. 002840 de9f 9aae e6b9 fec0 6ac6 a2ce 66d7 e2e3 ........j...f... 002850 76f3 e6ff 9e0d 1613 f21f 3631 2236 f63f v.........61"6.? 002860 5651 3258 6a59 6e5e b667 3674 3275 8e7b VQ2XjYn^.g6t2u.{ 002870 4687 9a94 de96 faa0 f6a6 eeb2 5ac2 4acb F...........Z.J. 002880 1ed9 b6dc 1edf bee8 42eb 52f5 92f9 92fe ........B.R..... 002890 9206 920e 9216 c61f 2230 6a31 ce37 1e46 ........"0j1.7.F 0028a0 464f 265d 5661 4e66 9a71 4e79 1e7e f285 FO&]VaNf.qNy.~.. 0028b0 128d d690 1694 9a94 b296 bea0 b2a3 22b3 ..............". 0028c0 0abe e2c4 82c8 aeca a2d3 0308 b122 f896 .............".. 0028d0 fc50 ec4f 0308 6aca 7fa7 5f72 382c 0308 .P.O..j..._r8,.. 0028e0 85b5 54a3 d4d2 c843 0308 25ac b8da 435d ..T....C..%...C] 0028f0 86a2 0308 57b1 b8d0 bdc7 ba04 0308 9de0 ....W........... 002900 6e69 506f 94fa 0308 6398 bfe6 ea70 2eb8 niPo....c....p.. 002910 0308 93a8 9bb7 d7b4 ca9a 0308 5186 8e3e ............Q..> 002920 5d5c f95f 0308 bdc7 8fef a885 0aa1 0308 ]\._............ 002930 c6b5 d640 0e5b 8e04 0308 05a6 0d63 a59a ...@.[.......c.. 002940 ebad 0308 bef8 23f4 bb9c ed64 0308 0f4f ......#....d...O 002950 85f1 0ee8 ea2c 0308 b99a 2b1d c27a be8f .....,....+..z.. 002960 0308 88a2 3a5c 9355 9b73 0308 a667 5f4e ....:\.U.s...g_N 002970 f146 8413 0308 f175 5676 4987 5638 0308 .F.....uVvI.V8.. 002980 ff2a 6a65 a688 d660 0308 7b23 3e42 01c1 .*je...`..{#>B.. 002990 4b5d 0308 7e49 aac1 ddb9 f540 0308 afb2 K]..~I.....@.... 0029a0 b816 b89c 098b 0308 7dc5 4e1e abf9 50f4 ........}.N...P. 0029b0 0308 a01a 3776 8fb2 16d9 0308 31cd c6e0 ....7v......1... 0029c0 973a 27eb 0308 23df 398b 9600 01b2 0308 .:'...#.9....... 0029d0 d61d 2099 3a0e 7498 0308 b4c5 79a2 1a53 .. .:.t.....y..S 0029e0 9e2c 0308 ba41 8c9d c15f e6b8 0308 7aa2 .,...A..._....z. 0029f0 68fc 9889 f0f9 0308 5a48 a3e6 ae53 ff1f h.......ZH...S.. 002a00 0308 577c 2319 362e 4084 0308 52b1 72cd ..W|#.6.@...R.r. 002a10 c5bc 109a 0308 c5e3 007e 6062 250f 0308 .........~`b%... 002a20 ee86 3b52 e49e 6ccc 0308 f4ae f529 7252 ..;R..l......)rR 002a30 feb3 0308 cb93 90ff 5f31 a431 0308 6cfa ........_1.1..l. 002a40 ed16 8c4a 7570 0308 4da3 aac8 0e86 8885 ...Jup..M....... 002a50 0308 f2c6 7dc2 0c43 56d5 0308 ab0b 0f9d ....}..CV....... 002a60 3c8c d840 0308 7a82 84a9 8414 88b3 0308 <..@..z......... 002a70 84dc a55b 4164 8433 0308 56c2 c230 ee93 ...[Ad.3..V..0.. 002a80 64f7 0308 34e5 94c6 89ee bb99 0308 549a d...4.........T. 002a90 8330 d5b9 116d 0308 eb43 78e7 32ec 1257 .0...m...Cx.2..W 002aa0 0308 4f47 6e15 e21c a817 0308 08cf 5c77 ..OGn.........\w 002ab0 7096 2958 0308 1338 2d1c 2e74 d615 0308 p.)X...8-..t.... 002ac0 b654 dd24 2171 c772 0308 4c53 5caf dd2b .T.$!q.r..LS\..+ 002ad0 adb9 0308 76a2 cdab cd56 8d38 0308 3509 ....v....V.8..5. 002ae0 841e c961 3dfe 0308 9369 d9dd 9f23 0464 ...a=....i...#.d 002af0 0308 ebf9 646a 399c d977 0308 c163 25cf ....dj9..w...c%. 002b00 8049 cc2c 0308 e2fe 3d94 3b9d 1948 0308 .I.,....=.;..H.. 002b10 ae50 7a07 e5b1 7ddb 0308 fefb 169e f4f1 .Pz...}......... 002b20 3df8 0308 7ed3 a0c6 7e2f ef65 0308 103a =...~...~/.e...: 002b30 49bf a296 4a4e 0308 adb7 fdea 6eaf d371 I...JN......n..q 002b40 0308 92f3 0933 a0ff 6f8a 0308 25d2 afab .....3..o...%... 002b50 0a2f bf0b 0308 3a1a 202c a20c 9988 0308 ./....:. ,...... 002b60 1d34 1f65 e60e 09a0 0308 8406 12d9 806c .4.e...........l 002b70 89bc 0308 5c2c e4f2 c403 f10b 0308 34b1 ....\,........4. 002b80 093e 2a2d f7db 0308 fee9 8d54 567b 6fcb .>*-.......TV{o. 002b90 0308 1355 ca5c f27d d1d1 0308 acd4 86d4 ...U.\.}........ 002ba0 edf9 0657 0308 06d3 5504 8631 e192 0308 ...W....U..1.... 002bb0 644b 826f fa19 91f4 0308 2b7e 161d 10ed dK.o......+~.... 002bc0 f314 0308 dfb4 7541 70c0 4386 0308 1799 ......uAp.C..... 002bd0 9207 8e38 332b 0308 5375 f992 7715 c101 ...83+..Su..w... 002be0 0308 6fab 7f4d 9960 6f8a 0308 7ddb ae58 ..o..M.`o...}..X 002bf0 4de0 8913 0308 a784 f0a6 c700 5ee2 0308 M...........^... 002c00 7ed5 f88e c725 c1d6 0308 0040 e5af 469d ~....%.....@..F. 002c10 3c43 0308 6f3f 8e96 b37e 75aa 0308 823e <C..o?...~u....> 002c20 6ec9 8949 d422 0308 8538 7130 a87c 303c n..I."...8q0.|0< 002c30 0308 e07a 5f5d fd84 aae8 0308 0ce6 bf9e ...z_].......... 002c40 b394 c55d 0308 0c22 ea94 b986 a9a3 0308 ...]..."........ 002c50 fccb 34fc 3ef9 9ee2 0308 4104 4962 9d18 ..4.>.....A.Ib.. 002c60 88e8 0308 9787 1054 1f1f 0d55 0308 39a7 .......T...U..9. 002c70 3015 669a 01f3 0308 582f 8e7c f22d 0646 0.f.....X/.|.-.F 002c80 0308 4fbc b914 2337 f43d 0308 8fef 575e ..O...#7.=....W^ 002c90 ce76 75c5 0308 d480 d2cd 1eaf 1b86 0308 .vu............. 002ca0 e608 65b4 6a57 46b2 0308 bf9f 43be 9d38 ..e.jWF.....C..8 002cb0 60ea 0308 c6be 2d6e f488 1647 0308 a304 `.....-n...G.... 002cc0 e12f 7ab1 17e5 0308 207f 1a9b d43a f906 ./z..... ....:.. 002cd0 0308 e3b5 8f09 a740 a4da 0308 2376 cc41 .......@....#v.A 002ce0 a032 3dc7 0308 745e 44db a65c 13ca 0308 .2=...t^D..\.... 002cf0 5830 ddbe b5a0 4e74 0308 a1ec 348a 6e97 X0....Nt....4.n. 002d00 22e6 0308 de7a c40c 3984 d983 0308 55a1 "....z..9.....U. 002d10 5d9c 01d9 00e7 0308 3f34 194e 7281 77a0 ].......?4.Nr.w. 002d20 0308 2f0c 602d d407 2934 0308 60cf 5550 ../.`-..)4..`.UP 002d30 a735 e5a4 0308 6714 1dff cbfd ed83 0308 .5....g......... 002d40 7fca c528 d19c 1d8b 0308 6c42 bd14 89bb ...(......lB.... 002d50 13b2 0308 8cd4 4173 df28 46bc 0308 702a ......As.(F...p* 002d60 0682 f45d c404 0308 6b3a d456 3f02 c013 ...]....k:.V?... 002d70 0308 7a61 02ff c31d fc95 0308 2ccd b2ea ..za........,... 002d80 d01f 0e7e 0308 b26c 1ad8 8655 ef36 0308 ...~...l...U.6.. 002d90 e0f0 1b19 e1f9 8fe3 0308 464c 3877 0229 ..........FL8w.) 002da0 9be4 0308 adf7 9d14 76cc 7223 0308 cf7d ........v.r#...} 002db0 f4fb ecf2 ca83 0308 17c4 b67c b8b8 7cc3 ...........|..|. 002dc0 0308 db81 8e95 a314 b103 0308 a704 abe3 ................ 002dd0 3190 6670 0308 1448 46c4 55f3 0435 0308 1.fp...HF.U..5.. 002de0 44f9 9832 6809 c6b6 0308 03a7 31e0 2cbf D..2h.......1.,. 002df0 9a0d 0308 3a4d 5bcf 23d0 46c1 0308 c5b5 ....:M[.#.F..... 002e00 e01b bb65 9d40 0308 d015 0a83 0082 844c ...e.@.........L 002e10 0308 0e8b 042b cca1 d437 0308 e566 683c .....+...7...fh< 002e20 93a4 4c23 0308 49c8 a0ae 8a36 6251 0308 ..L#..I....6bQ.. 002e30 789c 17e2 b80c aa38 0308 f816 0220 1905 x......8..... .. 002e40 8a01 0308 bf0a c563 ec1c 4f12 0308 e23b .......c..O....; 002e50 db3d 5320 010e 0308 0acd 9c23 c33e a06a .=S .......#.>.j 002e60 0308 3cc6 ba97 452b dd41 0308 473d 12ed ..<...E+.A..G=.. 002e70 0dbd 4b8b 0308 53c7 ae96 ef25 8fac 0308 ..K...S....%.... 002e80 6f47 4f89 3cbb 8ccc 0308 be89 d329 5608 oGO.<........)V. 002e90 c44c 0308 7e8c b851 459e c80b 0308 20b0 .L..~..QE..... . 002ea0 f5d9 4892 ba8f 0308 cd1a d099 12fa fa55 ..H............U 002eb0 0308 1ba4 ff5c 2563 cbc3 0308 554e 5fb1 .....\%c....UN_. 002ec0 c044 7827 0308 5b09 00d9 8b63 bd18 0308 .Dx'..[....c.... 002ed0 8479 42ec e86c b2d6 0308 4a57 8c5e d77b .yB..l....JW.^.{ 002ee0 ef34 0308 db3e beb1 1372 d36c 0308 590e .4...>...r.l..Y. 002ef0 5e59 c828 6ff4 0308 9f9a 7a63 c9c0 d93d ^Y.(o.....zc...= 002f00 0308 8ce8 6422 db17 6448 0308 3251 2168 ....d"..dH..2Q!h 002f10 1b3d 775c 0308 b0c9 c157 ec63 cd79 0308 .=w\.....W.c.y.. 002f20 2db5 32d1 6611 a9e2 0308 c52a 854c 2411 -.2.f......*.L$. 002f30 aab7 0308 3c2e a335 0f38 369a 0308 2eec ....<..5.86..... 002f40 0f59 a292 794b 0308 6571 f18d 3a99 3e34 .Y..yK..eq..:.>4 002f50 0308 28ff 654e 31f3 a201 0308 59a0 6074 ..(.eN1.....Y.`t 002f60 2c44 173b 0308 2547 684f 8ebe 4dc1 0308 ,D.;..%GhO..M... 002f70 de4d f6d6 cad2 ba2f 0308 2812 af97 b6a1 .M...../..(..... 002f80 f1b9 0308 8c65 80a5 0f2b 7605 0308 18f1 .....e...+v..... 002f90 ebce c2f1 a879 0308 d583 ae1b ea20 b905 .....y....... .. 002fa0 0308 543a 57b7 4167 c9dd 0308 c97d d426 ..T:W.Ag.....}.& 002fb0 1a5c 0ec2 0308 a402 b822 a164 a811 0308 .\.......".d.... 002fc0 5f0d a43e 1c1f 218e 0308 708c a2e8 9e40 _..>..!...p....@ 002fd0 4634 0308 87be 6aeb 26ef 61d6 0308 cc3c F4....j.&.a....< 002fe0 1807 d545 d609 0308 a510 3510 dc1b da55 ...E......5....U 002ff0 0308 9782 9222 a35c 0ddd 0308 8b4f 68a2 .....".\.....Oh. 003000 1c31 9270 0308 7c7d 14b5 c039 bee4 0308 .1.p..|}...9.... 003010 1cbb 4118 398b 148d 0308 4a6e b5a5 4f78 ..A.9.....Jn..Ox 003020 4d18 0308 019a 2c3f 76c8 26f7 0308 7713 M.....,?v.&...w. 003030 82b3 59ec adab 0308 edd1 961b dd42 00cb ..Y..........B.. 003040 0308 9bd5 963b 9dcd 2a69 0308 27d8 a88f .....;..*i..'... 003050 1507 3021 0308 fedd f6f2 f6c6 2511 0308 ..0!........%... 003060 05c2 9dbd 4cbf adaa 0308 c53c 3ec8 019f ....L......<>... 003070 0d59 0308 5f6a 22d5 3f31 7680 0308 d683 .Y.._j".?1v..... 003080 6cb4 5caa ff36 0308 6608 42e7 0988 48fe l.\..6..f.B...H. 003090 0308 e378 dadb ada2 a88b 0308 17a0 cc25 ...x...........% 0030a0 ee2d 1313 0308 ba39 d238 b441 e755 0308 .-.....9.8.A.U.. 0030b0 be57 46fa 655f 6324 0308 8820 7998 9f9a .WF.e_c$... y... 0030c0 7667 0308 4da7 2bd6 c1de 1116 0308 13ab vg..M.+......... 0030d0 7222 232e 2972 0308 6670 1c84 8390 66de r"#.)r..fp....f. 0030e0 0308 cf48 9294 5657 7d58 0308 605b e678 ...H..VW}X..`[.x 0030f0 32d9 2426 0308 4c98 60e8 d50b 6509 0308 2.$&..L.`...e... 003100 78a8 3c40 b071 719f 0308 3901 c90e c26b x.<@.qq...9....k 003110 1a10 0308 1ebb 085e 8f58 0af6 0308 da96 .......^.X...... 003120 3952 d621 fc82 0308 f76d 8a4b acfd d189 9R.!.....m.K.... 003130 0308 27b4 478b b969 4c18 0308 6ac7 f203 ..'.G..iL...j... 003140 9fb2 ce61 0308 f878 1cd9 9ffa 533c 0308 ...a...x....S<.. 003150 a18d d697 8f98 7a89 0308 0c56 8c3a 4115 ......z....V.:A. 003160 32b5 0308 7c5c 632f 6a90 b162 0308 8395 2...|\c/j..b.... 003170 18a6 ebe3 3f0e 0308 126b 0342 9fd3 fa16 ....?....k.B.... 003180 0308 2330 bbd2 8552 38a2 0308 72bd 8c5d ..#0...R8...r..] 003190 1c58 f4d7 0308 64de 1951 4c7b 7708 0308 .X....d..QL{w... 0031a0 c35b fa97 1643 6363 0308 6a68 d55a 47c7 .[...Ccc..jh.ZG. 0031b0 7975 0308 0914 85e8 2dbb 6c7e 0308 263a yu......-.l~..&: 0031c0 10e9 3f35 6fc4 0308 230b a2e5 a270 56a0 ..?5o...#....pV. 0031d0 0308 77b8 f648 5f30 aefc 0308 4751 f326 ..w..H_0....GQ.& 0031e0 5b44 0e5f 0308 52ae 3b03 d66b 26b5 0308 [D._..R.;..k&... 0031f0 f116 9fe2 88b4 1ed9 0308 e6dd 4ccc cc04 ............L... 003200 1850 0308 9f1f a2e7 fe4d bad0 0308 71c6 .P.......M....q. 003210 1696 5ac7 30cf 0308 bef9 0a83 bd3a 3e52 ..Z.0........:>R 003220 0308 1cf4 5356 925c e5b8 0308 e9ae e286 ....SV.\........ 003230 fbf5 212d 0308 7a69 bd7a 1f33 d44b 0308 ..!-..zi.z.3.K.. 003240 5506 e6c9 582c 566b 0308 6892 32ae 1d1c U...X,Vk..h.2... 003250 4e04 0308 6a8f e2fa d8dc 5328 0308 0503 N...j.....S(.... 003260 7343 ccaa 6f46 0308 527b 329b 0cd4 4894 sC..oF..R{2...H. 003270 0308 a6ba e02f 570e eeb3 0308 0cb3 d5ce ...../W......... 003280 0def 40ab 0308 f7ed c115 a8df 28f2 0308 ..@.........(... 003290 f85a 8a49 83d5 bdbc 0308 94d9 4f43 3678 .Z.I........OC6x 0032a0 c15e 0308 a928 2cf1 6826 3482 0308 ee6e .^...(,.h&4....n 0032b0 4bc5 f39b 6042 0308 21f5 dda6 65d1 2dfc K...`B..!...e.-. 0032c0 0308 0181 1fb8 07be 5ea4 0308 b135 ea54 ........^....5.T 0032d0 46ef 9526 0308 fc9b 4fae 3913 0b5d 0308 F..&....O.9..].. 0032e0 5ce8 9244 4b9d fb7f 0308 8c35 55d7 9e9f \..DK......5U... 0032f0 f35f 0308 9142 a2b9 9bf9 6b21 0308 cbda ._...B....k!.... 003300 389b 8794 2cba 0308 c0b5 a442 819a 3417 8...,......B..4. 003310 0308 9ec5 edba 9524 1287 0308 fa2d 5b1a .......$.....-[. 003320 6062 cdbb 0308 5726 30b6 1a27 f844 0308 `b....W&0..'.D.. 003330 ebf4 d07a b362 2b95 0308 6020 bf9f ea5b ...z.b+...` ...[ 003340 20fd 0308 4cf3 9a93 2c1b 709c 0308 93ee ...L...,.p..... 003350 9246 6780 f107 0308 7dd5 6579 dad1 932f .Fg.....}.ey.../ 003360 0308 28da 7ace 864d c40a 0308 37dd 9483 ..(.z..M....7... 003370 cbee ccaf 0308 7608 b7f4 f2f7 98b4 0308 ......v......... 003380 6f88 d5d0 6f10 68d0 0308 5a02 77a6 48aa o...o.h...Z.w.H. 003390 add3 0308 518b 18f6 c436 3951 0308 1ec8 ....Q....69Q.... 0033a0 a776 8579 f03d 0308 066e b7c2 424a d25c .v.y.=...n..BJ.\ 0033b0 0308 c19e ed2e 3656 89b9 0308 336b 3d8b ......6V....3k=. 0033c0 758b 6cd2 0308 2978 63a7 07a9 78e6 0308 u.l...)xc...x... 0033d0 ab30 4715 db50 589e 0308 b897 a9d2 7a66 .0G..PX.......zf 0033e0 dd33 0308 a241 add4 ecae d3e4 0308 70ae .3...A........p. 0033f0 054b c0d4 613b 0308 0266 b5e6 2d66 440f .K..a;...f..-fD. 003400 0308 dbcd b55c 546f 1e79 0308 f649 943e .....\To.y...I.> 003410 d046 b0f2 0308 eac9 6a59 b380 2718 0308 .F......jY..'... 003420 9bff 3c8a 3c83 5cfe 0308 ac98 8551 5130 ..<.<.\......QQ0 003430 5174 0308 aaab 423e 1053 7f04 0308 0731 Qt....B>.S.....1 003440 96b6 c509 e28e 0308 b0a9 a5e1 0bfb 12ef ................ 003450 0308 bae7 d6dd 7916 b039 0308 4377 7def ......y..9..Cw}. 003460 d381 7538 0308 68ba 1692 4975 dd49 0308 ..u8..h...Iu.I.. 003470 cb3f 7c45 49ea 6020 0308 c149 0588 05dc .?|EI.` ...I.... 003480 16c0 0308 df25 b0a2 8714 a0c3 0308 26ab .....%........&. 003490 16a6 049d dbc4 0308 5773 b60a ace3 f8e6 ........Ws...... 0034a0 0308 dde5 6a70 a98b b8c2 0308 4403 6840 ....jp......D.h@ 0034b0 7141 ba7e 0308 150e c918 6391 01bb 0308 qA.~......c..... 0034c0 c811 fc38 900b 928a 0308 263e 5817 6660 ...8......&>X.f` 0034d0 7936 0308 8f84 f958 2ed8 b7bd 0308 5bbe y6.....X......[. 0034e0 c0dc 978e 4e46 0308 e98a 3355 cf30 980e ....NF....3U.0.. 0034f0 0308 5ee2 15c3 e9f6 f7e6 0308 1996 7ef1 ..^...........~. 003500 83df 9c07 0308 edf8 0d86 a96b bfc9 0308 ...........k.... 003510 2e30 e8e0 1478 6621 0308 3244 8c19 a779 .0...xf!..2D...y 003520 7db1 0308 0a18 4ca8 344e d8d7 0308 0d5b }.....L.4N.....[ 003530 ced7 f8f1 5d50 0308 fcc3 4d17 2cc4 f2a2 ....]P....M.,... 003540 0308 8efa 7f26 875f 7cf6 0308 36fd 9970 .....&._|...6..p 003550 1717 6f34 0308 d258 4880 6576 97a6 0308 ..o4...XH.ev.... 003560 25ce 1e89 4883 6d81 0308 8411 2ef1 f0a1 %...H.m......... 003570 b81e 0308 7a9e 5116 984e 2af2 0308 f100 ....z.Q..N*..... 003580 4b77 7abf 9f81 0308 737e 8882 1d84 95c3 Kwz.....s~...... 003590 0308 2729 3664 5554 de18 0308 67a8 e756 ..')6dUT....g..V 0035a0 4d89 b405 0308 897a 9991 6745 41e4 0308 M......z..gEA... 0035b0 76f5 a6cb cf75 11ec 0308 9cc4 d2d6 d46d v....u.........m 0035c0 8bf5 0308 e872 8fe3 b297 e31a 0308 8273 .....r.........s 0035d0 5a35 10d3 f362 0308 762c 913e 4d94 1221 Z5...b..v,.>M..! 0035e0 0308 2d02 e0de 29f7 b248 0308 11ae df5c ..-...)..H.....\ 0035f0 a719 4d1d 0308 7c38 23c1 8110 1ffa 0308 ..M...|8#....... 003600 521e 6d1f 39d0 c47c 0308 334f 442f 6598 R.m.9..|..3OD/e. 003610 96a7 0308 9733 776f ecd2 f472 0308 4639 .....3wo...r..F9 003620 1813 c424 fba7 0308 d22c 36e7 156d 2a72 ...$.....,6..m*r 003630 0308 5a39 26eb a102 c092 0308 a78c 0dc2 ..Z9&........... 003640 a9dc cbbb 0308 75c9 e512 d437 4e90 0308 ......u....7N... 003650 40bc bdd2 5112 49d7 0308 9c73 d4e0 4d0a @...Q.I....s..M. 003660 d3ea 0308 a0d2 f286 3252 094e 0308 06ba ........2R.N.... 003670 04ef 5dd6 a170 0308 04f3 fd6a 4863 a8cb ..]..p.....jHc.. 003680 0308 5eec ebde e775 1246 0308 9acc 9f89 ..^....u.F...... 003690 3f8d a937 0308 bdfe e6c7 4625 01ad 0308 ?..7......F%.... 0036a0 0a7d 8154 1652 6fbf 0308 cb3d 11b7 f91f .}.T.Ro....=.... 0036b0 7682 0308 d787 afdd f268 be16 0308 d6a5 v........h...... 0036c0 57f4 0f87 19f9 0308 401f 2efb a1fe d43e W.......@......> 0036d0 0308 d4a9 69df 0737 f2b9 0308 25d3 51a4 ....i..7....%.Q. 0036e0 d2d6 51c5 0308 0364 2cc8 0886 46f9 0308 ..Q....d,...F... 0036f0 3ab2 ac83 36f0 c7d8 0308 3135 2d6d 497d :...6.....15-mI} 003700 d325 0308 8b43 9d0e 949c f053 0308 767b .%...C.....S..v{ 003710 0a4d 409b 3255 0308 5ea1 449f 87a4 2529 .M@.2U..^.D...%) 003720 0308 d26f dd6a c3df 13ef 0308 2e11 c2df ...o.j.......... 003730 ebce dd5d 0308 6214 e5d1 a367 9e44 0308 ...]..b....g.D.. 003740 b434 94f6 5705 69f8 0308 4a87 270e 4ead .4..W.i...J.'.N. 003750 a786 0308 b73b 1771 9775 e224 0308 bbb9 .....;.q.u.$.... 003760 f2af 9786 d50d 0308 887a 8e8b 6eb6 d2b3 .........z..n... 003770 0308 df4c 8c38 3caf 342a 0308 bab2 094f ...L.8<.4*.....O 003780 6691 b6dd 0308 40de e671 0503 596d 0308 f.....@..q..Ym.. 003790 b24c 20b7 aed0 cac2 0308 782f 23e8 e521 .L .......x/#..! 0037a0 4f98 0308 d466 28a6 48dc 890b 0308 4cb5 O....f(.H.....L. 0037b0 c716 28e9 75a0 0308 2635 5dd0 ecee d6d7 ..(.u...&5]..... 0037c0 0308 968e f6eb 90a4 5340 0308 3cec d8ad ........S@..<... 0037d0 711b ee91 0308 b8e4 33a9 bf91 0938 0308 q.......3....8.. 0037e0 0689 4c08 d3da 9b0b 0308 dbb7 bfa7 1999 ..L............. 0037f0 5759 0308 a91d 9de4 bee5 0837 0308 7412 WY.........7..t. 003800 522e e5d8 e401 0308 c1be 1de6 4a8d 9c5b R...........J..[ 003810 0308 3ca3 bd74 0220 6e74 0308 0036 ef03 ..<..t. nt...6.. 003820 38b4 c67f 0308 3ab3 14f8 5b7a 33df 0308 8.....:...[z3... 003830 6b82 7981 5a9f 3c74 0308 98d6 a750 2c86 k.y.Z.<t.....P,. 003840 99f7 0308 1890 fb89 39a2 ca28 0308 985e ........9..(...^ 003850 4190 214b 3423 0308 8ef8 1a27 e051 7848 A.!K4#.....'.QxH 003860 0308 83f0 fe12 c277 f420 0308 cc1c 66c7 .......w. ....f. 003870 5283 b333 0308 da0e 3985 8478 b718 0308 R..3....9..x.... 003880 58be e5da 287a d365 0308 bd81 693a 5444 X...(z.e....i:TD 003890 e5f3 0308 df3a 31b5 131c d875 0308 2f73 .....:1....u../s 0038a0 36cb 0c3f 07e4 0308 9a85 1431 ef26 c09a 6..?.......1.&.. 0038b0 0308 d2a3 62ac 0fda cbc6 0308 1ec1 0cef ....b........... 0038c0 fc13 51f4 0308 b6d2 5da4 73e2 cb31 0308 ..Q.....].s..1.. 0038d0 8b5f c816 fd24 b066 0308 3c09 e7cb 4e9f ._...$.f..<...N. 0038e0 6dc3 0308 65fb e25c 008d 7fc6 0308 f336 m...e..\.......6 0038f0 1e3b 263c 3f80 0308 ceed 489a 4604 05cf .;&<?.....H.F... 003900 0308 572a 9927 b305 637f 0308 23d4 e082 ..W*.'..c...#... 003910 1b09 3c9e 0308 b2a4 2783 33c6 4dc7 0308 ..<.....'.3.M... 003920 0686 78f9 8c57 0d9c 0308 bf93 db95 3d13 ..x..W........=. 003930 1070 0308 c4ae ac80 7b9a e95c 0308 5c45 .p......{..\..\E 003940 83d7 1aa0 534e 0308 d044 e61c 2624 d3a7 ....SN...D..&$.. 003950 0308 4fb8 e9ce 90c1 0641 0308 4f7f 3fc2 ..O......A..O.?. 003960 b213 91b3 0308 d3d4 cc45 fd24 6a6c 0308 .........E.$jl.. 003970 b9d1 921a 186a 93c0 0308 9cf0 9667 0c78 .....j.......g.x 003980 6852 0308 f46e d118 f9ef 9a3c 0308 a9dc hR...n.....<.... 003990 7993 5d14 e6a9 0308 1af3 3f68 37da 8c23 y.].......?h7..# 0039a0 0308 1251 2e61 b160 c499 0308 8e93 dd51 ...Q.a.`.......Q 0039b0 ea52 3770 0308 b82b 182c e533 35d8 0308 .R7p...+.,.35... 0039c0 e0af 3bf3 d677 23c9 0308 9f54 d5b6 067e ..;..w#....T...~ 0039d0 9634 0308 a704 9a5c ca99 feb9 0308 9119 .4.....\........ 0039e0 63de 3856 2d6d 0308 a9de 9e41 c1fe fe93 c.8V-m.....A.... 0039f0 0308 d0e2 e0d3 c339 4071 0308 09d3 d3c6 .......9@q...... 003a00 b0ab a8de 0308 c659 a5da 5ef5 2d01 0308 .......Y..^.-... 003a10 c0fb 5491 a51f 26c8 0308 090f 83e6 2f72 ..T...&......./r 003a20 7208 0308 47db 2291 1dd2 ea2c 0308 7228 r...G."....,..r( 003a30 11bb dc14 934c 0308 f4ba 6c65 21c9 a4f7 .....L....le!... 003a40 0308 b7c9 05db f1d7 3986 0308 b5e0 d5c4 ........9....... 003a50 c66a 3946 0308 8d3c 3e1e 3226 3bb8 0308 .j9F...<>.2&;... 003a60 7d1e 5369 199b 8a08 0308 0cd8 0616 b6ae }.Si............ 003a70 1215 0308 500b 23b1 2ad1 42d5 0308 6e24 ....P.#.*.B...n$ 003a80 d8b4 6704 1db0 0308 9741 c373 c135 08f9 ..g......A.s.5.. 003a90 0308 4717 a147 0c49 d3e1 0308 e334 68b0 ..G..G.I.....4h. 003aa0 199f da87 0308 8133 7ae2 0133 ad33 0308 .......3z..3.3.. 003ab0 9113 8238 3a2a 1bcc 0308 0c86 fa32 2e6d ...8:*.......2.m 003ac0 7bc2 0308 2123 ceff 2ed7 bd0a 0308 06db {...!#.......... 003ad0 721e 75b8 af48 0308 c243 9c65 236c 72f3 r.u..H...C.e#lr. 003ae0 0308 e59b 8241 95e1 187e 0308 d1d1 023c .....A...~.....< 003af0 bb0f 0048 0308 ef23 0962 d679 e1ba 0308 ...H...#.b.y.... 003b00 b42e 18e3 bc51 49b2 0308 7d83 5d14 8bb3 .....QI...}.]... 003b10 78dd 0308 12ee a5c7 1ef0 90a1 0308 c095 x............... 003b20 0ce0 80af 71bb 0308 2150 d814 a796 0565 ....q...!P.....e 003b30 0308 aa46 7fdc 87aa e1f2 0308 dd67 2ca3 ...F.........g,. 003b40 347d a5c0 0308 d70c 4f69 1d76 84e3 0308 4}......Oi.v.... 003b50 e88e c534 9c1e 1e0d 0308 a801 6049 a64d ...4........`I.M 003b60 8709 0308 3a77 2f85 6787 0978 0308 4b48 ....:w/.g..x..KH 003b70 66d1 4504 187c 0308 3468 094d 6ada c4e2 f.E..|..4h.Mj... 003b80 0308 34c8 f010 7ea7 53d6 0308 7822 7083 ..4...~.S...x"p. 003b90 4d30 7bd2 0308 12ad f815 7ec8 c9fc 0308 M0{.......~..... 003ba0 ac7f 0090 4794 a823 0308 a222 cd2b 9dbf ....G..#...".+.. 003bb0 f498 0308 d143 143f d212 90f4 0308 2484 .....C.?......$. 003bc0 4bb6 bca2 b6e5 0308 3079 163a af2f e21d K.......0y.:./.. 003bd0 0308 e567 f007 4d06 447d 0308 0bcf 0d56 ...g..M.D}.....V 003be0 8cfb f944 0308 c19a c770 e37e a079 0308 ...D.....p.~.y.. 003bf0 fc17 69ff 5a2b 93f6 0308 2437 2d68 36f3 ..i.Z+....$7-h6. 003c00 b0fc 0308 7386 6868 e759 764f 0308 ac8c ....s.hh.YvO.... 003c10 f508 090c f1e1 0308 9e4a 84c9 f48d cb61 .........J.....a 003c20 0308 34eb 4797 eafd 5dc0 0308 7e9b 0a94 ..4.G...]...~... 003c30 a310 a9b4 0308 8d8a f337 fe75 765f 0308 .........7.uv_.. 003c40 5b16 c691 99aa 38c2 0308 02a3 1849 55f0 [.....8......IU. 003c50 89c2 0308 77a3 24d5 a583 1f07 0308 bb36 ....w.$........6 003c60 e74e 868b e62d 0308 ef4e 60d7 f045 35d0 .N...-...N`..E5. 003c70 0308 4167 da69 a8d1 55e9 0308 b31a 9066 ..Ag.i..U......f 003c80 e136 932f 0308 40ed 201a ce41 cb10 0308 .6./..@. ..A.... 003c90 086e 70ca 8a13 618e 0308 f33f 31be 800e .np...a....?1... 003ca0 464f 0308 1859 8558 9c73 404d 0308 c2a5 FO...Y.X.s@M.... 003cb0 01be 5d5a c3d9 0308 10b6 17c5 0b35 9fd1 ..]Z.........5.. 003cc0 0308 f180 47fd c022 9e76 ....G..".v accumulate: (src: [0] rdrand) f486 f709 d78d f7ee entropy sources: [0] rdrand [1] timer accumulate: (src: [1] timer) c6a4 6aec accumulate: (src: [0] rdrand) 239a 5de9 2ecb 2138 accumulate: (src: [1] timer) 8a9d 8c87 accumulate: (src: [0] rdrand) 52e0 890b 7c4e d3f0 accumulate: (src: [1] timer) 8904 b022 test_ec alias tests/runtest Testing EC. This run has ID `58278B3B-A1E4-4069-A740-2A9DEAFB301C`. ... P256 Key exchange 0 b*A. [OK] P256 Key exchange 0 b*A. ... P256 Key exchange 1 a*B. [OK] P256 Key exchange 1 a*B. ... P256 Key exchange 2 a*A. [OK] P256 Key exchange 2 a*A. ... P256 Key exchange 3 b*B. [OK] P256 Key exchange 3 b*B. ... P256 Low level scalar mult 0 Scalar mult (#0). [OK] P256 Low level scalar mult 0 Scalar mult (#0). ... P256 Low level scalar mult 1 Scalar mult (#1). [OK] P256 Low level scalar mult 1 Scalar mult (#1). ... P256 Low level scalar mult 2 Scalar mult (#2). [OK] P256 Low level scalar mult 2 Scalar mult (#2). ... P256 Low level scalar mult 3 Scalar mult (#3). [OK] P256 Low level scalar mult 3 Scalar mult (#3). ... P256 Low level scalar mult 4 Scalar mult (#4). [OK] P256 Low level scalar mult 4 Scalar mult (#4). ... P256 Low level scalar mult 5 Scalar mult (#5). [OK] P256 Low level scalar mult 5 Scalar mult (#5). ... P256 Point validation 0 Ok. [OK] P256 Point validation 0 Ok. ... P256 Point validation 1 P=0. [OK] P256 Point validation 1 P=0. ... P256 Point validation 2 (0, sqrt(b)). [OK] P256 Point validation 2 (0, sqrt(b)). ... P256 Point validation 3 out of range. [OK] P256 Point validation 3 out of range. ... P256 Scalar validation when generating 0 0. [OK] P256 Scalar validation when generating 0 0. ... P256 Scalar validation when generating 1 1. [OK] P256 Scalar validation when generating 1 1. ... P256 Scalar validation when generating 2 n-1. [OK] P256 Scalar validation when generating 2 n-1. ... P256 Scalar validation when generating 3 n. [OK] P256 Scalar validation when generating 3 n. ... ECDSA NIST 0 ECDSA gen. [OK] ECDSA NIST 0 ECDSA gen. ... ECDSA NIST 1 ECDSA sign. [OK] ECDSA NIST 1 ECDSA sign. ... ECDSA NIST 2 ECDSA verify. [OK] ECDSA NIST 2 ECDSA verify. ... ECDSA RFC 6979 P256 0 public key matches. [OK] ECDSA RFC 6979 P256 0 public key matches. ... ECDSA RFC 6979 P256 1 public key compression and decompression. [OK] ECDSA RFC 6979 P256 1 public key compression and decompression. ... ECDSA RFC 6979 P256 2 RFC 6979 A.2.5 0. [OK] ECDSA RFC 6979 P256 2 RFC 6979 A.2.5 0. ... ECDSA RFC 6979 P256 3 RFC 6979 A.2.5 1. [OK] ECDSA RFC 6979 P256 3 RFC 6979 A.2.5 1. ... ECDSA RFC 6979 P256 4 RFC 6979 A.2.5 2. [OK] ECDSA RFC 6979 P256 4 RFC 6979 A.2.5 2. ... ECDSA RFC 6979 P256 5 RFC 6979 A.2.5 3. [OK] ECDSA RFC 6979 P256 5 RFC 6979 A.2.5 3. ... ECDSA RFC 6979 P256 6 RFC 6979 A.2.5 4. [OK] ECDSA RFC 6979 P256 6 RFC 6979 A.2.5 4. ... ECDSA RFC 6979 P256 7 RFC 6979 A.2.5 5. [OK] ECDSA RFC 6979 P256 7 RFC 6979 A.2.5 5. ... ECDSA RFC 6979 P256 8 RFC 6979 A.2.5 6. [OK] ECDSA RFC 6979 P256 8 RFC 6979 A.2.5 6. ... ECDSA RFC 6979 P256 9 RFC 6979 A.2.5 7. [OK] ECDSA RFC 6979 P256 9 RFC 6979 A.2.5 7. ... ECDSA RFC 6979 P256 10 RFC 6979 A.2.5 8. [OK] ECDSA RFC 6979 P256 10 RFC 6979 A.2.5 8. ... ECDSA RFC 6979 P256 11 RFC 6979 A.2.5 9. [OK] ECDSA RFC 6979 P256 11 RFC 6979 A.2.5 9. ... ECDSA RFC 6979 P384 0 public key matches. [OK] ECDSA RFC 6979 P384 0 public key matches. ... ECDSA RFC 6979 P384 1 public key compression and decompression. [OK] ECDSA RFC 6979 P384 1 public key compression and decompression. ... ECDSA RFC 6979 P384 2 RFC 6979 A.2.6 0. [OK] ECDSA RFC 6979 P384 2 RFC 6979 A.2.6 0. ... ECDSA RFC 6979 P384 3 RFC 6979 A.2.6 1. [OK] ECDSA RFC 6979 P384 3 RFC 6979 A.2.6 1. ... ECDSA RFC 6979 P384 4 RFC 6979 A.2.6 2. [OK] ECDSA RFC 6979 P384 4 RFC 6979 A.2.6 2. ... ECDSA RFC 6979 P384 5 RFC 6979 A.2.6 3. [OK] ECDSA RFC 6979 P384 5 RFC 6979 A.2.6 3. ... ECDSA RFC 6979 P384 6 RFC 6979 A.2.6 4. [OK] ECDSA RFC 6979 P384 6 RFC 6979 A.2.6 4. ... ECDSA RFC 6979 P384 7 RFC 6979 A.2.6 5. [OK] ECDSA RFC 6979 P384 7 RFC 6979 A.2.6 5. ... ECDSA RFC 6979 P384 8 RFC 6979 A.2.6 6. [OK] ECDSA RFC 6979 P384 8 RFC 6979 A.2.6 6. ... ECDSA RFC 6979 P384 9 RFC 6979 A.2.6 7. [OK] ECDSA RFC 6979 P384 9 RFC 6979 A.2.6 7. ... ECDSA RFC 6979 P384 10 RFC 6979 A.2.6 8. [OK] ECDSA RFC 6979 P384 10 RFC 6979 A.2.6 8. ... ECDSA RFC 6979 P384 11 RFC 6979 A.2.6 9. [OK] ECDSA RFC 6979 P384 11 RFC 6979 A.2.6 9. ... ECDSA RFC 6979 P521 0 public key matches. [OK] ECDSA RFC 6979 P521 0 public key matches. ... ECDSA RFC 6979 P521 1 public key compression and decompression. [OK] ECDSA RFC 6979 P521 1 public key compression and decompression. ... ECDSA RFC 6979 P521 2 RFC 6979 A.2.7 0. [OK] ECDSA RFC 6979 P521 2 RFC 6979 A.2.7 0. ... ECDSA RFC 6979 P521 3 RFC 6979 A.2.7 1. [OK] ECDSA RFC 6979 P521 3 RFC 6979 A.2.7 1. ... ECDSA RFC 6979 P521 4 RFC 6979 A.2.7 2. [OK] ECDSA RFC 6979 P521 4 RFC 6979 A.2.7 2. ... ECDSA RFC 6979 P521 5 RFC 6979 A.2.7 3. [OK] ECDSA RFC 6979 P521 5 RFC 6979 A.2.7 3. ... ECDSA RFC 6979 P521 6 RFC 6979 A.2.7 4. [OK] ECDSA RFC 6979 P521 6 RFC 6979 A.2.7 4. ... ECDSA RFC 6979 P521 7 RFC 6979 A.2.7 5. [OK] ECDSA RFC 6979 P521 7 RFC 6979 A.2.7 5. ... ECDSA RFC 6979 P521 8 RFC 6979 A.2.7 6. [OK] ECDSA RFC 6979 P521 8 RFC 6979 A.2.7 6. ... ECDSA RFC 6979 P521 9 RFC 6979 A.2.7 7. [OK] ECDSA RFC 6979 P521 9 RFC 6979 A.2.7 7. ... ECDSA RFC 6979 P521 10 RFC 6979 A.2.7 8. [OK] ECDSA RFC 6979 P521 10 RFC 6979 A.2.7 8. ... ECDSA RFC 6979 P521 11 RFC 6979 A.2.7 9. [OK] ECDSA RFC 6979 P521 11 RFC 6979 A.2.7 9. ... X25519 0 RFC 7748. [OK] X25519 0 RFC 7748. ... ED25519 0 RFC 8032 1. [OK] ED25519 0 RFC 8032 1. ... ED25519 1 RFC 8032 2. [OK] ED25519 1 RFC 8032 2. ... ED25519 2 RFC 8032 3. [OK] ED25519 2 RFC 8032 3. ... ED25519 3 RFC 8032 4. [OK] ED25519 3 RFC 8032 4. ... ED25519 4 RFC 8032 5. [OK] ED25519 4 RFC 8032 5. ... ECDSA P521 regression 0 regreesion1. [OK] ECDSA P521 regression 0 regreesion1. The full test results are available in `/src/_build/default/tests/_build/_tests/58278B3B-A1E4-4069-A740-2A9DEAFB301C`. Test Successful in 0.000s. 64 tests run. test_pk_runner alias tests/runtest ....................................................................................................................................................................................................................................................................................................................................................................... Ran: 359 tests in: 1.77 seconds. OK test_ec_wycheproof alias tests/runtest Testing Wycheproof NIST curves. This run has ID `59131925-03FD-45D8-B33B-EA59BD6A46AE`. ... ECDH P256 test vectors 0 1 - normal case. [OK] ECDH P256 test vectors 0 1 - normal case. ... ECDH P256 test vectors 1 2 - compressed public key. [OK] ECDH P256 test vectors 1 2 - compressed public key. ... ECDH P256 test vectors 2 3 - edge case for shared secret. [OK] ECDH P256 test vectors 2 3 - edge case for shared secret. ... ECDH P256 test vectors 3 4 - edge case for shared secret. [OK] ECDH P256 test vectors 3 4 - edge case for shared secret. ... ECDH P256 test vectors 4 5 - edge case for shared secret. [OK] ECDH P256 test vectors 4 5 - edge case for shared secret. ... ECDH P256 test vectors 5 6 - edge case for shared secret. [OK] ECDH P256 test vectors 5 6 - edge case for shared secret. ... ECDH P256 test vectors 6 7 - edge case for shared secret. [OK] ECDH P256 test vectors 6 7 - edge case for shared secret. ... ECDH P256 test vectors 7 8 - edge case for shared secret. [OK] ECDH P256 test vectors 7 8 - edge case for shared secret. ... ECDH P256 test vectors 8 9 - edge case for shared secret. [OK] ECDH P256 test vectors 8 9 - edge case for shared secret. ... ECDH P256 test vectors 9 10 - edge case for shared secret. [OK] ECDH P256 test vectors 9 10 - edge case for shared secret. ... ECDH P256 test vectors 10 11 - edge case for shared secret. [OK] ECDH P256 test vectors 10 11 - edge case for shared secret. ... ECDH P256 test vectors 11 12 - edge case for shared secret. [OK] ECDH P256 test vectors 11 12 - edge case for shared secret. ... ECDH P256 test vectors 12 13 - edge case for shared secret. [OK] ECDH P256 test vectors 12 13 - edge case for shared secret. ... ECDH P256 test vectors 13 14 - edge case for shared secret. [OK] ECDH P256 test vectors 13 14 - edge case for shared secret. ... ECDH P256 test vectors 14 15 - edge case for shared secret. [OK] ECDH P256 test vectors 14 15 - edge case for shared secret. ... ECDH P256 test vectors 15 16 - edge case for shared secret. [OK] ECDH P256 test vectors 15 16 - edge case for shared secret. ... ECDH P256 test vectors 16 17 - edge case for shared secret. [OK] ECDH P256 test vectors 16 17 - edge case for shared secret. ... ECDH P256 test vectors 17 18 - edge case for shared secret. [OK] ECDH P256 test vectors 17 18 - edge case for shared secret. ... ECDH P256 test vectors 18 19 - y-coordinate of the public key is small. [OK] ECDH P256 test vectors 18 19 - y-coordinate of the public key is small. ... ECDH P256 test vectors 19 20 - y-coordinate of the public key is small. [OK] ECDH P256 test vectors 19 20 - y-coordinate of the public key is small. ... ECDH P256 test vectors 20 21 - y-coordinate of the public key is small. [OK] ECDH P256 test vectors 20 21 - y-coordinate of the public key is small. ... ECDH P256 test vectors 21 22 - y-coordinate of the public key is large. [OK] ECDH P256 test vectors 21 22 - y-coordinate of the public key is large. ... ECDH P256 test vectors 22 23 - y-coordinate of the public key is large. [OK] ECDH P256 test vectors 22 23 - y-coordinate of the public key is large. ... ECDH P256 test vectors 23 24 - y-coordinate of the public key is large. [OK] ECDH P256 test vectors 23 24 - y-coordinate of the public key is large. ... ECDH P256 test vectors 24 25 - y-coordinate of the public key has many trailing 1's. [OK] ECDH P256 test vectors 24 25 - y-coordinate of the public key has many trailing 1's. ... ECDH P256 test vectors 25 26 - y-coordinate of the public key has many trailing 1's. [OK] ECDH P256 test vectors 25 26 - y-coordinate of the public key has many trailing 1's. ... ECDH P256 test vectors 26 27 - y-coordinate of the public key has many trailing 1's. [OK] ECDH P256 test vectors 26 27 - y-coordinate of the public key has many trailing 1's. ... ECDH P256 test vectors 27 28 - y-coordinate of the public key has many trailing 0's. [OK] ECDH P256 test vectors 27 28 - y-coordinate of the public key has many trailing 0's. ... ECDH P256 test vectors 28 29 - y-coordinate of the public key has many trailing 0's. [OK] ECDH P256 test vectors 28 29 - y-coordinate of the public key has many trailing 0's. ... ECDH P256 test vectors 29 30 - y-coordinate of the public key has many trailing 0's. [OK] ECDH P256 test vectors 29 30 - y-coordinate of the public key has many trailing 0's. ... ECDH P256 test vectors 30 31 - edge cases for ephemeral key. [OK] ECDH P256 test vectors 30 31 - edge cases for ephemeral key. ... ECDH P256 test vectors 31 32 - edge cases for ephemeral key. [OK] ECDH P256 test vectors 31 32 - edge cases for ephemeral key. ... ECDH P256 test vectors 32 33 - edge cases for ephemeral key. [OK] ECDH P256 test vectors 32 33 - edge cases for ephemeral key. ... ECDH P256 test vectors 33 34 - edge cases for ephemeral key. [OK] ECDH P256 test vectors 33 34 - edge cases for ephemeral key. ... ECDH P256 test vectors 34 35 - edge cases for ephemeral key. [OK] ECDH P256 test vectors 34 35 - edge cases for ephemeral key. ... ECDH P256 test vectors 35 36 - edge cases for ephemeral key. [OK] ECDH P256 test vectors 35 36 - edge cases for ephemeral key. ... ECDH P256 test vectors 36 37 - edge cases for ephemeral key. [OK] ECDH P256 test vectors 36 37 - edge cases for ephemeral key. ... ECDH P256 test vectors 37 38 - edge cases for ephemeral key. [OK] ECDH P256 test vectors 37 38 - edge cases for ephemeral key. ... ECDH P256 test vectors 38 39 - edge cases for ephemeral key. [OK] ECDH P256 test vectors 38 39 - edge cases for ephemeral key. ... ECDH P256 test vectors 39 40 - edge cases for ephemeral key. [OK] ECDH P256 test vectors 39 40 - edge cases for ephemeral key. ... ECDH P256 test vectors 40 41 - edge cases for ephemeral key. [OK] ECDH P256 test vectors 40 41 - edge cases for ephemeral key. ... ECDH P256 test vectors 41 42 - edge cases for ephemeral key. [OK] ECDH P256 test vectors 41 42 - edge cases for ephemeral key. ... ECDH P256 test vectors 42 43 - edge cases for ephemeral key. [OK] ECDH P256 test vectors 42 43 - edge cases for ephemeral key. ... ECDH P256 test vectors 43 44 - edge cases for ephemeral key. [OK] ECDH P256 test vectors 43 44 - edge cases for ephemeral key. ... ECDH P256 test vectors 44 45 - edge cases for ephemeral key. [OK] ECDH P256 test vectors 44 45 - edge cases for ephemeral key. ... ECDH P256 test vectors 45 46 - edge cases for ephemeral key. [OK] ECDH P256 test vectors 45 46 - edge cases for ephemeral key. ... ECDH P256 test vectors 46 47 - edge cases for ephemeral key. [OK] ECDH P256 test vectors 46 47 - edge cases for ephemeral key. ... ECDH P256 test vectors 47 48 - edge cases for ephemeral key. [OK] ECDH P256 test vectors 47 48 - edge cases for ephemeral key. ... ECDH P256 test vectors 48 49 - edge cases for ephemeral key. [OK] ECDH P256 test vectors 48 49 - edge cases for ephemeral key. ... ECDH P256 test vectors 49 50 - edge cases for ephemeral key. [OK] ECDH P256 test vectors 49 50 - edge cases for ephemeral key. ... ECDH P256 test vectors 50 51 - edge cases for ephemeral key. [OK] ECDH P256 test vectors 50 51 - edge cases for ephemeral key. ... ECDH P256 test vectors 51 52 - edge cases for ephemeral key. [OK] ECDH P256 test vectors 51 52 - edge cases for ephemeral key. ... ECDH P256 test vectors 52 53 - edge cases for ephemeral key. [OK] ECDH P256 test vectors 52 53 - edge cases for ephemeral key. ... ECDH P256 test vectors 53 54 - edge cases for ephemeral key. [OK] ECDH P256 test vectors 53 54 - edge cases for ephemeral key. ... ECDH P256 test vectors 54 55 - edge cases for ephemeral key. [OK] ECDH P256 test vectors 54 55 - edge cases for ephemeral key. ... ECDH P256 test vectors 55 56 - edge cases for ephemeral key. [OK] ECDH P256 test vectors 55 56 - edge cases for ephemeral key. ... ECDH P256 test vectors 56 57 - edge cases for ephemeral key. [OK] ECDH P256 test vectors 56 57 - edge cases for ephemeral key. ... ECDH P256 test vectors 57 58 - edge cases for ephemeral key. [OK] ECDH P256 test vectors 57 58 - edge cases for ephemeral key. ... ECDH P256 test vectors 58 59 - point with coordinate x = 0. [OK] ECDH P256 test vectors 58 59 - point with coordinate x = 0. ... ECDH P256 test vectors 59 60 - point with coordinate x = 0. [OK] ECDH P256 test vectors 59 60 - point with coordinate x = 0. ... ECDH P256 test vectors 60 61 - point with coordinate x = 0. [OK] ECDH P256 test vectors 60 61 - point with coordinate x = 0. ... ECDH P256 test vectors 61 62 - point with coordinate x = 0 in left to right addition chain. [OK] ECDH P256 test vectors 61 62 - point with coordinate x = 0 in left to right addition chain. ... ECDH P256 test vectors 62 63 - point with coordinate x = 0 in left to right addition chain. [OK] ECDH P256 test vectors 62 63 - point with coordinate x = 0 in left to right addition chain. ... ECDH P256 test vectors 63 64 - point with coordinate x = 0 in left to right addition chain. [OK] ECDH P256 test vectors 63 64 - point with coordinate x = 0 in left to right addition chain. ... ECDH P256 test vectors 64 65 - point with coordinate x = 0 in left to right addition chain. [OK] ECDH P256 test vectors 64 65 - point with coordinate x = 0 in left to right addition chain. ... ECDH P256 test vectors 65 66 - point with coordinate x = 0 in left to right addition chain. [OK] ECDH P256 test vectors 65 66 - point with coordinate x = 0 in left to right addition chain. ... ECDH P256 test vectors 66 67 - point with coordinate x = 0 in left to right addition chain. [OK] ECDH P256 test vectors 66 67 - point with coordinate x = 0 in left to right addition chain. ... ECDH P256 test vectors 67 68 - point with coordinate x = 0 in left to right addition chain. [OK] ECDH P256 test vectors 67 68 - point with coordinate x = 0 in left to right addition chain. ... ECDH P256 test vectors 68 69 - point with coordinate x = 0 in left to right addition chain. [OK] ECDH P256 test vectors 68 69 - point with coordinate x = 0 in left to right addition chain. ... ECDH P256 test vectors 69 70 - point with coordinate x = 0 in left to right addition chain. [OK] ECDH P256 test vectors 69 70 - point with coordinate x = 0 in left to right addition chain. ... ECDH P256 test vectors 70 71 - point with coordinate x = 0 in left to right addition chain. [OK] ECDH P256 test vectors 70 71 - point with coordinate x = 0 in left to right addition chain. ... ECDH P256 test vectors 71 72 - point with coordinate x = 0 in left to right addition chain. [OK] ECDH P256 test vectors 71 72 - point with coordinate x = 0 in left to right addition chain. ... ECDH P256 test vectors 72 73 - point with coordinate x = 0 in left to right addition chain. [OK] ECDH P256 test vectors 72 73 - point with coordinate x = 0 in left to right addition chain. ... ECDH P256 test vectors 73 74 - point with coordinate x = 0 in left to right addition chain. [OK] ECDH P256 test vectors 73 74 - point with coordinate x = 0 in left to right addition chain. ... ECDH P256 test vectors 74 75 - point with coordinate x = 0 in left to right addition chain. [OK] ECDH P256 test vectors 74 75 - point with coordinate x = 0 in left to right addition chain. ... ECDH P256 test vectors 75 76 - point with coordinate x = 0 in left to right addition chain. [OK] ECDH P256 test vectors 75 76 - point with coordinate x = 0 in left to right addition chain. ... ECDH P256 test vectors 76 77 - point with coordinate x = 0 in left to right addition chain. [OK] ECDH P256 test vectors 76 77 - point with coordinate x = 0 in left to right addition chain. ... ECDH P256 test vectors 77 78 - point with coordinate x = 0 in precomputation or right to left addition chain. [OK] ECDH P256 test vectors 77 78 - point with coordinate x = 0 in precomputation or right to left addition chain. ... ECDH P256 test vectors 78 79 - point with coordinate x = 0 in precomputation or right to left addition chain. [OK] ECDH P256 test vectors 78 79 - point with coordinate x = 0 in precomputation or right to left addition chain. ... ECDH P256 test vectors 79 80 - point with coordinate x = 0 in precomputation or right to left addition chain. [OK] ECDH P256 test vectors 79 80 - point with coordinate x = 0 in precomputation or right to left addition chain. ... ECDH P256 test vectors 80 81 - point with coordinate x = 0 in precomputation or right to left addition chain. [OK] ECDH P256 test vectors 80 81 - point with coordinate x = 0 in precomputation or right to left addition chain. ... ECDH P256 test vectors 81 82 - point with coordinate x = 0 in precomputation or right to left addition chain. [OK] ECDH P256 test vectors 81 82 - point with coordinate x = 0 in precomputation or right to left addition chain. ... ECDH P256 test vectors 82 83 - point with coordinate x = 0 in precomputation or right to left addition chain. [OK] ECDH P256 test vectors 82 83 - point with coordinate x = 0 in precomputation or right to left addition chain. ... ECDH P256 test vectors 83 84 - point with coordinate x = 0 in right to left addition chain. [OK] ECDH P256 test vectors 83 84 - point with coordinate x = 0 in right to left addition chain. ... ECDH P256 test vectors 84 85 - point with coordinate x = 0 in right to left addition chain. [OK] ECDH P256 test vectors 84 85 - point with coordinate x = 0 in right to left addition chain. ... ECDH P256 test vectors 85 86 - point with coordinate x = 0 in right to left addition chain. [OK] ECDH P256 test vectors 85 86 - point with coordinate x = 0 in right to left addition chain. ... ECDH P256 test vectors 86 87 - point with coordinate x = 0 in right to left addition chain. [OK] ECDH P256 test vectors 86 87 - point with coordinate x = 0 in right to left addition chain. ... ECDH P256 test vectors 87 88 - point with coordinate x = 0 in right to left addition chain. [OK] ECDH P256 test vectors 87 88 - point with coordinate x = 0 in right to left addition chain. ... ECDH P256 test vectors 88 89 - point with coordinate y = 1. [OK] ECDH P256 test vectors 88 89 - point with coordinate y = 1. ... ECDH P256 test vectors 89 90 - point with coordinate y = 1. [OK] ECDH P256 test vectors 89 90 - point with coordinate y = 1. ... ECDH P256 test vectors 90 91 - point with coordinate y = 1. [OK] ECDH P256 test vectors 90 91 - point with coordinate y = 1. ... ECDH P256 test vectors 91 92 - point with coordinate y = 1. [OK] ECDH P256 test vectors 91 92 - point with coordinate y = 1. ... ECDH P256 test vectors 92 93 - point with coordinate y = 1. [OK] ECDH P256 test vectors 92 93 - point with coordinate y = 1. ... ECDH P256 test vectors 93 94 - point with coordinate y = 1. [OK] ECDH P256 test vectors 93 94 - point with coordinate y = 1. ... ECDH P256 test vectors 94 95 - point with coordinate y = 1. [OK] ECDH P256 test vectors 94 95 - point with coordinate y = 1. ... ECDH P256 test vectors 95 96 - point with coordinate y = 1. [OK] ECDH P256 test vectors 95 96 - point with coordinate y = 1. ... ECDH P256 test vectors 96 97 - point with coordinate y = 1. [OK] ECDH P256 test vectors 96 97 - point with coordinate y = 1. ... ECDH P256 test vectors 97 98 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P256 test vectors 97 98 - point with coordinate y = 1 in left to right addition chain. ... ECDH P256 test vectors 98 99 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P256 test vectors 98 99 - point with coordinate y = 1 in left to right addition chain. ... ECDH P256 test vectors 99 100 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P256 test vectors 99 100 - point with coordinate y = 1 in left to right addition chain. ... ECDH P256 test vectors 100 101 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P256 test vectors 100 101 - point with coordinate y = 1 in left to right addition chain. ... ECDH P256 test vectors 101 102 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P256 test vectors 101 102 - point with coordinate y = 1 in left to right addition chain. ... ECDH P256 test vectors 102 103 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P256 test vectors 102 103 - point with coordinate y = 1 in left to right addition chain. ... ECDH P256 test vectors 103 104 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P256 test vectors 103 104 - point with coordinate y = 1 in left to right addition chain. ... ECDH P256 test vectors 104 105 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P256 test vectors 104 105 - point with coordinate y = 1 in left to right addition chain. ... ECDH P256 test vectors 105 106 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P256 test vectors 105 106 - point with coordinate y = 1 in left to right addition chain. ... ECDH P256 test vectors 106 107 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P256 test vectors 106 107 - point with coordinate y = 1 in left to right addition chain. ... ECDH P256 test vectors 107 108 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P256 test vectors 107 108 - point with coordinate y = 1 in left to right addition chain. ... ECDH P256 test vectors 108 109 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P256 test vectors 108 109 - point with coordinate y = 1 in left to right addition chain. ... ECDH P256 test vectors 109 110 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P256 test vectors 109 110 - point with coordinate y = 1 in left to right addition chain. ... ECDH P256 test vectors 110 111 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P256 test vectors 110 111 - point with coordinate y = 1 in left to right addition chain. ... ECDH P256 test vectors 111 112 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P256 test vectors 111 112 - point with coordinate y = 1 in left to right addition chain. ... ECDH P256 test vectors 112 113 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P256 test vectors 112 113 - point with coordinate y = 1 in left to right addition chain. ... ECDH P256 test vectors 113 114 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P256 test vectors 113 114 - point with coordinate y = 1 in left to right addition chain. ... ECDH P256 test vectors 114 115 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P256 test vectors 114 115 - point with coordinate y = 1 in left to right addition chain. ... ECDH P256 test vectors 115 116 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P256 test vectors 115 116 - point with coordinate y = 1 in left to right addition chain. ... ECDH P256 test vectors 116 117 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P256 test vectors 116 117 - point with coordinate y = 1 in left to right addition chain. ... ECDH P256 test vectors 117 118 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P256 test vectors 117 118 - point with coordinate y = 1 in left to right addition chain. ... ECDH P256 test vectors 118 119 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P256 test vectors 118 119 - point with coordinate y = 1 in left to right addition chain. ... ECDH P256 test vectors 119 120 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P256 test vectors 119 120 - point with coordinate y = 1 in left to right addition chain. ... ECDH P256 test vectors 120 121 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P256 test vectors 120 121 - point with coordinate y = 1 in left to right addition chain. ... ECDH P256 test vectors 121 122 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P256 test vectors 121 122 - point with coordinate y = 1 in left to right addition chain. ... ECDH P256 test vectors 122 123 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P256 test vectors 122 123 - point with coordinate y = 1 in left to right addition chain. ... ECDH P256 test vectors 123 124 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P256 test vectors 123 124 - point with coordinate y = 1 in left to right addition chain. ... ECDH P256 test vectors 124 125 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P256 test vectors 124 125 - point with coordinate y = 1 in left to right addition chain. ... ECDH P256 test vectors 125 126 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P256 test vectors 125 126 - point with coordinate y = 1 in left to right addition chain. ... ECDH P256 test vectors 126 127 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P256 test vectors 126 127 - point with coordinate y = 1 in left to right addition chain. ... ECDH P256 test vectors 127 128 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P256 test vectors 127 128 - point with coordinate y = 1 in left to right addition chain. ... ECDH P256 test vectors 128 129 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P256 test vectors 128 129 - point with coordinate y = 1 in left to right addition chain. ... ECDH P256 test vectors 129 130 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P256 test vectors 129 130 - point with coordinate y = 1 in left to right addition chain. ... ECDH P256 test vectors 130 131 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P256 test vectors 130 131 - point with coordinate y = 1 in left to right addition chain. ... ECDH P256 test vectors 131 132 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P256 test vectors 131 132 - point with coordinate y = 1 in left to right addition chain. ... ECDH P256 test vectors 132 133 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P256 test vectors 132 133 - point with coordinate y = 1 in left to right addition chain. ... ECDH P256 test vectors 133 134 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P256 test vectors 133 134 - point with coordinate y = 1 in left to right addition chain. ... ECDH P256 test vectors 134 135 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P256 test vectors 134 135 - point with coordinate y = 1 in left to right addition chain. ... ECDH P256 test vectors 135 136 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P256 test vectors 135 136 - point with coordinate y = 1 in left to right addition chain. ... ECDH P256 test vectors 136 137 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P256 test vectors 136 137 - point with coordinate y = 1 in left to right addition chain. ... ECDH P256 test vectors 137 138 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P256 test vectors 137 138 - point with coordinate y = 1 in left to right addition chain. ... ECDH P256 test vectors 138 139 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P256 test vectors 138 139 - point with coordinate y = 1 in left to right addition chain. ... ECDH P256 test vectors 139 140 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P256 test vectors 139 140 - point with coordinate y = 1 in left to right addition chain. ... ECDH P256 test vectors 140 141 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P256 test vectors 140 141 - point with coordinate y = 1 in left to right addition chain. ... ECDH P256 test vectors 141 142 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P256 test vectors 141 142 - point with coordinate y = 1 in left to right addition chain. ... ECDH P256 test vectors 142 143 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P256 test vectors 142 143 - point with coordinate y = 1 in left to right addition chain. ... ECDH P256 test vectors 143 144 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P256 test vectors 143 144 - point with coordinate y = 1 in left to right addition chain. ... ECDH P256 test vectors 144 145 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P256 test vectors 144 145 - point with coordinate y = 1 in left to right addition chain. ... ECDH P256 test vectors 145 146 - point with coordinate y = 1 in precomputation or right to left addition chain. [OK] ECDH P256 test vectors 145 146 - point with coordinate y = 1 in precomputation or right to left addition chain. ... ECDH P256 test vectors 146 147 - point with coordinate y = 1 in precomputation or right to left addition chain. [OK] ECDH P256 test vectors 146 147 - point with coordinate y = 1 in precomputation or right to left addition chain. ... ECDH P256 test vectors 147 148 - point with coordinate y = 1 in precomputation or right to left addition chain. [OK] ECDH P256 test vectors 147 148 - point with coordinate y = 1 in precomputation or right to left addition chain. ... ECDH P256 test vectors 148 149 - point with coordinate y = 1 in precomputation or right to left addition chain. [OK] ECDH P256 test vectors 148 149 - point with coordinate y = 1 in precomputation or right to left addition chain. ... ECDH P256 test vectors 149 150 - point with coordinate y = 1 in precomputation or right to left addition chain. [OK] ECDH P256 test vectors 149 150 - point with coordinate y = 1 in precomputation or right to left addition chain. ... ECDH P256 test vectors 150 151 - point with coordinate y = 1 in precomputation or right to left addition chain. [OK] ECDH P256 test vectors 150 151 - point with coordinate y = 1 in precomputation or right to left addition chain. ... ECDH P256 test vectors 151 152 - point with coordinate y = 1 in precomputation or right to left addition chain. [OK] ECDH P256 test vectors 151 152 - point with coordinate y = 1 in precomputation or right to left addition chain. ... ECDH P256 test vectors 152 153 - point with coordinate y = 1 in precomputation or right to left addition chain. [OK] ECDH P256 test vectors 152 153 - point with coordinate y = 1 in precomputation or right to left addition chain. ... ECDH P256 test vectors 153 154 - point with coordinate y = 1 in precomputation or right to left addition chain. [OK] ECDH P256 test vectors 153 154 - point with coordinate y = 1 in precomputation or right to left addition chain. ... ECDH P256 test vectors 154 155 - point with coordinate y = 1 in precomputation or right to left addition chain. [OK] ECDH P256 test vectors 154 155 - point with coordinate y = 1 in precomputation or right to left addition chain. ... ECDH P256 test vectors 155 156 - point with coordinate y = 1 in precomputation or right to left addition chain. [OK] ECDH P256 test vectors 155 156 - point with coordinate y = 1 in precomputation or right to left addition chain. ... ECDH P256 test vectors 156 157 - point with coordinate y = 1 in precomputation or right to left addition chain. [OK] ECDH P256 test vectors 156 157 - point with coordinate y = 1 in precomputation or right to left addition chain. ... ECDH P256 test vectors 157 158 - point with coordinate y = 1 in precomputation or right to left addition chain. [OK] ECDH P256 test vectors 157 158 - point with coordinate y = 1 in precomputation or right to left addition chain. ... ECDH P256 test vectors 158 159 - point with coordinate y = 1 in precomputation or right to left addition chain. [OK] ECDH P256 test vectors 158 159 - point with coordinate y = 1 in precomputation or right to left addition chain. ... ECDH P256 test vectors 159 160 - point with coordinate y = 1 in precomputation or right to left addition chain. [OK] ECDH P256 test vectors 159 160 - point with coordinate y = 1 in precomputation or right to left addition chain. ... ECDH P256 test vectors 160 161 - point with coordinate y = 1 in right to left addition chain. [OK] ECDH P256 test vectors 160 161 - point with coordinate y = 1 in right to left addition chain. ... ECDH P256 test vectors 161 162 - point with coordinate y = 1 in right to left addition chain. [OK] ECDH P256 test vectors 161 162 - point with coordinate y = 1 in right to left addition chain. ... ECDH P256 test vectors 162 163 - point with coordinate y = 1 in right to left addition chain. [OK] ECDH P256 test vectors 162 163 - point with coordinate y = 1 in right to left addition chain. ... ECDH P256 test vectors 163 164 - point with coordinate y = 1 in right to left addition chain. [OK] ECDH P256 test vectors 163 164 - point with coordinate y = 1 in right to left addition chain. ... ECDH P256 test vectors 164 165 - point with coordinate y = 1 in right to left addition chain. [OK] ECDH P256 test vectors 164 165 - point with coordinate y = 1 in right to left addition chain. ... ECDH P256 test vectors 165 166 - point with coordinate y = 1 in right to left addition chain. [OK] ECDH P256 test vectors 165 166 - point with coordinate y = 1 in right to left addition chain. ... ECDH P256 test vectors 166 167 - point with coordinate y = 1 in right to left addition chain. [OK] ECDH P256 test vectors 166 167 - point with coordinate y = 1 in right to left addition chain. ... ECDH P256 test vectors 167 168 - point with coordinate y = 1 in right to left addition chain. [OK] ECDH P256 test vectors 167 168 - point with coordinate y = 1 in right to left addition chain. ... ECDH P256 test vectors 168 169 - point with coordinate y = 1 in right to left addition chain. [OK] ECDH P256 test vectors 168 169 - point with coordinate y = 1 in right to left addition chain. ... ECDH P256 test vectors 169 170 - point with coordinate y = 1 in right to left addition chain. [OK] ECDH P256 test vectors 169 170 - point with coordinate y = 1 in right to left addition chain. ... ECDH P256 test vectors 170 171 - point with coordinate y = 1 in right to left addition chain. [OK] ECDH P256 test vectors 170 171 - point with coordinate y = 1 in right to left addition chain. ... ECDH P256 test vectors 171 172 - point with coordinate y = 1 in right to left addition chain. [OK] ECDH P256 test vectors 171 172 - point with coordinate y = 1 in right to left addition chain. ... ECDH P256 test vectors 172 173 - point with coordinate y = 1 in right to left addition chain. [OK] ECDH P256 test vectors 172 173 - point with coordinate y = 1 in right to left addition chain. ... ECDH P256 test vectors 173 174 - point with coordinate y = 1 in right to left addition chain. [OK] ECDH P256 test vectors 173 174 - point with coordinate y = 1 in right to left addition chain. ... ECDH P256 test vectors 174 175 - point with coordinate y = 1 in right to left addition chain. [OK] ECDH P256 test vectors 174 175 - point with coordinate y = 1 in right to left addition chain. ... ECDH P256 test vectors 175 176 - edge case private key. [OK] ECDH P256 test vectors 175 176 - edge case private key. ... ECDH P256 test vectors 176 177 - edge case private key. [OK] ECDH P256 test vectors 176 177 - edge case private key. ... ECDH P256 test vectors 177 178 - edge case private key. [OK] ECDH P256 test vectors 177 178 - edge case private key. ... ECDH P256 test vectors 178 179 - edge case private key. [OK] ECDH P256 test vectors 178 179 - edge case private key. ... ECDH P256 test vectors 179 180 - edge case private key. [OK] ECDH P256 test vectors 179 180 - edge case private key. ... ECDH P256 test vectors 180 181 - edge case private key. [OK] ECDH P256 test vectors 180 181 - edge case private key. ... ECDH P256 test vectors 181 182 - edge case private key. [OK] ECDH P256 test vectors 181 182 - edge case private key. ... ECDH P256 test vectors 182 183 - edge case private key. [OK] ECDH P256 test vectors 182 183 - edge case private key. ... ECDH P256 test vectors 183 184 - edge case private key. [OK] ECDH P256 test vectors 183 184 - edge case private key. ... ECDH P256 test vectors 184 185 - edge case private key. [OK] ECDH P256 test vectors 184 185 - edge case private key. ... ECDH P256 test vectors 185 186 - edge case private key. [OK] ECDH P256 test vectors 185 186 - edge case private key. ... ECDH P256 test vectors 186 187 - edge case private key. [OK] ECDH P256 test vectors 186 187 - edge case private key. ... ECDH P256 test vectors 187 188 - edge case private key. [OK] ECDH P256 test vectors 187 188 - edge case private key. ... ECDH P256 test vectors 188 189 - edge case private key. [OK] ECDH P256 test vectors 188 189 - edge case private key. ... ECDH P256 test vectors 189 190 - edge case private key. [OK] ECDH P256 test vectors 189 190 - edge case private key. ... ECDH P256 test vectors 190 191 - CVE-2017-8932. [OK] ECDH P256 test vectors 190 191 - CVE-2017-8932. ... ECDH P256 test vectors 191 192 - CVE-2017-8932. [OK] ECDH P256 test vectors 191 192 - CVE-2017-8932. ... ECDH P256 test vectors 192 193 - point is not on curve. [OK] ECDH P256 test vectors 192 193 - point is not on curve. ... ECDH P256 test vectors 193 194 - point is not on curve. [OK] ECDH P256 test vectors 193 194 - point is not on curve. ... ECDH P256 test vectors 194 195 - point is not on curve. [OK] ECDH P256 test vectors 194 195 - point is not on curve. ... ECDH P256 test vectors 195 196 - point is not on curve. [OK] ECDH P256 test vectors 195 196 - point is not on curve. ... ECDH P256 test vectors 196 197 - point is not on curve. [OK] ECDH P256 test vectors 196 197 - point is not on curve. ... ECDH P256 test vectors 197 198 - point is not on curve. [OK] ECDH P256 test vectors 197 198 - point is not on curve. ... ECDH P256 test vectors 198 199 - point is not on curve. [OK] ECDH P256 test vectors 198 199 - point is not on curve. ... ECDH P256 test vectors 199 200 - point is not on curve. [OK] ECDH P256 test vectors 199 200 - point is not on curve. ... ECDH P256 test vectors 200 201 - point is not on curve. [OK] ECDH P256 test vectors 200 201 - point is not on curve. ... ECDH P256 test vectors 201 202 - point is not on curve. [OK] ECDH P256 test vectors 201 202 - point is not on curve. ... ECDH P256 test vectors 202 203 - point is not on curve. [OK] ECDH P256 test vectors 202 203 - point is not on curve. ... ECDH P256 test vectors 203 204 - point is not on curve. [OK] ECDH P256 test vectors 203 204 - point is not on curve. ... ECDH P256 test vectors 204 205 - point is not on curve. [OK] ECDH P256 test vectors 204 205 - point is not on curve. ... ECDH P256 test vectors 205 206 - point is not on curve. [OK] ECDH P256 test vectors 205 206 - point is not on curve. ... ECDH P256 test vectors 206 207 - point is not on curve. [OK] ECDH P256 test vectors 206 207 - point is not on curve. ... ECDH P256 test vectors 207 208 - point is not on curve. [OK] ECDH P256 test vectors 207 208 - point is not on curve. ... ECDH P256 test vectors 208 209 - . [OK] ECDH P256 test vectors 208 209 - . ... ECDH P256 test vectors 209 210 - public point not on curve. [OK] ECDH P256 test vectors 209 210 - public point not on curve. ... ECDH P256 test vectors 210 211 - public point = (0,0). [OK] ECDH P256 test vectors 210 211 - public point = (0,0). ... ECDH P256 test vectors 211 224 - using secp224r1. [OK] ECDH P256 test vectors 211 224 - using secp224r1. ... ECDH P256 test vectors 212 225 - using secp256k1. [OK] ECDH P256 test vectors 212 225 - using secp256k1. ... ECDH P256 test vectors 213 228 - Public key uses wrong curve: secp224r1. [OK] ECDH P256 test vectors 213 228 - Public key uses wrong curve: secp224r1. ... ECDH P256 test vectors 214 229 - Public key uses wrong curve: secp384r1. [OK] ECDH P256 test vectors 214 229 - Public key uses wrong curve: secp384r1. ... ECDH P256 test vectors 215 230 - Public key uses wrong curve: secp521r1. [OK] ECDH P256 test vectors 215 230 - Public key uses wrong curve: secp521r1. ... ECDH P256 test vectors 216 231 - Public key uses wrong curve: secp256k1. [OK] ECDH P256 test vectors 216 231 - Public key uses wrong curve: secp256k1. ... ECDH P256 test vectors 217 232 - Public key uses wrong curve: secp224k1. [OK] ECDH P256 test vectors 217 232 - Public key uses wrong curve: secp224k1. ... ECDH P256 test vectors 218 233 - Public key uses wrong curve: brainpoolP224r1. [OK] ECDH P256 test vectors 218 233 - Public key uses wrong curve: brainpoolP224r1. ... ECDH P256 test vectors 219 234 - Public key uses wrong curve: brainpoolP256r1. [OK] ECDH P256 test vectors 219 234 - Public key uses wrong curve: brainpoolP256r1. ... ECDH P256 test vectors 220 235 - Public key uses wrong curve: brainpoolP320r1. [OK] ECDH P256 test vectors 220 235 - Public key uses wrong curve: brainpoolP320r1. ... ECDH P256 test vectors 221 236 - Public key uses wrong curve: brainpoolP384r1. [OK] ECDH P256 test vectors 221 236 - Public key uses wrong curve: brainpoolP384r1. ... ECDH P256 test vectors 222 237 - Public key uses wrong curve: brainpoolP512r1. [OK] ECDH P256 test vectors 222 237 - Public key uses wrong curve: brainpoolP512r1. ... ECDH P256 test vectors 223 238 - Public key uses wrong curve: brainpoolP224t1. [OK] ECDH P256 test vectors 223 238 - Public key uses wrong curve: brainpoolP224t1. ... ECDH P256 test vectors 224 239 - Public key uses wrong curve: brainpoolP256t1. [OK] ECDH P256 test vectors 224 239 - Public key uses wrong curve: brainpoolP256t1. ... ECDH P256 test vectors 225 240 - Public key uses wrong curve: brainpoolP320t1. [OK] ECDH P256 test vectors 225 240 - Public key uses wrong curve: brainpoolP320t1. ... ECDH P256 test vectors 226 241 - Public key uses wrong curve: brainpoolP384t1. [OK] ECDH P256 test vectors 226 241 - Public key uses wrong curve: brainpoolP384t1. ... ECDH P256 test vectors 227 242 - Public key uses wrong curve: brainpoolP512t1. [OK] ECDH P256 test vectors 227 242 - Public key uses wrong curve: brainpoolP512t1. ... ECDH P256 test vectors 228 243 - invalid public key. [OK] ECDH P256 test vectors 228 243 - invalid public key. ... ECDH P256 test vectors 229 244 - public key is a low order point on twist. [OK] ECDH P256 test vectors 229 244 - public key is a low order point on twist. ... ECDH P256 test vectors 230 245 - public key is a low order point on twist. [OK] ECDH P256 test vectors 230 245 - public key is a low order point on twist. ... ECDH P256 test vectors 231 246 - public key is a low order point on twist. [OK] ECDH P256 test vectors 231 246 - public key is a low order point on twist. ... ECDH P256 test vectors 232 247 - public key is a low order point on twist. [OK] ECDH P256 test vectors 232 247 - public key is a low order point on twist. ... ECDH P256 test vectors 233 248 - public key is a low order point on twist. [OK] ECDH P256 test vectors 233 248 - public key is a low order point on twist. ... ECDH P256 test vectors 234 249 - public key is a low order point on twist. [OK] ECDH P256 test vectors 234 249 - public key is a low order point on twist. ... ECDSA P256 test vectors (SHA256) 0 1 - signature malleability. [OK] ECDSA P256 test vectors (SHA256) 0 1 - signature malleability. ... ECDSA P256 test vectors (SHA256) 1 2 - Legacy:ASN encoding of s misses leading 0. [OK] ECDSA P256 test vectors (SHA256) 1 2 - Legacy:ASN encoding of s misses leading 0. ... ECDSA P256 test vectors (SHA256) 2 3 - valid. [OK] ECDSA P256 test vectors (SHA256) 2 3 - valid. ... ECDSA P256 test vectors (SHA256) 3 4 - long form encoding of length of sequence. [OK] ECDSA P256 test vectors (SHA256) 3 4 - long form encoding of length of sequence. ... ECDSA P256 test vectors (SHA256) 4 5 - length of sequence contains leading 0. [OK] ECDSA P256 test vectors (SHA256) 4 5 - length of sequence contains leading 0. ... ECDSA P256 test vectors (SHA256) 5 6 - wrong length of sequence. [OK] ECDSA P256 test vectors (SHA256) 5 6 - wrong length of sequence. ... ECDSA P256 test vectors (SHA256) 6 7 - wrong length of sequence. [OK] ECDSA P256 test vectors (SHA256) 6 7 - wrong length of sequence. ... ECDSA P256 test vectors (SHA256) 7 8 - uint32 overflow in length of sequence. [OK] ECDSA P256 test vectors (SHA256) 7 8 - uint32 overflow in length of sequence. ... ECDSA P256 test vectors (SHA256) 8 9 - uint64 overflow in length of sequence. [OK] ECDSA P256 test vectors (SHA256) 8 9 - uint64 overflow in length of sequence. ... ECDSA P256 test vectors (SHA256) 9 10 - length of sequence = 2**31 - 1. [OK] ECDSA P256 test vectors (SHA256) 9 10 - length of sequence = 2**31 - 1. ... ECDSA P256 test vectors (SHA256) 10 11 - length of sequence = 2**32 - 1. [OK] ECDSA P256 test vectors (SHA256) 10 11 - length of sequence = 2**32 - 1. ... ECDSA P256 test vectors (SHA256) 11 12 - length of sequence = 2**40 - 1. [OK] ECDSA P256 test vectors (SHA256) 11 12 - length of sequence = 2**40 - 1. ... ECDSA P256 test vectors (SHA256) 12 13 - length of sequence = 2**64 - 1. [OK] ECDSA P256 test vectors (SHA256) 12 13 - length of sequence = 2**64 - 1. ... ECDSA P256 test vectors (SHA256) 13 14 - incorrect length of sequence. [OK] ECDSA P256 test vectors (SHA256) 13 14 - incorrect length of sequence. ... ECDSA P256 test vectors (SHA256) 14 15 - indefinite length without termination. [OK] ECDSA P256 test vectors (SHA256) 14 15 - indefinite length without termination. ... ECDSA P256 test vectors (SHA256) 15 16 - indefinite length without termination. [OK] ECDSA P256 test vectors (SHA256) 15 16 - indefinite length without termination. ... ECDSA P256 test vectors (SHA256) 16 17 - indefinite length without termination. [OK] ECDSA P256 test vectors (SHA256) 16 17 - indefinite length without termination. ... ECDSA P256 test vectors (SHA256) 17 18 - removing sequence. [OK] ECDSA P256 test vectors (SHA256) 17 18 - removing sequence. ... ECDSA P256 test vectors (SHA256) 18 19 - lonely sequence tag. [OK] ECDSA P256 test vectors (SHA256) 18 19 - lonely sequence tag. ... ECDSA P256 test vectors (SHA256) 19 20 - appending 0's to sequence. [OK] ECDSA P256 test vectors (SHA256) 19 20 - appending 0's to sequence. ... ECDSA P256 test vectors (SHA256) 20 21 - prepending 0's to sequence. [OK] ECDSA P256 test vectors (SHA256) 20 21 - prepending 0's to sequence. ... ECDSA P256 test vectors (SHA256) 21 22 - appending unused 0's to sequence. [OK] ECDSA P256 test vectors (SHA256) 21 22 - appending unused 0's to sequence. ... ECDSA P256 test vectors (SHA256) 22 23 - appending null value to sequence. [OK] ECDSA P256 test vectors (SHA256) 22 23 - appending null value to sequence. ... ECDSA P256 test vectors (SHA256) 23 24 - including garbage. [OK] ECDSA P256 test vectors (SHA256) 23 24 - including garbage. ... ECDSA P256 test vectors (SHA256) 24 25 - including garbage. [OK] ECDSA P256 test vectors (SHA256) 24 25 - including garbage. ... ECDSA P256 test vectors (SHA256) 25 26 - including garbage. [OK] ECDSA P256 test vectors (SHA256) 25 26 - including garbage. ... ECDSA P256 test vectors (SHA256) 26 27 - including garbage. [OK] ECDSA P256 test vectors (SHA256) 26 27 - including garbage. ... ECDSA P256 test vectors (SHA256) 27 28 - including garbage. [OK] ECDSA P256 test vectors (SHA256) 27 28 - including garbage. ... ECDSA P256 test vectors (SHA256) 28 29 - including garbage. [OK] ECDSA P256 test vectors (SHA256) 28 29 - including garbage. ... ECDSA P256 test vectors (SHA256) 29 30 - including garbage. [OK] ECDSA P256 test vectors (SHA256) 29 30 - including garbage. ... ECDSA P256 test vectors (SHA256) 30 31 - including garbage. [OK] ECDSA P256 test vectors (SHA256) 30 31 - including garbage. ... ECDSA P256 test vectors (SHA256) 31 32 - including garbage. [OK] ECDSA P256 test vectors (SHA256) 31 32 - including garbage. ... ECDSA P256 test vectors (SHA256) 32 33 - including undefined tags. [OK] ECDSA P256 test vectors (SHA256) 32 33 - including undefined tags. ... ECDSA P256 test vectors (SHA256) 33 34 - including undefined tags. [OK] ECDSA P256 test vectors (SHA256) 33 34 - including undefined tags. ... ECDSA P256 test vectors (SHA256) 34 35 - including undefined tags. [OK] ECDSA P256 test vectors (SHA256) 34 35 - including undefined tags. ... ECDSA P256 test vectors (SHA256) 35 36 - including undefined tags. [OK] ECDSA P256 test vectors (SHA256) 35 36 - including undefined tags. ... ECDSA P256 test vectors (SHA256) 36 37 - including undefined tags. [OK] ECDSA P256 test vectors (SHA256) 36 37 - including undefined tags. ... ECDSA P256 test vectors (SHA256) 37 38 - including undefined tags. [OK] ECDSA P256 test vectors (SHA256) 37 38 - including undefined tags. ... ECDSA P256 test vectors (SHA256) 38 39 - truncated length of sequence. [OK] ECDSA P256 test vectors (SHA256) 38 39 - truncated length of sequence. ... ECDSA P256 test vectors (SHA256) 39 40 - using composition with indefinite length. [OK] ECDSA P256 test vectors (SHA256) 39 40 - using composition with indefinite length. ... ECDSA P256 test vectors (SHA256) 40 41 - using composition with indefinite length. [OK] ECDSA P256 test vectors (SHA256) 40 41 - using composition with indefinite length. ... ECDSA P256 test vectors (SHA256) 41 42 - using composition with indefinite length. [OK] ECDSA P256 test vectors (SHA256) 41 42 - using composition with indefinite length. ... ECDSA P256 test vectors (SHA256) 42 43 - using composition with wrong tag. [OK] ECDSA P256 test vectors (SHA256) 42 43 - using composition with wrong tag. ... ECDSA P256 test vectors (SHA256) 43 44 - using composition with wrong tag. [OK] ECDSA P256 test vectors (SHA256) 43 44 - using composition with wrong tag. ... ECDSA P256 test vectors (SHA256) 44 45 - using composition with wrong tag. [OK] ECDSA P256 test vectors (SHA256) 44 45 - using composition with wrong tag. ... ECDSA P256 test vectors (SHA256) 45 46 - Replacing sequence with NULL. [OK] ECDSA P256 test vectors (SHA256) 45 46 - Replacing sequence with NULL. ... ECDSA P256 test vectors (SHA256) 46 47 - changing tag value of sequence. [OK] ECDSA P256 test vectors (SHA256) 46 47 - changing tag value of sequence. ... ECDSA P256 test vectors (SHA256) 47 48 - changing tag value of sequence. [OK] ECDSA P256 test vectors (SHA256) 47 48 - changing tag value of sequence. ... ECDSA P256 test vectors (SHA256) 48 49 - changing tag value of sequence. [OK] ECDSA P256 test vectors (SHA256) 48 49 - changing tag value of sequence. ... ECDSA P256 test vectors (SHA256) 49 50 - changing tag value of sequence. [OK] ECDSA P256 test vectors (SHA256) 49 50 - changing tag value of sequence. ... ECDSA P256 test vectors (SHA256) 50 51 - changing tag value of sequence. [OK] ECDSA P256 test vectors (SHA256) 50 51 - changing tag value of sequence. ... ECDSA P256 test vectors (SHA256) 51 52 - dropping value of sequence. [OK] ECDSA P256 test vectors (SHA256) 51 52 - dropping value of sequence. ... ECDSA P256 test vectors (SHA256) 52 53 - using composition for sequence. [OK] ECDSA P256 test vectors (SHA256) 52 53 - using composition for sequence. ... ECDSA P256 test vectors (SHA256) 53 54 - truncated sequence. [OK] ECDSA P256 test vectors (SHA256) 53 54 - truncated sequence. ... ECDSA P256 test vectors (SHA256) 54 55 - truncated sequence. [OK] ECDSA P256 test vectors (SHA256) 54 55 - truncated sequence. ... ECDSA P256 test vectors (SHA256) 55 56 - indefinite length. [OK] ECDSA P256 test vectors (SHA256) 55 56 - indefinite length. ... ECDSA P256 test vectors (SHA256) 56 57 - indefinite length with truncated delimiter. [OK] ECDSA P256 test vectors (SHA256) 56 57 - indefinite length with truncated delimiter. ... ECDSA P256 test vectors (SHA256) 57 58 - indefinite length with additional element. [OK] ECDSA P256 test vectors (SHA256) 57 58 - indefinite length with additional element. ... ECDSA P256 test vectors (SHA256) 58 59 - indefinite length with truncated element. [OK] ECDSA P256 test vectors (SHA256) 58 59 - indefinite length with truncated element. ... ECDSA P256 test vectors (SHA256) 59 60 - indefinite length with garbage. [OK] ECDSA P256 test vectors (SHA256) 59 60 - indefinite length with garbage. ... ECDSA P256 test vectors (SHA256) 60 61 - indefinite length with nonempty EOC. [OK] ECDSA P256 test vectors (SHA256) 60 61 - indefinite length with nonempty EOC. ... ECDSA P256 test vectors (SHA256) 61 62 - prepend empty sequence. [OK] ECDSA P256 test vectors (SHA256) 61 62 - prepend empty sequence. ... ECDSA P256 test vectors (SHA256) 62 63 - append empty sequence. [OK] ECDSA P256 test vectors (SHA256) 62 63 - append empty sequence. ... ECDSA P256 test vectors (SHA256) 63 64 - append garbage with high tag number. [OK] ECDSA P256 test vectors (SHA256) 63 64 - append garbage with high tag number. ... ECDSA P256 test vectors (SHA256) 64 65 - sequence of sequence. [OK] ECDSA P256 test vectors (SHA256) 64 65 - sequence of sequence. ... ECDSA P256 test vectors (SHA256) 65 66 - truncated sequence: removed last 1 elements. [OK] ECDSA P256 test vectors (SHA256) 65 66 - truncated sequence: removed last 1 elements. ... ECDSA P256 test vectors (SHA256) 66 67 - repeating element in sequence. [OK] ECDSA P256 test vectors (SHA256) 66 67 - repeating element in sequence. ... ECDSA P256 test vectors (SHA256) 67 68 - long form encoding of length of integer. [OK] ECDSA P256 test vectors (SHA256) 67 68 - long form encoding of length of integer. ... ECDSA P256 test vectors (SHA256) 68 69 - long form encoding of length of integer. [OK] ECDSA P256 test vectors (SHA256) 68 69 - long form encoding of length of integer. ... ECDSA P256 test vectors (SHA256) 69 70 - length of integer contains leading 0. [OK] ECDSA P256 test vectors (SHA256) 69 70 - length of integer contains leading 0. ... ECDSA P256 test vectors (SHA256) 70 71 - length of integer contains leading 0. [OK] ECDSA P256 test vectors (SHA256) 70 71 - length of integer contains leading 0. ... ECDSA P256 test vectors (SHA256) 71 72 - wrong length of integer. [OK] ECDSA P256 test vectors (SHA256) 71 72 - wrong length of integer. ... ECDSA P256 test vectors (SHA256) 72 73 - wrong length of integer. [OK] ECDSA P256 test vectors (SHA256) 72 73 - wrong length of integer. ... ECDSA P256 test vectors (SHA256) 73 74 - wrong length of integer. [OK] ECDSA P256 test vectors (SHA256) 73 74 - wrong length of integer. ... ECDSA P256 test vectors (SHA256) 74 75 - wrong length of integer. [OK] ECDSA P256 test vectors (SHA256) 74 75 - wrong length of integer. ... ECDSA P256 test vectors (SHA256) 75 76 - uint32 overflow in length of integer. [OK] ECDSA P256 test vectors (SHA256) 75 76 - uint32 overflow in length of integer. ... ECDSA P256 test vectors (SHA256) 76 77 - uint32 overflow in length of integer. [OK] ECDSA P256 test vectors (SHA256) 76 77 - uint32 overflow in length of integer. ... ECDSA P256 test vectors (SHA256) 77 78 - uint64 overflow in length of integer. [OK] ECDSA P256 test vectors (SHA256) 77 78 - uint64 overflow in length of integer. ... ECDSA P256 test vectors (SHA256) 78 79 - uint64 overflow in length of integer. [OK] ECDSA P256 test vectors (SHA256) 78 79 - uint64 overflow in length of integer. ... ECDSA P256 test vectors (SHA256) 79 80 - length of integer = 2**31 - 1. [OK] ECDSA P256 test vectors (SHA256) 79 80 - length of integer = 2**31 - 1. ... ECDSA P256 test vectors (SHA256) 80 81 - length of integer = 2**31 - 1. [OK] ECDSA P256 test vectors (SHA256) 80 81 - length of integer = 2**31 - 1. ... ECDSA P256 test vectors (SHA256) 81 82 - length of integer = 2**32 - 1. [OK] ECDSA P256 test vectors (SHA256) 81 82 - length of integer = 2**32 - 1. ... ECDSA P256 test vectors (SHA256) 82 83 - length of integer = 2**32 - 1. [OK] ECDSA P256 test vectors (SHA256) 82 83 - length of integer = 2**32 - 1. ... ECDSA P256 test vectors (SHA256) 83 84 - length of integer = 2**40 - 1. [OK] ECDSA P256 test vectors (SHA256) 83 84 - length of integer = 2**40 - 1. ... ECDSA P256 test vectors (SHA256) 84 85 - length of integer = 2**40 - 1. [OK] ECDSA P256 test vectors (SHA256) 84 85 - length of integer = 2**40 - 1. ... ECDSA P256 test vectors (SHA256) 85 86 - length of integer = 2**64 - 1. [OK] ECDSA P256 test vectors (SHA256) 85 86 - length of integer = 2**64 - 1. ... ECDSA P256 test vectors (SHA256) 86 87 - length of integer = 2**64 - 1. [OK] ECDSA P256 test vectors (SHA256) 86 87 - length of integer = 2**64 - 1. ... ECDSA P256 test vectors (SHA256) 87 88 - incorrect length of integer. [OK] ECDSA P256 test vectors (SHA256) 87 88 - incorrect length of integer. ... ECDSA P256 test vectors (SHA256) 88 89 - incorrect length of integer. [OK] ECDSA P256 test vectors (SHA256) 88 89 - incorrect length of integer. ... ECDSA P256 test vectors (SHA256) 89 90 - removing integer. [OK] ECDSA P256 test vectors (SHA256) 89 90 - removing integer. ... ECDSA P256 test vectors (SHA256) 90 91 - lonely integer tag. [OK] ECDSA P256 test vectors (SHA256) 90 91 - lonely integer tag. ... ECDSA P256 test vectors (SHA256) 91 92 - lonely integer tag. [OK] ECDSA P256 test vectors (SHA256) 91 92 - lonely integer tag. ... ECDSA P256 test vectors (SHA256) 92 93 - appending 0's to integer. [OK] ECDSA P256 test vectors (SHA256) 92 93 - appending 0's to integer. ... ECDSA P256 test vectors (SHA256) 93 94 - appending 0's to integer. [OK] ECDSA P256 test vectors (SHA256) 93 94 - appending 0's to integer. ... ECDSA P256 test vectors (SHA256) 94 95 - prepending 0's to integer. [OK] ECDSA P256 test vectors (SHA256) 94 95 - prepending 0's to integer. ... ECDSA P256 test vectors (SHA256) 95 96 - prepending 0's to integer. [OK] ECDSA P256 test vectors (SHA256) 95 96 - prepending 0's to integer. ... ECDSA P256 test vectors (SHA256) 96 97 - appending unused 0's to integer. [OK] ECDSA P256 test vectors (SHA256) 96 97 - appending unused 0's to integer. ... ECDSA P256 test vectors (SHA256) 97 98 - appending null value to integer. [OK] ECDSA P256 test vectors (SHA256) 97 98 - appending null value to integer. ... ECDSA P256 test vectors (SHA256) 98 99 - appending null value to integer. [OK] ECDSA P256 test vectors (SHA256) 98 99 - appending null value to integer. ... ECDSA P256 test vectors (SHA256) 99 100 - truncated length of integer. [OK] ECDSA P256 test vectors (SHA256) 99 100 - truncated length of integer. ... ECDSA P256 test vectors (SHA256) 100 101 - truncated length of integer. [OK] ECDSA P256 test vectors (SHA256) 100 101 - truncated length of integer. ... ECDSA P256 test vectors (SHA256) 101 102 - Replacing integer with NULL. [OK] ECDSA P256 test vectors (SHA256) 101 102 - Replacing integer with NULL. ... ECDSA P256 test vectors (SHA256) 102 103 - Replacing integer with NULL. [OK] ECDSA P256 test vectors (SHA256) 102 103 - Replacing integer with NULL. ... ECDSA P256 test vectors (SHA256) 103 104 - changing tag value of integer. [OK] ECDSA P256 test vectors (SHA256) 103 104 - changing tag value of integer. ... ECDSA P256 test vectors (SHA256) 104 105 - changing tag value of integer. [OK] ECDSA P256 test vectors (SHA256) 104 105 - changing tag value of integer. ... ECDSA P256 test vectors (SHA256) 105 106 - changing tag value of integer. [OK] ECDSA P256 test vectors (SHA256) 105 106 - changing tag value of integer. ... ECDSA P256 test vectors (SHA256) 106 107 - changing tag value of integer. [OK] ECDSA P256 test vectors (SHA256) 106 107 - changing tag value of integer. ... ECDSA P256 test vectors (SHA256) 107 108 - changing tag value of integer. [OK] ECDSA P256 test vectors (SHA256) 107 108 - changing tag value of integer. ... ECDSA P256 test vectors (SHA256) 108 109 - changing tag value of integer. [OK] ECDSA P256 test vectors (SHA256) 108 109 - changing tag value of integer. ... ECDSA P256 test vectors (SHA256) 109 110 - changing tag value of integer. [OK] ECDSA P256 test vectors (SHA256) 109 110 - changing tag value of integer. ... ECDSA P256 test vectors (SHA256) 110 111 - changing tag value of integer. [OK] ECDSA P256 test vectors (SHA256) 110 111 - changing tag value of integer. ... ECDSA P256 test vectors (SHA256) 111 112 - changing tag value of integer. [OK] ECDSA P256 test vectors (SHA256) 111 112 - changing tag value of integer. ... ECDSA P256 test vectors (SHA256) 112 113 - changing tag value of integer. [OK] ECDSA P256 test vectors (SHA256) 112 113 - changing tag value of integer. ... ECDSA P256 test vectors (SHA256) 113 114 - dropping value of integer. [OK] ECDSA P256 test vectors (SHA256) 113 114 - dropping value of integer. ... ECDSA P256 test vectors (SHA256) 114 115 - dropping value of integer. [OK] ECDSA P256 test vectors (SHA256) 114 115 - dropping value of integer. ... ECDSA P256 test vectors (SHA256) 115 116 - using composition for integer. [OK] ECDSA P256 test vectors (SHA256) 115 116 - using composition for integer. ... ECDSA P256 test vectors (SHA256) 116 117 - using composition for integer. [OK] ECDSA P256 test vectors (SHA256) 116 117 - using composition for integer. ... ECDSA P256 test vectors (SHA256) 117 118 - modify first byte of integer. [OK] ECDSA P256 test vectors (SHA256) 117 118 - modify first byte of integer. ... ECDSA P256 test vectors (SHA256) 118 119 - modify first byte of integer. [OK] ECDSA P256 test vectors (SHA256) 118 119 - modify first byte of integer. ... ECDSA P256 test vectors (SHA256) 119 120 - modify last byte of integer. [OK] ECDSA P256 test vectors (SHA256) 119 120 - modify last byte of integer. ... ECDSA P256 test vectors (SHA256) 120 121 - modify last byte of integer. [OK] ECDSA P256 test vectors (SHA256) 120 121 - modify last byte of integer. ... ECDSA P256 test vectors (SHA256) 121 122 - truncated integer. [OK] ECDSA P256 test vectors (SHA256) 121 122 - truncated integer. ... ECDSA P256 test vectors (SHA256) 122 123 - truncated integer. [OK] ECDSA P256 test vectors (SHA256) 122 123 - truncated integer. ... ECDSA P256 test vectors (SHA256) 123 124 - truncated integer. [OK] ECDSA P256 test vectors (SHA256) 123 124 - truncated integer. ... ECDSA P256 test vectors (SHA256) 124 125 - leading ff in integer. [OK] ECDSA P256 test vectors (SHA256) 124 125 - leading ff in integer. ... ECDSA P256 test vectors (SHA256) 125 126 - leading ff in integer. [OK] ECDSA P256 test vectors (SHA256) 125 126 - leading ff in integer. ... ECDSA P256 test vectors (SHA256) 126 127 - replaced integer by infinity. [OK] ECDSA P256 test vectors (SHA256) 126 127 - replaced integer by infinity. ... ECDSA P256 test vectors (SHA256) 127 128 - replaced integer by infinity. [OK] ECDSA P256 test vectors (SHA256) 127 128 - replaced integer by infinity. ... ECDSA P256 test vectors (SHA256) 128 129 - replacing integer with zero. [OK] ECDSA P256 test vectors (SHA256) 128 129 - replacing integer with zero. ... ECDSA P256 test vectors (SHA256) 129 130 - replacing integer with zero. [OK] ECDSA P256 test vectors (SHA256) 129 130 - replacing integer with zero. ... ECDSA P256 test vectors (SHA256) 130 131 - Modified r or s, e.g. by adding or subtracting the order of the group. [OK] ECDSA P256 test vectors (SHA256) 130 131 - Modified r or s, e.g. by adding or subtracting the order of the group. ... ECDSA P256 test vectors (SHA256) 131 132 - Modified r or s, e.g. by adding or subtracting the order of the group. [OK] ECDSA P256 test vectors (SHA256) 131 132 - Modified r or s, e.g. by adding or subtracting the order of the group. ... ECDSA P256 test vectors (SHA256) 132 133 - Modified r or s, e.g. by adding or subtracting the order of the group. [OK] ECDSA P256 test vectors (SHA256) 132 133 - Modified r or s, e.g. by adding or subtracting the order of the group. ... ECDSA P256 test vectors (SHA256) 133 134 - Modified r or s, e.g. by adding or subtracting the order of the group. [OK] ECDSA P256 test vectors (SHA256) 133 134 - Modified r or s, e.g. by adding or subtracting the order of the group. ... ECDSA P256 test vectors (SHA256) 134 135 - Modified r or s, e.g. by adding or subtracting the order of the group. [OK] ECDSA P256 test vectors (SHA256) 134 135 - Modified r or s, e.g. by adding or subtracting the order of the group. ... ECDSA P256 test vectors (SHA256) 135 136 - Modified r or s, e.g. by adding or subtracting the order of the group. [OK] ECDSA P256 test vectors (SHA256) 135 136 - Modified r or s, e.g. by adding or subtracting the order of the group. ... ECDSA P256 test vectors (SHA256) 136 137 - Modified r or s, e.g. by adding or subtracting the order of the group. [OK] ECDSA P256 test vectors (SHA256) 136 137 - Modified r or s, e.g. by adding or subtracting the order of the group. ... ECDSA P256 test vectors (SHA256) 137 138 - Modified r or s, e.g. by adding or subtracting the order of the group. [OK] ECDSA P256 test vectors (SHA256) 137 138 - Modified r or s, e.g. by adding or subtracting the order of the group. ... ECDSA P256 test vectors (SHA256) 138 139 - Modified r or s, e.g. by adding or subtracting the order of the group. [OK] ECDSA P256 test vectors (SHA256) 138 139 - Modified r or s, e.g. by adding or subtracting the order of the group. ... ECDSA P256 test vectors (SHA256) 139 140 - Modified r or s, e.g. by adding or subtracting the order of the group. [OK] ECDSA P256 test vectors (SHA256) 139 140 - Modified r or s, e.g. by adding or subtracting the order of the group. ... ECDSA P256 test vectors (SHA256) 140 141 - Modified r or s, e.g. by adding or subtracting the order of the group. [OK] ECDSA P256 test vectors (SHA256) 140 141 - Modified r or s, e.g. by adding or subtracting the order of the group. ... ECDSA P256 test vectors (SHA256) 141 142 - Modified r or s, e.g. by adding or subtracting the order of the group. [OK] ECDSA P256 test vectors (SHA256) 141 142 - Modified r or s, e.g. by adding or subtracting the order of the group. ... ECDSA P256 test vectors (SHA256) 142 143 - Modified r or s, e.g. by adding or subtracting the order of the group. [OK] ECDSA P256 test vectors (SHA256) 142 143 - Modified r or s, e.g. by adding or subtracting the order of the group. ... ECDSA P256 test vectors (SHA256) 143 144 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 143 144 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 144 145 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 144 145 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 145 146 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 145 146 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 146 147 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 146 147 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 147 148 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 147 148 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 148 149 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 148 149 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 149 150 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 149 150 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 150 151 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 150 151 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 151 152 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 151 152 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 152 153 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 152 153 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 153 154 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 153 154 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 154 155 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 154 155 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 155 156 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 155 156 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 156 157 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 156 157 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 157 158 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 157 158 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 158 159 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 158 159 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 159 160 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 159 160 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 160 161 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 160 161 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 161 162 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 161 162 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 162 163 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 162 163 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 163 164 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 163 164 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 164 165 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 164 165 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 165 166 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 165 166 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 166 167 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 166 167 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 167 168 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 167 168 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 168 169 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 168 169 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 169 170 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 169 170 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 170 171 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 170 171 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 171 172 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 171 172 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 172 173 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 172 173 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 173 174 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 173 174 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 174 175 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 174 175 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 175 176 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 175 176 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 176 177 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 176 177 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 177 178 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 177 178 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 178 179 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 178 179 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 179 180 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 179 180 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 180 181 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 180 181 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 181 182 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 181 182 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 182 183 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 182 183 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 183 184 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 183 184 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 184 185 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 184 185 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 185 186 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 185 186 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 186 187 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 186 187 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 187 188 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 187 188 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 188 189 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 188 189 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 189 190 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 189 190 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 190 191 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 190 191 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 191 192 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 191 192 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 192 193 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 192 193 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 193 194 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 193 194 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 194 195 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 194 195 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 195 196 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 195 196 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 196 197 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 196 197 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 197 198 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 197 198 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 198 199 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 198 199 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 199 200 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 199 200 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 200 201 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 200 201 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 201 202 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 201 202 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 202 203 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 202 203 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 203 204 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 203 204 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 204 205 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 204 205 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 205 206 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 205 206 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 206 207 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 206 207 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 207 208 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 207 208 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 208 209 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 208 209 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 209 210 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 209 210 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 210 211 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 210 211 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 211 212 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 211 212 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 212 213 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 212 213 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 213 214 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 213 214 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 214 215 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 214 215 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 215 216 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 215 216 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 216 217 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 216 217 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 217 218 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 217 218 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 218 219 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 218 219 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 219 220 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 219 220 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 220 221 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 220 221 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 221 222 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 221 222 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 222 223 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA256) 222 223 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA256) 223 224 - Signature encoding contains wrong types. [OK] ECDSA P256 test vectors (SHA256) 223 224 - Signature encoding contains wrong types. ... ECDSA P256 test vectors (SHA256) 224 225 - Signature encoding contains wrong types. [OK] ECDSA P256 test vectors (SHA256) 224 225 - Signature encoding contains wrong types. ... ECDSA P256 test vectors (SHA256) 225 226 - Signature encoding contains wrong types. [OK] ECDSA P256 test vectors (SHA256) 225 226 - Signature encoding contains wrong types. ... ECDSA P256 test vectors (SHA256) 226 227 - Signature encoding contains wrong types. [OK] ECDSA P256 test vectors (SHA256) 226 227 - Signature encoding contains wrong types. ... ECDSA P256 test vectors (SHA256) 227 228 - Signature encoding contains wrong types. [OK] ECDSA P256 test vectors (SHA256) 227 228 - Signature encoding contains wrong types. ... ECDSA P256 test vectors (SHA256) 228 229 - Signature encoding contains wrong types. [OK] ECDSA P256 test vectors (SHA256) 228 229 - Signature encoding contains wrong types. ... ECDSA P256 test vectors (SHA256) 229 230 - Edge case for Shamir multiplication. [OK] ECDSA P256 test vectors (SHA256) 229 230 - Edge case for Shamir multiplication. ... ECDSA P256 test vectors (SHA256) 230 231 - special case hash. [OK] ECDSA P256 test vectors (SHA256) 230 231 - special case hash. ... ECDSA P256 test vectors (SHA256) 231 232 - special case hash. [OK] ECDSA P256 test vectors (SHA256) 231 232 - special case hash. ... ECDSA P256 test vectors (SHA256) 232 233 - special case hash. [OK] ECDSA P256 test vectors (SHA256) 232 233 - special case hash. ... ECDSA P256 test vectors (SHA256) 233 234 - special case hash. [OK] ECDSA P256 test vectors (SHA256) 233 234 - special case hash. ... ECDSA P256 test vectors (SHA256) 234 235 - special case hash. [OK] ECDSA P256 test vectors (SHA256) 234 235 - special case hash. ... ECDSA P256 test vectors (SHA256) 235 236 - special case hash. [OK] ECDSA P256 test vectors (SHA256) 235 236 - special case hash. ... ECDSA P256 test vectors (SHA256) 236 237 - special case hash. [OK] ECDSA P256 test vectors (SHA256) 236 237 - special case hash. ... ECDSA P256 test vectors (SHA256) 237 238 - special case hash. [OK] ECDSA P256 test vectors (SHA256) 237 238 - special case hash. ... ECDSA P256 test vectors (SHA256) 238 239 - special case hash. [OK] ECDSA P256 test vectors (SHA256) 238 239 - special case hash. ... ECDSA P256 test vectors (SHA256) 239 240 - special case hash. [OK] ECDSA P256 test vectors (SHA256) 239 240 - special case hash. ... ECDSA P256 test vectors (SHA256) 240 241 - special case hash. [OK] ECDSA P256 test vectors (SHA256) 240 241 - special case hash. ... ECDSA P256 test vectors (SHA256) 241 242 - special case hash. [OK] ECDSA P256 test vectors (SHA256) 241 242 - special case hash. ... ECDSA P256 test vectors (SHA256) 242 243 - special case hash. [OK] ECDSA P256 test vectors (SHA256) 242 243 - special case hash. ... ECDSA P256 test vectors (SHA256) 243 244 - special case hash. [OK] ECDSA P256 test vectors (SHA256) 243 244 - special case hash. ... ECDSA P256 test vectors (SHA256) 244 245 - special case hash. [OK] ECDSA P256 test vectors (SHA256) 244 245 - special case hash. ... ECDSA P256 test vectors (SHA256) 245 246 - special case hash. [OK] ECDSA P256 test vectors (SHA256) 245 246 - special case hash. ... ECDSA P256 test vectors (SHA256) 246 247 - special case hash. [OK] ECDSA P256 test vectors (SHA256) 246 247 - special case hash. ... ECDSA P256 test vectors (SHA256) 247 248 - special case hash. [OK] ECDSA P256 test vectors (SHA256) 247 248 - special case hash. ... ECDSA P256 test vectors (SHA256) 248 249 - special case hash. [OK] ECDSA P256 test vectors (SHA256) 248 249 - special case hash. ... ECDSA P256 test vectors (SHA256) 249 250 - special case hash. [OK] ECDSA P256 test vectors (SHA256) 249 250 - special case hash. ... ECDSA P256 test vectors (SHA256) 250 251 - special case hash. [OK] ECDSA P256 test vectors (SHA256) 250 251 - special case hash. ... ECDSA P256 test vectors (SHA256) 251 252 - special case hash. [OK] ECDSA P256 test vectors (SHA256) 251 252 - special case hash. ... ECDSA P256 test vectors (SHA256) 252 253 - special case hash. [OK] ECDSA P256 test vectors (SHA256) 252 253 - special case hash. ... ECDSA P256 test vectors (SHA256) 253 254 - special case hash. [OK] ECDSA P256 test vectors (SHA256) 253 254 - special case hash. ... ECDSA P256 test vectors (SHA256) 254 255 - special case hash. [OK] ECDSA P256 test vectors (SHA256) 254 255 - special case hash. ... ECDSA P256 test vectors (SHA256) 255 256 - special case hash. [OK] ECDSA P256 test vectors (SHA256) 255 256 - special case hash. ... ECDSA P256 test vectors (SHA256) 256 257 - special case hash. [OK] ECDSA P256 test vectors (SHA256) 256 257 - special case hash. ... ECDSA P256 test vectors (SHA256) 257 258 - special case hash. [OK] ECDSA P256 test vectors (SHA256) 257 258 - special case hash. ... ECDSA P256 test vectors (SHA256) 258 259 - special case hash. [OK] ECDSA P256 test vectors (SHA256) 258 259 - special case hash. ... ECDSA P256 test vectors (SHA256) 259 260 - special case hash. [OK] ECDSA P256 test vectors (SHA256) 259 260 - special case hash. ... ECDSA P256 test vectors (SHA256) 260 261 - special case hash. [OK] ECDSA P256 test vectors (SHA256) 260 261 - special case hash. ... ECDSA P256 test vectors (SHA256) 261 262 - special case hash. [OK] ECDSA P256 test vectors (SHA256) 261 262 - special case hash. ... ECDSA P256 test vectors (SHA256) 262 263 - special case hash. [OK] ECDSA P256 test vectors (SHA256) 262 263 - special case hash. ... ECDSA P256 test vectors (SHA256) 263 264 - special case hash. [OK] ECDSA P256 test vectors (SHA256) 263 264 - special case hash. ... ECDSA P256 test vectors (SHA256) 264 265 - special case hash. [OK] ECDSA P256 test vectors (SHA256) 264 265 - special case hash. ... ECDSA P256 test vectors (SHA256) 265 266 - special case hash. [OK] ECDSA P256 test vectors (SHA256) 265 266 - special case hash. ... ECDSA P256 test vectors (SHA256) 266 267 - special case hash. [OK] ECDSA P256 test vectors (SHA256) 266 267 - special case hash. ... ECDSA P256 test vectors (SHA256) 267 268 - special case hash. [OK] ECDSA P256 test vectors (SHA256) 267 268 - special case hash. ... ECDSA P256 test vectors (SHA256) 268 269 - special case hash. [OK] ECDSA P256 test vectors (SHA256) 268 269 - special case hash. ... ECDSA P256 test vectors (SHA256) 269 270 - special case hash. [OK] ECDSA P256 test vectors (SHA256) 269 270 - special case hash. ... ECDSA P256 test vectors (SHA256) 270 271 - special case hash. [OK] ECDSA P256 test vectors (SHA256) 270 271 - special case hash. ... ECDSA P256 test vectors (SHA256) 271 272 - special case hash. [OK] ECDSA P256 test vectors (SHA256) 271 272 - special case hash. ... ECDSA P256 test vectors (SHA256) 272 273 - special case hash. [OK] ECDSA P256 test vectors (SHA256) 272 273 - special case hash. ... ECDSA P256 test vectors (SHA256) 273 274 - special case hash. [OK] ECDSA P256 test vectors (SHA256) 273 274 - special case hash. ... ECDSA P256 test vectors (SHA256) 274 275 - special case hash. [OK] ECDSA P256 test vectors (SHA256) 274 275 - special case hash. ... ECDSA P256 test vectors (SHA256) 275 276 - special case hash. [OK] ECDSA P256 test vectors (SHA256) 275 276 - special case hash. ... ECDSA P256 test vectors (SHA256) 276 277 - special case hash. [OK] ECDSA P256 test vectors (SHA256) 276 277 - special case hash. ... ECDSA P256 test vectors (SHA256) 277 278 - special case hash. [OK] ECDSA P256 test vectors (SHA256) 277 278 - special case hash. ... ECDSA P256 test vectors (SHA256) 278 279 - special case hash. [OK] ECDSA P256 test vectors (SHA256) 278 279 - special case hash. ... ECDSA P256 test vectors (SHA256) 279 280 - special case hash. [OK] ECDSA P256 test vectors (SHA256) 279 280 - special case hash. ... ECDSA P256 test vectors (SHA256) 280 281 - special case hash. [OK] ECDSA P256 test vectors (SHA256) 280 281 - special case hash. ... ECDSA P256 test vectors (SHA256) 281 282 - special case hash. [OK] ECDSA P256 test vectors (SHA256) 281 282 - special case hash. ... ECDSA P256 test vectors (SHA256) 282 283 - special case hash. [OK] ECDSA P256 test vectors (SHA256) 282 283 - special case hash. ... ECDSA P256 test vectors (SHA256) 283 284 - special case hash. [OK] ECDSA P256 test vectors (SHA256) 283 284 - special case hash. ... ECDSA P256 test vectors (SHA256) 284 285 - k*G has a large x-coordinate. [OK] ECDSA P256 test vectors (SHA256) 284 285 - k*G has a large x-coordinate. ... ECDSA P256 test vectors (SHA256) 285 286 - r too large. [OK] ECDSA P256 test vectors (SHA256) 285 286 - r too large. ... ECDSA P256 test vectors (SHA256) 286 287 - r,s are large. [OK] ECDSA P256 test vectors (SHA256) 286 287 - r,s are large. ... ECDSA P256 test vectors (SHA256) 287 288 - r and s^-1 have a large Hamming weight. [OK] ECDSA P256 test vectors (SHA256) 287 288 - r and s^-1 have a large Hamming weight. ... ECDSA P256 test vectors (SHA256) 288 289 - r and s^-1 have a large Hamming weight. [OK] ECDSA P256 test vectors (SHA256) 288 289 - r and s^-1 have a large Hamming weight. ... ECDSA P256 test vectors (SHA256) 289 290 - small r and s. [OK] ECDSA P256 test vectors (SHA256) 289 290 - small r and s. ... ECDSA P256 test vectors (SHA256) 290 291 - small r and s. [OK] ECDSA P256 test vectors (SHA256) 290 291 - small r and s. ... ECDSA P256 test vectors (SHA256) 291 292 - small r and s. [OK] ECDSA P256 test vectors (SHA256) 291 292 - small r and s. ... ECDSA P256 test vectors (SHA256) 292 293 - small r and s. [OK] ECDSA P256 test vectors (SHA256) 292 293 - small r and s. ... ECDSA P256 test vectors (SHA256) 293 294 - r is larger than n. [OK] ECDSA P256 test vectors (SHA256) 293 294 - r is larger than n. ... ECDSA P256 test vectors (SHA256) 294 295 - s is larger than n. [OK] ECDSA P256 test vectors (SHA256) 294 295 - s is larger than n. ... ECDSA P256 test vectors (SHA256) 295 296 - small r and s^-1. [OK] ECDSA P256 test vectors (SHA256) 295 296 - small r and s^-1. ... ECDSA P256 test vectors (SHA256) 296 297 - smallish r and s^-1. [OK] ECDSA P256 test vectors (SHA256) 296 297 - smallish r and s^-1. ... ECDSA P256 test vectors (SHA256) 297 298 - 100-bit r and small s^-1. [OK] ECDSA P256 test vectors (SHA256) 297 298 - 100-bit r and small s^-1. ... ECDSA P256 test vectors (SHA256) 298 299 - small r and 100 bit s^-1. [OK] ECDSA P256 test vectors (SHA256) 298 299 - small r and 100 bit s^-1. ... ECDSA P256 test vectors (SHA256) 299 300 - 100-bit r and s^-1. [OK] ECDSA P256 test vectors (SHA256) 299 300 - 100-bit r and s^-1. ... ECDSA P256 test vectors (SHA256) 300 301 - r and s^-1 are close to n. [OK] ECDSA P256 test vectors (SHA256) 300 301 - r and s^-1 are close to n. ... ECDSA P256 test vectors (SHA256) 301 302 - s == 1. [OK] ECDSA P256 test vectors (SHA256) 301 302 - s == 1. ... ECDSA P256 test vectors (SHA256) 302 303 - s == 0. [OK] ECDSA P256 test vectors (SHA256) 302 303 - s == 0. ... ECDSA P256 test vectors (SHA256) 303 304 - point at infinity during verify. [OK] ECDSA P256 test vectors (SHA256) 303 304 - point at infinity during verify. ... ECDSA P256 test vectors (SHA256) 304 305 - edge case for signature malleability. [OK] ECDSA P256 test vectors (SHA256) 304 305 - edge case for signature malleability. ... ECDSA P256 test vectors (SHA256) 305 306 - edge case for signature malleability. [OK] ECDSA P256 test vectors (SHA256) 305 306 - edge case for signature malleability. ... ECDSA P256 test vectors (SHA256) 306 307 - u1 == 1. [OK] ECDSA P256 test vectors (SHA256) 306 307 - u1 == 1. ... ECDSA P256 test vectors (SHA256) 307 308 - u1 == n - 1. [OK] ECDSA P256 test vectors (SHA256) 307 308 - u1 == n - 1. ... ECDSA P256 test vectors (SHA256) 308 309 - u2 == 1. [OK] ECDSA P256 test vectors (SHA256) 308 309 - u2 == 1. ... ECDSA P256 test vectors (SHA256) 309 310 - u2 == n - 1. [OK] ECDSA P256 test vectors (SHA256) 309 310 - u2 == n - 1. ... ECDSA P256 test vectors (SHA256) 310 311 - edge case for u1. [OK] ECDSA P256 test vectors (SHA256) 310 311 - edge case for u1. ... ECDSA P256 test vectors (SHA256) 311 312 - edge case for u1. [OK] ECDSA P256 test vectors (SHA256) 311 312 - edge case for u1. ... ECDSA P256 test vectors (SHA256) 312 313 - edge case for u1. [OK] ECDSA P256 test vectors (SHA256) 312 313 - edge case for u1. ... ECDSA P256 test vectors (SHA256) 313 314 - edge case for u1. [OK] ECDSA P256 test vectors (SHA256) 313 314 - edge case for u1. ... ECDSA P256 test vectors (SHA256) 314 315 - edge case for u1. [OK] ECDSA P256 test vectors (SHA256) 314 315 - edge case for u1. ... ECDSA P256 test vectors (SHA256) 315 316 - edge case for u1. [OK] ECDSA P256 test vectors (SHA256) 315 316 - edge case for u1. ... ECDSA P256 test vectors (SHA256) 316 317 - edge case for u1. [OK] ECDSA P256 test vectors (SHA256) 316 317 - edge case for u1. ... ECDSA P256 test vectors (SHA256) 317 318 - edge case for u1. [OK] ECDSA P256 test vectors (SHA256) 317 318 - edge case for u1. ... ECDSA P256 test vectors (SHA256) 318 319 - edge case for u1. [OK] ECDSA P256 test vectors (SHA256) 318 319 - edge case for u1. ... ECDSA P256 test vectors (SHA256) 319 320 - edge case for u1. [OK] ECDSA P256 test vectors (SHA256) 319 320 - edge case for u1. ... ECDSA P256 test vectors (SHA256) 320 321 - edge case for u1. [OK] ECDSA P256 test vectors (SHA256) 320 321 - edge case for u1. ... ECDSA P256 test vectors (SHA256) 321 322 - edge case for u1. [OK] ECDSA P256 test vectors (SHA256) 321 322 - edge case for u1. ... ECDSA P256 test vectors (SHA256) 322 323 - edge case for u1. [OK] ECDSA P256 test vectors (SHA256) 322 323 - edge case for u1. ... ECDSA P256 test vectors (SHA256) 323 324 - edge case for u1. [OK] ECDSA P256 test vectors (SHA256) 323 324 - edge case for u1. ... ECDSA P256 test vectors (SHA256) 324 325 - edge case for u2. [OK] ECDSA P256 test vectors (SHA256) 324 325 - edge case for u2. ... ECDSA P256 test vectors (SHA256) 325 326 - edge case for u2. [OK] ECDSA P256 test vectors (SHA256) 325 326 - edge case for u2. ... ECDSA P256 test vectors (SHA256) 326 327 - edge case for u2. [OK] ECDSA P256 test vectors (SHA256) 326 327 - edge case for u2. ... ECDSA P256 test vectors (SHA256) 327 328 - edge case for u2. [OK] ECDSA P256 test vectors (SHA256) 327 328 - edge case for u2. ... ECDSA P256 test vectors (SHA256) 328 329 - edge case for u2. [OK] ECDSA P256 test vectors (SHA256) 328 329 - edge case for u2. ... ECDSA P256 test vectors (SHA256) 329 330 - edge case for u2. [OK] ECDSA P256 test vectors (SHA256) 329 330 - edge case for u2. ... ECDSA P256 test vectors (SHA256) 330 331 - edge case for u2. [OK] ECDSA P256 test vectors (SHA256) 330 331 - edge case for u2. ... ECDSA P256 test vectors (SHA256) 331 332 - edge case for u2. [OK] ECDSA P256 test vectors (SHA256) 331 332 - edge case for u2. ... ECDSA P256 test vectors (SHA256) 332 333 - edge case for u2. [OK] ECDSA P256 test vectors (SHA256) 332 333 - edge case for u2. ... ECDSA P256 test vectors (SHA256) 333 334 - edge case for u2. [OK] ECDSA P256 test vectors (SHA256) 333 334 - edge case for u2. ... ECDSA P256 test vectors (SHA256) 334 335 - edge case for u2. [OK] ECDSA P256 test vectors (SHA256) 334 335 - edge case for u2. ... ECDSA P256 test vectors (SHA256) 335 336 - edge case for u2. [OK] ECDSA P256 test vectors (SHA256) 335 336 - edge case for u2. ... ECDSA P256 test vectors (SHA256) 336 337 - edge case for u2. [OK] ECDSA P256 test vectors (SHA256) 336 337 - edge case for u2. ... ECDSA P256 test vectors (SHA256) 337 338 - edge case for u2. [OK] ECDSA P256 test vectors (SHA256) 337 338 - edge case for u2. ... ECDSA P256 test vectors (SHA256) 338 339 - point duplication during verification. [OK] ECDSA P256 test vectors (SHA256) 338 339 - point duplication during verification. ... ECDSA P256 test vectors (SHA256) 339 340 - duplication bug. [OK] ECDSA P256 test vectors (SHA256) 339 340 - duplication bug. ... ECDSA P256 test vectors (SHA256) 340 341 - point with x-coordinate 0. [OK] ECDSA P256 test vectors (SHA256) 340 341 - point with x-coordinate 0. ... ECDSA P256 test vectors (SHA256) 341 342 - point with x-coordinate 0. [OK] ECDSA P256 test vectors (SHA256) 341 342 - point with x-coordinate 0. ... ECDSA P256 test vectors (SHA256) 342 343 - comparison with point at infinity . [OK] ECDSA P256 test vectors (SHA256) 342 343 - comparison with point at infinity . ... ECDSA P256 test vectors (SHA256) 343 344 - extreme value for k and edgecase s. [OK] ECDSA P256 test vectors (SHA256) 343 344 - extreme value for k and edgecase s. ... ECDSA P256 test vectors (SHA256) 344 345 - extreme value for k and s^-1. [OK] ECDSA P256 test vectors (SHA256) 344 345 - extreme value for k and s^-1. ... ECDSA P256 test vectors (SHA256) 345 346 - extreme value for k and s^-1. [OK] ECDSA P256 test vectors (SHA256) 345 346 - extreme value for k and s^-1. ... ECDSA P256 test vectors (SHA256) 346 347 - extreme value for k and s^-1. [OK] ECDSA P256 test vectors (SHA256) 346 347 - extreme value for k and s^-1. ... ECDSA P256 test vectors (SHA256) 347 348 - extreme value for k and s^-1. [OK] ECDSA P256 test vectors (SHA256) 347 348 - extreme value for k and s^-1. ... ECDSA P256 test vectors (SHA256) 348 349 - extreme value for k. [OK] ECDSA P256 test vectors (SHA256) 348 349 - extreme value for k. ... ECDSA P256 test vectors (SHA256) 349 350 - extreme value for k and edgecase s. [OK] ECDSA P256 test vectors (SHA256) 349 350 - extreme value for k and edgecase s. ... ECDSA P256 test vectors (SHA256) 350 351 - extreme value for k and s^-1. [OK] ECDSA P256 test vectors (SHA256) 350 351 - extreme value for k and s^-1. ... ECDSA P256 test vectors (SHA256) 351 352 - extreme value for k and s^-1. [OK] ECDSA P256 test vectors (SHA256) 351 352 - extreme value for k and s^-1. ... ECDSA P256 test vectors (SHA256) 352 353 - extreme value for k and s^-1. [OK] ECDSA P256 test vectors (SHA256) 352 353 - extreme value for k and s^-1. ... ECDSA P256 test vectors (SHA256) 353 354 - extreme value for k and s^-1. [OK] ECDSA P256 test vectors (SHA256) 353 354 - extreme value for k and s^-1. ... ECDSA P256 test vectors (SHA256) 354 355 - extreme value for k. [OK] ECDSA P256 test vectors (SHA256) 354 355 - extreme value for k. ... ECDSA P256 test vectors (SHA256) 355 356 - testing point duplication. [OK] ECDSA P256 test vectors (SHA256) 355 356 - testing point duplication. ... ECDSA P256 test vectors (SHA256) 356 357 - testing point duplication. [OK] ECDSA P256 test vectors (SHA256) 356 357 - testing point duplication. ... ECDSA P256 test vectors (SHA256) 357 358 - testing point duplication. [OK] ECDSA P256 test vectors (SHA256) 357 358 - testing point duplication. ... ECDSA P256 test vectors (SHA256) 358 359 - testing point duplication. [OK] ECDSA P256 test vectors (SHA256) 358 359 - testing point duplication. ... ECDSA P256 test vectors (SHA256) 359 360 - pseudorandom signature. [OK] ECDSA P256 test vectors (SHA256) 359 360 - pseudorandom signature. ... ECDSA P256 test vectors (SHA256) 360 361 - pseudorandom signature. [OK] ECDSA P256 test vectors (SHA256) 360 361 - pseudorandom signature. ... ECDSA P256 test vectors (SHA256) 361 362 - pseudorandom signature. [OK] ECDSA P256 test vectors (SHA256) 361 362 - pseudorandom signature. ... ECDSA P256 test vectors (SHA256) 362 363 - pseudorandom signature. [OK] ECDSA P256 test vectors (SHA256) 362 363 - pseudorandom signature. ... ECDSA P256 test vectors (SHA256) 363 364 - x-coordinate of the public key has many trailing 0's. [OK] ECDSA P256 test vectors (SHA256) 363 364 - x-coordinate of the public key has many trailing 0's. ... ECDSA P256 test vectors (SHA256) 364 365 - x-coordinate of the public key has many trailing 0's. [OK] ECDSA P256 test vectors (SHA256) 364 365 - x-coordinate of the public key has many trailing 0's. ... ECDSA P256 test vectors (SHA256) 365 366 - x-coordinate of the public key has many trailing 0's. [OK] ECDSA P256 test vectors (SHA256) 365 366 - x-coordinate of the public key has many trailing 0's. ... ECDSA P256 test vectors (SHA256) 366 367 - y-coordinate of the public key has many trailing 0's. [OK] ECDSA P256 test vectors (SHA256) 366 367 - y-coordinate of the public key has many trailing 0's. ... ECDSA P256 test vectors (SHA256) 367 368 - y-coordinate of the public key has many trailing 0's. [OK] ECDSA P256 test vectors (SHA256) 367 368 - y-coordinate of the public key has many trailing 0's. ... ECDSA P256 test vectors (SHA256) 368 369 - y-coordinate of the public key has many trailing 0's. [OK] ECDSA P256 test vectors (SHA256) 368 369 - y-coordinate of the public key has many trailing 0's. ... ECDSA P256 test vectors (SHA256) 369 370 - y-coordinate of the public key has many trailing 1's. [OK] ECDSA P256 test vectors (SHA256) 369 370 - y-coordinate of the public key has many trailing 1's. ... ECDSA P256 test vectors (SHA256) 370 371 - y-coordinate of the public key has many trailing 1's. [OK] ECDSA P256 test vectors (SHA256) 370 371 - y-coordinate of the public key has many trailing 1's. ... ECDSA P256 test vectors (SHA256) 371 372 - y-coordinate of the public key has many trailing 1's. [OK] ECDSA P256 test vectors (SHA256) 371 372 - y-coordinate of the public key has many trailing 1's. ... ECDSA P256 test vectors (SHA256) 372 373 - x-coordinate of the public key has many trailing 1's. [OK] ECDSA P256 test vectors (SHA256) 372 373 - x-coordinate of the public key has many trailing 1's. ... ECDSA P256 test vectors (SHA256) 373 374 - x-coordinate of the public key has many trailing 1's. [OK] ECDSA P256 test vectors (SHA256) 373 374 - x-coordinate of the public key has many trailing 1's. ... ECDSA P256 test vectors (SHA256) 374 375 - x-coordinate of the public key has many trailing 1's. [OK] ECDSA P256 test vectors (SHA256) 374 375 - x-coordinate of the public key has many trailing 1's. ... ECDSA P256 test vectors (SHA256) 375 376 - x-coordinate of the public key is large. [OK] ECDSA P256 test vectors (SHA256) 375 376 - x-coordinate of the public key is large. ... ECDSA P256 test vectors (SHA256) 376 377 - x-coordinate of the public key is large. [OK] ECDSA P256 test vectors (SHA256) 376 377 - x-coordinate of the public key is large. ... ECDSA P256 test vectors (SHA256) 377 378 - x-coordinate of the public key is large. [OK] ECDSA P256 test vectors (SHA256) 377 378 - x-coordinate of the public key is large. ... ECDSA P256 test vectors (SHA256) 378 379 - x-coordinate of the public key is small. [OK] ECDSA P256 test vectors (SHA256) 378 379 - x-coordinate of the public key is small. ... ECDSA P256 test vectors (SHA256) 379 380 - x-coordinate of the public key is small. [OK] ECDSA P256 test vectors (SHA256) 379 380 - x-coordinate of the public key is small. ... ECDSA P256 test vectors (SHA256) 380 381 - x-coordinate of the public key is small. [OK] ECDSA P256 test vectors (SHA256) 380 381 - x-coordinate of the public key is small. ... ECDSA P256 test vectors (SHA256) 381 382 - y-coordinate of the public key is small. [OK] ECDSA P256 test vectors (SHA256) 381 382 - y-coordinate of the public key is small. ... ECDSA P256 test vectors (SHA256) 382 383 - y-coordinate of the public key is small. [OK] ECDSA P256 test vectors (SHA256) 382 383 - y-coordinate of the public key is small. ... ECDSA P256 test vectors (SHA256) 383 384 - y-coordinate of the public key is small. [OK] ECDSA P256 test vectors (SHA256) 383 384 - y-coordinate of the public key is small. ... ECDSA P256 test vectors (SHA256) 384 385 - y-coordinate of the public key is large. [OK] ECDSA P256 test vectors (SHA256) 384 385 - y-coordinate of the public key is large. ... ECDSA P256 test vectors (SHA256) 385 386 - y-coordinate of the public key is large. [OK] ECDSA P256 test vectors (SHA256) 385 386 - y-coordinate of the public key is large. ... ECDSA P256 test vectors (SHA256) 386 387 - y-coordinate of the public key is large. [OK] ECDSA P256 test vectors (SHA256) 386 387 - y-coordinate of the public key is large. ... ECDSA P256 test vectors (SHA512) 0 1 - signature malleability. [OK] ECDSA P256 test vectors (SHA512) 0 1 - signature malleability. ... ECDSA P256 test vectors (SHA512) 1 2 - Legacy:ASN encoding of s misses leading 0. [OK] ECDSA P256 test vectors (SHA512) 1 2 - Legacy:ASN encoding of s misses leading 0. ... ECDSA P256 test vectors (SHA512) 2 3 - valid. [OK] ECDSA P256 test vectors (SHA512) 2 3 - valid. ... ECDSA P256 test vectors (SHA512) 3 4 - long form encoding of length of sequence. [OK] ECDSA P256 test vectors (SHA512) 3 4 - long form encoding of length of sequence. ... ECDSA P256 test vectors (SHA512) 4 5 - length of sequence contains leading 0. [OK] ECDSA P256 test vectors (SHA512) 4 5 - length of sequence contains leading 0. ... ECDSA P256 test vectors (SHA512) 5 6 - wrong length of sequence. [OK] ECDSA P256 test vectors (SHA512) 5 6 - wrong length of sequence. ... ECDSA P256 test vectors (SHA512) 6 7 - wrong length of sequence. [OK] ECDSA P256 test vectors (SHA512) 6 7 - wrong length of sequence. ... ECDSA P256 test vectors (SHA512) 7 8 - uint32 overflow in length of sequence. [OK] ECDSA P256 test vectors (SHA512) 7 8 - uint32 overflow in length of sequence. ... ECDSA P256 test vectors (SHA512) 8 9 - uint64 overflow in length of sequence. [OK] ECDSA P256 test vectors (SHA512) 8 9 - uint64 overflow in length of sequence. ... ECDSA P256 test vectors (SHA512) 9 10 - length of sequence = 2**31 - 1. [OK] ECDSA P256 test vectors (SHA512) 9 10 - length of sequence = 2**31 - 1. ... ECDSA P256 test vectors (SHA512) 10 11 - length of sequence = 2**32 - 1. [OK] ECDSA P256 test vectors (SHA512) 10 11 - length of sequence = 2**32 - 1. ... ECDSA P256 test vectors (SHA512) 11 12 - length of sequence = 2**40 - 1. [OK] ECDSA P256 test vectors (SHA512) 11 12 - length of sequence = 2**40 - 1. ... ECDSA P256 test vectors (SHA512) 12 13 - length of sequence = 2**64 - 1. [OK] ECDSA P256 test vectors (SHA512) 12 13 - length of sequence = 2**64 - 1. ... ECDSA P256 test vectors (SHA512) 13 14 - incorrect length of sequence. [OK] ECDSA P256 test vectors (SHA512) 13 14 - incorrect length of sequence. ... ECDSA P256 test vectors (SHA512) 14 15 - indefinite length without termination. [OK] ECDSA P256 test vectors (SHA512) 14 15 - indefinite length without termination. ... ECDSA P256 test vectors (SHA512) 15 16 - indefinite length without termination. [OK] ECDSA P256 test vectors (SHA512) 15 16 - indefinite length without termination. ... ECDSA P256 test vectors (SHA512) 16 17 - indefinite length without termination. [OK] ECDSA P256 test vectors (SHA512) 16 17 - indefinite length without termination. ... ECDSA P256 test vectors (SHA512) 17 18 - removing sequence. [OK] ECDSA P256 test vectors (SHA512) 17 18 - removing sequence. ... ECDSA P256 test vectors (SHA512) 18 19 - lonely sequence tag. [OK] ECDSA P256 test vectors (SHA512) 18 19 - lonely sequence tag. ... ECDSA P256 test vectors (SHA512) 19 20 - appending 0's to sequence. [OK] ECDSA P256 test vectors (SHA512) 19 20 - appending 0's to sequence. ... ECDSA P256 test vectors (SHA512) 20 21 - prepending 0's to sequence. [OK] ECDSA P256 test vectors (SHA512) 20 21 - prepending 0's to sequence. ... ECDSA P256 test vectors (SHA512) 21 22 - appending unused 0's to sequence. [OK] ECDSA P256 test vectors (SHA512) 21 22 - appending unused 0's to sequence. ... ECDSA P256 test vectors (SHA512) 22 23 - appending null value to sequence. [OK] ECDSA P256 test vectors (SHA512) 22 23 - appending null value to sequence. ... ECDSA P256 test vectors (SHA512) 23 24 - including garbage. [OK] ECDSA P256 test vectors (SHA512) 23 24 - including garbage. ... ECDSA P256 test vectors (SHA512) 24 25 - including garbage. [OK] ECDSA P256 test vectors (SHA512) 24 25 - including garbage. ... ECDSA P256 test vectors (SHA512) 25 26 - including garbage. [OK] ECDSA P256 test vectors (SHA512) 25 26 - including garbage. ... ECDSA P256 test vectors (SHA512) 26 27 - including garbage. [OK] ECDSA P256 test vectors (SHA512) 26 27 - including garbage. ... ECDSA P256 test vectors (SHA512) 27 28 - including garbage. [OK] ECDSA P256 test vectors (SHA512) 27 28 - including garbage. ... ECDSA P256 test vectors (SHA512) 28 29 - including garbage. [OK] ECDSA P256 test vectors (SHA512) 28 29 - including garbage. ... ECDSA P256 test vectors (SHA512) 29 30 - including garbage. [OK] ECDSA P256 test vectors (SHA512) 29 30 - including garbage. ... ECDSA P256 test vectors (SHA512) 30 31 - including garbage. [OK] ECDSA P256 test vectors (SHA512) 30 31 - including garbage. ... ECDSA P256 test vectors (SHA512) 31 32 - including garbage. [OK] ECDSA P256 test vectors (SHA512) 31 32 - including garbage. ... ECDSA P256 test vectors (SHA512) 32 33 - including undefined tags. [OK] ECDSA P256 test vectors (SHA512) 32 33 - including undefined tags. ... ECDSA P256 test vectors (SHA512) 33 34 - including undefined tags. [OK] ECDSA P256 test vectors (SHA512) 33 34 - including undefined tags. ... ECDSA P256 test vectors (SHA512) 34 35 - including undefined tags. [OK] ECDSA P256 test vectors (SHA512) 34 35 - including undefined tags. ... ECDSA P256 test vectors (SHA512) 35 36 - including undefined tags. [OK] ECDSA P256 test vectors (SHA512) 35 36 - including undefined tags. ... ECDSA P256 test vectors (SHA512) 36 37 - including undefined tags. [OK] ECDSA P256 test vectors (SHA512) 36 37 - including undefined tags. ... ECDSA P256 test vectors (SHA512) 37 38 - including undefined tags. [OK] ECDSA P256 test vectors (SHA512) 37 38 - including undefined tags. ... ECDSA P256 test vectors (SHA512) 38 39 - truncated length of sequence. [OK] ECDSA P256 test vectors (SHA512) 38 39 - truncated length of sequence. ... ECDSA P256 test vectors (SHA512) 39 40 - using composition with indefinite length. [OK] ECDSA P256 test vectors (SHA512) 39 40 - using composition with indefinite length. ... ECDSA P256 test vectors (SHA512) 40 41 - using composition with indefinite length. [OK] ECDSA P256 test vectors (SHA512) 40 41 - using composition with indefinite length. ... ECDSA P256 test vectors (SHA512) 41 42 - using composition with indefinite length. [OK] ECDSA P256 test vectors (SHA512) 41 42 - using composition with indefinite length. ... ECDSA P256 test vectors (SHA512) 42 43 - using composition with wrong tag. [OK] ECDSA P256 test vectors (SHA512) 42 43 - using composition with wrong tag. ... ECDSA P256 test vectors (SHA512) 43 44 - using composition with wrong tag. [OK] ECDSA P256 test vectors (SHA512) 43 44 - using composition with wrong tag. ... ECDSA P256 test vectors (SHA512) 44 45 - using composition with wrong tag. [OK] ECDSA P256 test vectors (SHA512) 44 45 - using composition with wrong tag. ... ECDSA P256 test vectors (SHA512) 45 46 - Replacing sequence with NULL. [OK] ECDSA P256 test vectors (SHA512) 45 46 - Replacing sequence with NULL. ... ECDSA P256 test vectors (SHA512) 46 47 - changing tag value of sequence. [OK] ECDSA P256 test vectors (SHA512) 46 47 - changing tag value of sequence. ... ECDSA P256 test vectors (SHA512) 47 48 - changing tag value of sequence. [OK] ECDSA P256 test vectors (SHA512) 47 48 - changing tag value of sequence. ... ECDSA P256 test vectors (SHA512) 48 49 - changing tag value of sequence. [OK] ECDSA P256 test vectors (SHA512) 48 49 - changing tag value of sequence. ... ECDSA P256 test vectors (SHA512) 49 50 - changing tag value of sequence. [OK] ECDSA P256 test vectors (SHA512) 49 50 - changing tag value of sequence. ... ECDSA P256 test vectors (SHA512) 50 51 - changing tag value of sequence. [OK] ECDSA P256 test vectors (SHA512) 50 51 - changing tag value of sequence. ... ECDSA P256 test vectors (SHA512) 51 52 - dropping value of sequence. [OK] ECDSA P256 test vectors (SHA512) 51 52 - dropping value of sequence. ... ECDSA P256 test vectors (SHA512) 52 53 - using composition for sequence. [OK] ECDSA P256 test vectors (SHA512) 52 53 - using composition for sequence. ... ECDSA P256 test vectors (SHA512) 53 54 - truncated sequence. [OK] ECDSA P256 test vectors (SHA512) 53 54 - truncated sequence. ... ECDSA P256 test vectors (SHA512) 54 55 - truncated sequence. [OK] ECDSA P256 test vectors (SHA512) 54 55 - truncated sequence. ... ECDSA P256 test vectors (SHA512) 55 56 - indefinite length. [OK] ECDSA P256 test vectors (SHA512) 55 56 - indefinite length. ... ECDSA P256 test vectors (SHA512) 56 57 - indefinite length with truncated delimiter. [OK] ECDSA P256 test vectors (SHA512) 56 57 - indefinite length with truncated delimiter. ... ECDSA P256 test vectors (SHA512) 57 58 - indefinite length with additional element. [OK] ECDSA P256 test vectors (SHA512) 57 58 - indefinite length with additional element. ... ECDSA P256 test vectors (SHA512) 58 59 - indefinite length with truncated element. [OK] ECDSA P256 test vectors (SHA512) 58 59 - indefinite length with truncated element. ... ECDSA P256 test vectors (SHA512) 59 60 - indefinite length with garbage. [OK] ECDSA P256 test vectors (SHA512) 59 60 - indefinite length with garbage. ... ECDSA P256 test vectors (SHA512) 60 61 - indefinite length with nonempty EOC. [OK] ECDSA P256 test vectors (SHA512) 60 61 - indefinite length with nonempty EOC. ... ECDSA P256 test vectors (SHA512) 61 62 - prepend empty sequence. [OK] ECDSA P256 test vectors (SHA512) 61 62 - prepend empty sequence. ... ECDSA P256 test vectors (SHA512) 62 63 - append empty sequence. [OK] ECDSA P256 test vectors (SHA512) 62 63 - append empty sequence. ... ECDSA P256 test vectors (SHA512) 63 64 - append garbage with high tag number. [OK] ECDSA P256 test vectors (SHA512) 63 64 - append garbage with high tag number. ... ECDSA P256 test vectors (SHA512) 64 65 - sequence of sequence. [OK] ECDSA P256 test vectors (SHA512) 64 65 - sequence of sequence. ... ECDSA P256 test vectors (SHA512) 65 66 - truncated sequence: removed last 1 elements. [OK] ECDSA P256 test vectors (SHA512) 65 66 - truncated sequence: removed last 1 elements. ... ECDSA P256 test vectors (SHA512) 66 67 - repeating element in sequence. [OK] ECDSA P256 test vectors (SHA512) 66 67 - repeating element in sequence. ... ECDSA P256 test vectors (SHA512) 67 68 - long form encoding of length of integer. [OK] ECDSA P256 test vectors (SHA512) 67 68 - long form encoding of length of integer. ... ECDSA P256 test vectors (SHA512) 68 69 - long form encoding of length of integer. [OK] ECDSA P256 test vectors (SHA512) 68 69 - long form encoding of length of integer. ... ECDSA P256 test vectors (SHA512) 69 70 - length of integer contains leading 0. [OK] ECDSA P256 test vectors (SHA512) 69 70 - length of integer contains leading 0. ... ECDSA P256 test vectors (SHA512) 70 71 - length of integer contains leading 0. [OK] ECDSA P256 test vectors (SHA512) 70 71 - length of integer contains leading 0. ... ECDSA P256 test vectors (SHA512) 71 72 - wrong length of integer. [OK] ECDSA P256 test vectors (SHA512) 71 72 - wrong length of integer. ... ECDSA P256 test vectors (SHA512) 72 73 - wrong length of integer. [OK] ECDSA P256 test vectors (SHA512) 72 73 - wrong length of integer. ... ECDSA P256 test vectors (SHA512) 73 74 - wrong length of integer. [OK] ECDSA P256 test vectors (SHA512) 73 74 - wrong length of integer. ... ECDSA P256 test vectors (SHA512) 74 75 - wrong length of integer. [OK] ECDSA P256 test vectors (SHA512) 74 75 - wrong length of integer. ... ECDSA P256 test vectors (SHA512) 75 76 - uint32 overflow in length of integer. [OK] ECDSA P256 test vectors (SHA512) 75 76 - uint32 overflow in length of integer. ... ECDSA P256 test vectors (SHA512) 76 77 - uint32 overflow in length of integer. [OK] ECDSA P256 test vectors (SHA512) 76 77 - uint32 overflow in length of integer. ... ECDSA P256 test vectors (SHA512) 77 78 - uint64 overflow in length of integer. [OK] ECDSA P256 test vectors (SHA512) 77 78 - uint64 overflow in length of integer. ... ECDSA P256 test vectors (SHA512) 78 79 - uint64 overflow in length of integer. [OK] ECDSA P256 test vectors (SHA512) 78 79 - uint64 overflow in length of integer. ... ECDSA P256 test vectors (SHA512) 79 80 - length of integer = 2**31 - 1. [OK] ECDSA P256 test vectors (SHA512) 79 80 - length of integer = 2**31 - 1. ... ECDSA P256 test vectors (SHA512) 80 81 - length of integer = 2**31 - 1. [OK] ECDSA P256 test vectors (SHA512) 80 81 - length of integer = 2**31 - 1. ... ECDSA P256 test vectors (SHA512) 81 82 - length of integer = 2**32 - 1. [OK] ECDSA P256 test vectors (SHA512) 81 82 - length of integer = 2**32 - 1. ... ECDSA P256 test vectors (SHA512) 82 83 - length of integer = 2**32 - 1. [OK] ECDSA P256 test vectors (SHA512) 82 83 - length of integer = 2**32 - 1. ... ECDSA P256 test vectors (SHA512) 83 84 - length of integer = 2**40 - 1. [OK] ECDSA P256 test vectors (SHA512) 83 84 - length of integer = 2**40 - 1. ... ECDSA P256 test vectors (SHA512) 84 85 - length of integer = 2**40 - 1. [OK] ECDSA P256 test vectors (SHA512) 84 85 - length of integer = 2**40 - 1. ... ECDSA P256 test vectors (SHA512) 85 86 - length of integer = 2**64 - 1. [OK] ECDSA P256 test vectors (SHA512) 85 86 - length of integer = 2**64 - 1. ... ECDSA P256 test vectors (SHA512) 86 87 - length of integer = 2**64 - 1. [OK] ECDSA P256 test vectors (SHA512) 86 87 - length of integer = 2**64 - 1. ... ECDSA P256 test vectors (SHA512) 87 88 - incorrect length of integer. [OK] ECDSA P256 test vectors (SHA512) 87 88 - incorrect length of integer. ... ECDSA P256 test vectors (SHA512) 88 89 - incorrect length of integer. [OK] ECDSA P256 test vectors (SHA512) 88 89 - incorrect length of integer. ... ECDSA P256 test vectors (SHA512) 89 90 - removing integer. [OK] ECDSA P256 test vectors (SHA512) 89 90 - removing integer. ... ECDSA P256 test vectors (SHA512) 90 91 - lonely integer tag. [OK] ECDSA P256 test vectors (SHA512) 90 91 - lonely integer tag. ... ECDSA P256 test vectors (SHA512) 91 92 - lonely integer tag. [OK] ECDSA P256 test vectors (SHA512) 91 92 - lonely integer tag. ... ECDSA P256 test vectors (SHA512) 92 93 - appending 0's to integer. [OK] ECDSA P256 test vectors (SHA512) 92 93 - appending 0's to integer. ... ECDSA P256 test vectors (SHA512) 93 94 - appending 0's to integer. [OK] ECDSA P256 test vectors (SHA512) 93 94 - appending 0's to integer. ... ECDSA P256 test vectors (SHA512) 94 95 - prepending 0's to integer. [OK] ECDSA P256 test vectors (SHA512) 94 95 - prepending 0's to integer. ... ECDSA P256 test vectors (SHA512) 95 96 - prepending 0's to integer. [OK] ECDSA P256 test vectors (SHA512) 95 96 - prepending 0's to integer. ... ECDSA P256 test vectors (SHA512) 96 97 - appending unused 0's to integer. [OK] ECDSA P256 test vectors (SHA512) 96 97 - appending unused 0's to integer. ... ECDSA P256 test vectors (SHA512) 97 98 - appending null value to integer. [OK] ECDSA P256 test vectors (SHA512) 97 98 - appending null value to integer. ... ECDSA P256 test vectors (SHA512) 98 99 - appending null value to integer. [OK] ECDSA P256 test vectors (SHA512) 98 99 - appending null value to integer. ... ECDSA P256 test vectors (SHA512) 99 100 - truncated length of integer. [OK] ECDSA P256 test vectors (SHA512) 99 100 - truncated length of integer. ... ECDSA P256 test vectors (SHA512) 100 101 - truncated length of integer. [OK] ECDSA P256 test vectors (SHA512) 100 101 - truncated length of integer. ... ECDSA P256 test vectors (SHA512) 101 102 - Replacing integer with NULL. [OK] ECDSA P256 test vectors (SHA512) 101 102 - Replacing integer with NULL. ... ECDSA P256 test vectors (SHA512) 102 103 - Replacing integer with NULL. [OK] ECDSA P256 test vectors (SHA512) 102 103 - Replacing integer with NULL. ... ECDSA P256 test vectors (SHA512) 103 104 - changing tag value of integer. [OK] ECDSA P256 test vectors (SHA512) 103 104 - changing tag value of integer. ... ECDSA P256 test vectors (SHA512) 104 105 - changing tag value of integer. [OK] ECDSA P256 test vectors (SHA512) 104 105 - changing tag value of integer. ... ECDSA P256 test vectors (SHA512) 105 106 - changing tag value of integer. [OK] ECDSA P256 test vectors (SHA512) 105 106 - changing tag value of integer. ... ECDSA P256 test vectors (SHA512) 106 107 - changing tag value of integer. [OK] ECDSA P256 test vectors (SHA512) 106 107 - changing tag value of integer. ... ECDSA P256 test vectors (SHA512) 107 108 - changing tag value of integer. [OK] ECDSA P256 test vectors (SHA512) 107 108 - changing tag value of integer. ... ECDSA P256 test vectors (SHA512) 108 109 - changing tag value of integer. [OK] ECDSA P256 test vectors (SHA512) 108 109 - changing tag value of integer. ... ECDSA P256 test vectors (SHA512) 109 110 - changing tag value of integer. [OK] ECDSA P256 test vectors (SHA512) 109 110 - changing tag value of integer. ... ECDSA P256 test vectors (SHA512) 110 111 - changing tag value of integer. [OK] ECDSA P256 test vectors (SHA512) 110 111 - changing tag value of integer. ... ECDSA P256 test vectors (SHA512) 111 112 - changing tag value of integer. [OK] ECDSA P256 test vectors (SHA512) 111 112 - changing tag value of integer. ... ECDSA P256 test vectors (SHA512) 112 113 - changing tag value of integer. [OK] ECDSA P256 test vectors (SHA512) 112 113 - changing tag value of integer. ... ECDSA P256 test vectors (SHA512) 113 114 - dropping value of integer. [OK] ECDSA P256 test vectors (SHA512) 113 114 - dropping value of integer. ... ECDSA P256 test vectors (SHA512) 114 115 - dropping value of integer. [OK] ECDSA P256 test vectors (SHA512) 114 115 - dropping value of integer. ... ECDSA P256 test vectors (SHA512) 115 116 - using composition for integer. [OK] ECDSA P256 test vectors (SHA512) 115 116 - using composition for integer. ... ECDSA P256 test vectors (SHA512) 116 117 - using composition for integer. [OK] ECDSA P256 test vectors (SHA512) 116 117 - using composition for integer. ... ECDSA P256 test vectors (SHA512) 117 118 - modify first byte of integer. [OK] ECDSA P256 test vectors (SHA512) 117 118 - modify first byte of integer. ... ECDSA P256 test vectors (SHA512) 118 119 - modify first byte of integer. [OK] ECDSA P256 test vectors (SHA512) 118 119 - modify first byte of integer. ... ECDSA P256 test vectors (SHA512) 119 120 - modify last byte of integer. [OK] ECDSA P256 test vectors (SHA512) 119 120 - modify last byte of integer. ... ECDSA P256 test vectors (SHA512) 120 121 - modify last byte of integer. [OK] ECDSA P256 test vectors (SHA512) 120 121 - modify last byte of integer. ... ECDSA P256 test vectors (SHA512) 121 122 - truncated integer. [OK] ECDSA P256 test vectors (SHA512) 121 122 - truncated integer. ... ECDSA P256 test vectors (SHA512) 122 123 - truncated integer. [OK] ECDSA P256 test vectors (SHA512) 122 123 - truncated integer. ... ECDSA P256 test vectors (SHA512) 123 124 - truncated integer. [OK] ECDSA P256 test vectors (SHA512) 123 124 - truncated integer. ... ECDSA P256 test vectors (SHA512) 124 125 - leading ff in integer. [OK] ECDSA P256 test vectors (SHA512) 124 125 - leading ff in integer. ... ECDSA P256 test vectors (SHA512) 125 126 - leading ff in integer. [OK] ECDSA P256 test vectors (SHA512) 125 126 - leading ff in integer. ... ECDSA P256 test vectors (SHA512) 126 127 - replaced integer by infinity. [OK] ECDSA P256 test vectors (SHA512) 126 127 - replaced integer by infinity. ... ECDSA P256 test vectors (SHA512) 127 128 - replaced integer by infinity. [OK] ECDSA P256 test vectors (SHA512) 127 128 - replaced integer by infinity. ... ECDSA P256 test vectors (SHA512) 128 129 - replacing integer with zero. [OK] ECDSA P256 test vectors (SHA512) 128 129 - replacing integer with zero. ... ECDSA P256 test vectors (SHA512) 129 130 - replacing integer with zero. [OK] ECDSA P256 test vectors (SHA512) 129 130 - replacing integer with zero. ... ECDSA P256 test vectors (SHA512) 130 131 - Modified r or s, e.g. by adding or subtracting the order of the group. [OK] ECDSA P256 test vectors (SHA512) 130 131 - Modified r or s, e.g. by adding or subtracting the order of the group. ... ECDSA P256 test vectors (SHA512) 131 132 - Modified r or s, e.g. by adding or subtracting the order of the group. [OK] ECDSA P256 test vectors (SHA512) 131 132 - Modified r or s, e.g. by adding or subtracting the order of the group. ... ECDSA P256 test vectors (SHA512) 132 133 - Modified r or s, e.g. by adding or subtracting the order of the group. [OK] ECDSA P256 test vectors (SHA512) 132 133 - Modified r or s, e.g. by adding or subtracting the order of the group. ... ECDSA P256 test vectors (SHA512) 133 134 - Modified r or s, e.g. by adding or subtracting the order of the group. [OK] ECDSA P256 test vectors (SHA512) 133 134 - Modified r or s, e.g. by adding or subtracting the order of the group. ... ECDSA P256 test vectors (SHA512) 134 135 - Modified r or s, e.g. by adding or subtracting the order of the group. [OK] ECDSA P256 test vectors (SHA512) 134 135 - Modified r or s, e.g. by adding or subtracting the order of the group. ... ECDSA P256 test vectors (SHA512) 135 136 - Modified r or s, e.g. by adding or subtracting the order of the group. [OK] ECDSA P256 test vectors (SHA512) 135 136 - Modified r or s, e.g. by adding or subtracting the order of the group. ... ECDSA P256 test vectors (SHA512) 136 137 - Modified r or s, e.g. by adding or subtracting the order of the group. [OK] ECDSA P256 test vectors (SHA512) 136 137 - Modified r or s, e.g. by adding or subtracting the order of the group. ... ECDSA P256 test vectors (SHA512) 137 138 - Modified r or s, e.g. by adding or subtracting the order of the group. [OK] ECDSA P256 test vectors (SHA512) 137 138 - Modified r or s, e.g. by adding or subtracting the order of the group. ... ECDSA P256 test vectors (SHA512) 138 139 - Modified r or s, e.g. by adding or subtracting the order of the group. [OK] ECDSA P256 test vectors (SHA512) 138 139 - Modified r or s, e.g. by adding or subtracting the order of the group. ... ECDSA P256 test vectors (SHA512) 139 140 - Modified r or s, e.g. by adding or subtracting the order of the group. [OK] ECDSA P256 test vectors (SHA512) 139 140 - Modified r or s, e.g. by adding or subtracting the order of the group. ... ECDSA P256 test vectors (SHA512) 140 141 - Modified r or s, e.g. by adding or subtracting the order of the group. [OK] ECDSA P256 test vectors (SHA512) 140 141 - Modified r or s, e.g. by adding or subtracting the order of the group. ... ECDSA P256 test vectors (SHA512) 141 142 - Modified r or s, e.g. by adding or subtracting the order of the group. [OK] ECDSA P256 test vectors (SHA512) 141 142 - Modified r or s, e.g. by adding or subtracting the order of the group. ... ECDSA P256 test vectors (SHA512) 142 143 - Modified r or s, e.g. by adding or subtracting the order of the group. [OK] ECDSA P256 test vectors (SHA512) 142 143 - Modified r or s, e.g. by adding or subtracting the order of the group. ... ECDSA P256 test vectors (SHA512) 143 144 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 143 144 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 144 145 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 144 145 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 145 146 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 145 146 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 146 147 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 146 147 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 147 148 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 147 148 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 148 149 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 148 149 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 149 150 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 149 150 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 150 151 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 150 151 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 151 152 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 151 152 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 152 153 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 152 153 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 153 154 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 153 154 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 154 155 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 154 155 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 155 156 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 155 156 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 156 157 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 156 157 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 157 158 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 157 158 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 158 159 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 158 159 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 159 160 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 159 160 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 160 161 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 160 161 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 161 162 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 161 162 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 162 163 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 162 163 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 163 164 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 163 164 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 164 165 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 164 165 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 165 166 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 165 166 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 166 167 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 166 167 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 167 168 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 167 168 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 168 169 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 168 169 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 169 170 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 169 170 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 170 171 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 170 171 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 171 172 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 171 172 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 172 173 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 172 173 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 173 174 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 173 174 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 174 175 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 174 175 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 175 176 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 175 176 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 176 177 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 176 177 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 177 178 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 177 178 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 178 179 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 178 179 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 179 180 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 179 180 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 180 181 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 180 181 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 181 182 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 181 182 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 182 183 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 182 183 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 183 184 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 183 184 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 184 185 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 184 185 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 185 186 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 185 186 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 186 187 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 186 187 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 187 188 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 187 188 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 188 189 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 188 189 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 189 190 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 189 190 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 190 191 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 190 191 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 191 192 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 191 192 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 192 193 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 192 193 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 193 194 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 193 194 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 194 195 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 194 195 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 195 196 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 195 196 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 196 197 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 196 197 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 197 198 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 197 198 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 198 199 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 198 199 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 199 200 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 199 200 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 200 201 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 200 201 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 201 202 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 201 202 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 202 203 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 202 203 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 203 204 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 203 204 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 204 205 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 204 205 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 205 206 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 205 206 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 206 207 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 206 207 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 207 208 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 207 208 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 208 209 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 208 209 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 209 210 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 209 210 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 210 211 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 210 211 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 211 212 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 211 212 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 212 213 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 212 213 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 213 214 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 213 214 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 214 215 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 214 215 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 215 216 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 215 216 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 216 217 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 216 217 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 217 218 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 217 218 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 218 219 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 218 219 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 219 220 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 219 220 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 220 221 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 220 221 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 221 222 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 221 222 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 222 223 - Signature with special case values for r and s. [OK] ECDSA P256 test vectors (SHA512) 222 223 - Signature with special case values for r and s. ... ECDSA P256 test vectors (SHA512) 223 224 - Signature encoding contains wrong types. [OK] ECDSA P256 test vectors (SHA512) 223 224 - Signature encoding contains wrong types. ... ECDSA P256 test vectors (SHA512) 224 225 - Signature encoding contains wrong types. [OK] ECDSA P256 test vectors (SHA512) 224 225 - Signature encoding contains wrong types. ... ECDSA P256 test vectors (SHA512) 225 226 - Signature encoding contains wrong types. [OK] ECDSA P256 test vectors (SHA512) 225 226 - Signature encoding contains wrong types. ... ECDSA P256 test vectors (SHA512) 226 227 - Signature encoding contains wrong types. [OK] ECDSA P256 test vectors (SHA512) 226 227 - Signature encoding contains wrong types. ... ECDSA P256 test vectors (SHA512) 227 228 - Signature encoding contains wrong types. [OK] ECDSA P256 test vectors (SHA512) 227 228 - Signature encoding contains wrong types. ... ECDSA P256 test vectors (SHA512) 228 229 - Signature encoding contains wrong types. [OK] ECDSA P256 test vectors (SHA512) 228 229 - Signature encoding contains wrong types. ... ECDSA P256 test vectors (SHA512) 229 230 - Edge case for Shamir multiplication. [OK] ECDSA P256 test vectors (SHA512) 229 230 - Edge case for Shamir multiplication. ... ECDSA P256 test vectors (SHA512) 230 231 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 230 231 - special case hash. ... ECDSA P256 test vectors (SHA512) 231 232 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 231 232 - special case hash. ... ECDSA P256 test vectors (SHA512) 232 233 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 232 233 - special case hash. ... ECDSA P256 test vectors (SHA512) 233 234 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 233 234 - special case hash. ... ECDSA P256 test vectors (SHA512) 234 235 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 234 235 - special case hash. ... ECDSA P256 test vectors (SHA512) 235 236 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 235 236 - special case hash. ... ECDSA P256 test vectors (SHA512) 236 237 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 236 237 - special case hash. ... ECDSA P256 test vectors (SHA512) 237 238 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 237 238 - special case hash. ... ECDSA P256 test vectors (SHA512) 238 239 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 238 239 - special case hash. ... ECDSA P256 test vectors (SHA512) 239 240 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 239 240 - special case hash. ... ECDSA P256 test vectors (SHA512) 240 241 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 240 241 - special case hash. ... ECDSA P256 test vectors (SHA512) 241 242 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 241 242 - special case hash. ... ECDSA P256 test vectors (SHA512) 242 243 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 242 243 - special case hash. ... ECDSA P256 test vectors (SHA512) 243 244 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 243 244 - special case hash. ... ECDSA P256 test vectors (SHA512) 244 245 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 244 245 - special case hash. ... ECDSA P256 test vectors (SHA512) 245 246 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 245 246 - special case hash. ... ECDSA P256 test vectors (SHA512) 246 247 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 246 247 - special case hash. ... ECDSA P256 test vectors (SHA512) 247 248 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 247 248 - special case hash. ... ECDSA P256 test vectors (SHA512) 248 249 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 248 249 - special case hash. ... ECDSA P256 test vectors (SHA512) 249 250 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 249 250 - special case hash. ... ECDSA P256 test vectors (SHA512) 250 251 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 250 251 - special case hash. ... ECDSA P256 test vectors (SHA512) 251 252 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 251 252 - special case hash. ... ECDSA P256 test vectors (SHA512) 252 253 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 252 253 - special case hash. ... ECDSA P256 test vectors (SHA512) 253 254 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 253 254 - special case hash. ... ECDSA P256 test vectors (SHA512) 254 255 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 254 255 - special case hash. ... ECDSA P256 test vectors (SHA512) 255 256 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 255 256 - special case hash. ... ECDSA P256 test vectors (SHA512) 256 257 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 256 257 - special case hash. ... ECDSA P256 test vectors (SHA512) 257 258 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 257 258 - special case hash. ... ECDSA P256 test vectors (SHA512) 258 259 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 258 259 - special case hash. ... ECDSA P256 test vectors (SHA512) 259 260 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 259 260 - special case hash. ... ECDSA P256 test vectors (SHA512) 260 261 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 260 261 - special case hash. ... ECDSA P256 test vectors (SHA512) 261 262 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 261 262 - special case hash. ... ECDSA P256 test vectors (SHA512) 262 263 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 262 263 - special case hash. ... ECDSA P256 test vectors (SHA512) 263 264 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 263 264 - special case hash. ... ECDSA P256 test vectors (SHA512) 264 265 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 264 265 - special case hash. ... ECDSA P256 test vectors (SHA512) 265 266 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 265 266 - special case hash. ... ECDSA P256 test vectors (SHA512) 266 267 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 266 267 - special case hash. ... ECDSA P256 test vectors (SHA512) 267 268 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 267 268 - special case hash. ... ECDSA P256 test vectors (SHA512) 268 269 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 268 269 - special case hash. ... ECDSA P256 test vectors (SHA512) 269 270 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 269 270 - special case hash. ... ECDSA P256 test vectors (SHA512) 270 271 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 270 271 - special case hash. ... ECDSA P256 test vectors (SHA512) 271 272 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 271 272 - special case hash. ... ECDSA P256 test vectors (SHA512) 272 273 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 272 273 - special case hash. ... ECDSA P256 test vectors (SHA512) 273 274 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 273 274 - special case hash. ... ECDSA P256 test vectors (SHA512) 274 275 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 274 275 - special case hash. ... ECDSA P256 test vectors (SHA512) 275 276 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 275 276 - special case hash. ... ECDSA P256 test vectors (SHA512) 276 277 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 276 277 - special case hash. ... ECDSA P256 test vectors (SHA512) 277 278 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 277 278 - special case hash. ... ECDSA P256 test vectors (SHA512) 278 279 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 278 279 - special case hash. ... ECDSA P256 test vectors (SHA512) 279 280 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 279 280 - special case hash. ... ECDSA P256 test vectors (SHA512) 280 281 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 280 281 - special case hash. ... ECDSA P256 test vectors (SHA512) 281 282 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 281 282 - special case hash. ... ECDSA P256 test vectors (SHA512) 282 283 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 282 283 - special case hash. ... ECDSA P256 test vectors (SHA512) 283 284 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 283 284 - special case hash. ... ECDSA P256 test vectors (SHA512) 284 285 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 284 285 - special case hash. ... ECDSA P256 test vectors (SHA512) 285 286 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 285 286 - special case hash. ... ECDSA P256 test vectors (SHA512) 286 287 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 286 287 - special case hash. ... ECDSA P256 test vectors (SHA512) 287 288 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 287 288 - special case hash. ... ECDSA P256 test vectors (SHA512) 288 289 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 288 289 - special case hash. ... ECDSA P256 test vectors (SHA512) 289 290 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 289 290 - special case hash. ... ECDSA P256 test vectors (SHA512) 290 291 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 290 291 - special case hash. ... ECDSA P256 test vectors (SHA512) 291 292 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 291 292 - special case hash. ... ECDSA P256 test vectors (SHA512) 292 293 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 292 293 - special case hash. ... ECDSA P256 test vectors (SHA512) 293 294 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 293 294 - special case hash. ... ECDSA P256 test vectors (SHA512) 294 295 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 294 295 - special case hash. ... ECDSA P256 test vectors (SHA512) 295 296 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 295 296 - special case hash. ... ECDSA P256 test vectors (SHA512) 296 297 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 296 297 - special case hash. ... ECDSA P256 test vectors (SHA512) 297 298 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 297 298 - special case hash. ... ECDSA P256 test vectors (SHA512) 298 299 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 298 299 - special case hash. ... ECDSA P256 test vectors (SHA512) 299 300 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 299 300 - special case hash. ... ECDSA P256 test vectors (SHA512) 300 301 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 300 301 - special case hash. ... ECDSA P256 test vectors (SHA512) 301 302 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 301 302 - special case hash. ... ECDSA P256 test vectors (SHA512) 302 303 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 302 303 - special case hash. ... ECDSA P256 test vectors (SHA512) 303 304 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 303 304 - special case hash. ... ECDSA P256 test vectors (SHA512) 304 305 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 304 305 - special case hash. ... ECDSA P256 test vectors (SHA512) 305 306 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 305 306 - special case hash. ... ECDSA P256 test vectors (SHA512) 306 307 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 306 307 - special case hash. ... ECDSA P256 test vectors (SHA512) 307 308 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 307 308 - special case hash. ... ECDSA P256 test vectors (SHA512) 308 309 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 308 309 - special case hash. ... ECDSA P256 test vectors (SHA512) 309 310 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 309 310 - special case hash. ... ECDSA P256 test vectors (SHA512) 310 311 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 310 311 - special case hash. ... ECDSA P256 test vectors (SHA512) 311 312 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 311 312 - special case hash. ... ECDSA P256 test vectors (SHA512) 312 313 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 312 313 - special case hash. ... ECDSA P256 test vectors (SHA512) 313 314 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 313 314 - special case hash. ... ECDSA P256 test vectors (SHA512) 314 315 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 314 315 - special case hash. ... ECDSA P256 test vectors (SHA512) 315 316 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 315 316 - special case hash. ... ECDSA P256 test vectors (SHA512) 316 317 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 316 317 - special case hash. ... ECDSA P256 test vectors (SHA512) 317 318 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 317 318 - special case hash. ... ECDSA P256 test vectors (SHA512) 318 319 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 318 319 - special case hash. ... ECDSA P256 test vectors (SHA512) 319 320 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 319 320 - special case hash. ... ECDSA P256 test vectors (SHA512) 320 321 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 320 321 - special case hash. ... ECDSA P256 test vectors (SHA512) 321 322 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 321 322 - special case hash. ... ECDSA P256 test vectors (SHA512) 322 323 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 322 323 - special case hash. ... ECDSA P256 test vectors (SHA512) 323 324 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 323 324 - special case hash. ... ECDSA P256 test vectors (SHA512) 324 325 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 324 325 - special case hash. ... ECDSA P256 test vectors (SHA512) 325 326 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 325 326 - special case hash. ... ECDSA P256 test vectors (SHA512) 326 327 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 326 327 - special case hash. ... ECDSA P256 test vectors (SHA512) 327 328 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 327 328 - special case hash. ... ECDSA P256 test vectors (SHA512) 328 329 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 328 329 - special case hash. ... ECDSA P256 test vectors (SHA512) 329 330 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 329 330 - special case hash. ... ECDSA P256 test vectors (SHA512) 330 331 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 330 331 - special case hash. ... ECDSA P256 test vectors (SHA512) 331 332 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 331 332 - special case hash. ... ECDSA P256 test vectors (SHA512) 332 333 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 332 333 - special case hash. ... ECDSA P256 test vectors (SHA512) 333 334 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 333 334 - special case hash. ... ECDSA P256 test vectors (SHA512) 334 335 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 334 335 - special case hash. ... ECDSA P256 test vectors (SHA512) 335 336 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 335 336 - special case hash. ... ECDSA P256 test vectors (SHA512) 336 337 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 336 337 - special case hash. ... ECDSA P256 test vectors (SHA512) 337 338 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 337 338 - special case hash. ... ECDSA P256 test vectors (SHA512) 338 339 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 338 339 - special case hash. ... ECDSA P256 test vectors (SHA512) 339 340 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 339 340 - special case hash. ... ECDSA P256 test vectors (SHA512) 340 341 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 340 341 - special case hash. ... ECDSA P256 test vectors (SHA512) 341 342 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 341 342 - special case hash. ... ECDSA P256 test vectors (SHA512) 342 343 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 342 343 - special case hash. ... ECDSA P256 test vectors (SHA512) 343 344 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 343 344 - special case hash. ... ECDSA P256 test vectors (SHA512) 344 345 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 344 345 - special case hash. ... ECDSA P256 test vectors (SHA512) 345 346 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 345 346 - special case hash. ... ECDSA P256 test vectors (SHA512) 346 347 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 346 347 - special case hash. ... ECDSA P256 test vectors (SHA512) 347 348 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 347 348 - special case hash. ... ECDSA P256 test vectors (SHA512) 348 349 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 348 349 - special case hash. ... ECDSA P256 test vectors (SHA512) 349 350 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 349 350 - special case hash. ... ECDSA P256 test vectors (SHA512) 350 351 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 350 351 - special case hash. ... ECDSA P256 test vectors (SHA512) 351 352 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 351 352 - special case hash. ... ECDSA P256 test vectors (SHA512) 352 353 - special case hash. [OK] ECDSA P256 test vectors (SHA512) 352 353 - special case hash. ... ECDSA P256 test vectors (SHA512) 353 354 - Signature generated without truncating the hash. [OK] ECDSA P256 test vectors (SHA512) 353 354 - Signature generated without truncating the hash. ... ECDSA P256 test vectors (SHA512) 354 355 - k*G has a large x-coordinate. [OK] ECDSA P256 test vectors (SHA512) 354 355 - k*G has a large x-coordinate. ... ECDSA P256 test vectors (SHA512) 355 356 - r too large. [OK] ECDSA P256 test vectors (SHA512) 355 356 - r too large. ... ECDSA P256 test vectors (SHA512) 356 357 - r,s are large. [OK] ECDSA P256 test vectors (SHA512) 356 357 - r,s are large. ... ECDSA P256 test vectors (SHA512) 357 358 - r and s^-1 have a large Hamming weight. [OK] ECDSA P256 test vectors (SHA512) 357 358 - r and s^-1 have a large Hamming weight. ... ECDSA P256 test vectors (SHA512) 358 359 - r and s^-1 have a large Hamming weight. [OK] ECDSA P256 test vectors (SHA512) 358 359 - r and s^-1 have a large Hamming weight. ... ECDSA P256 test vectors (SHA512) 359 360 - small r and s. [OK] ECDSA P256 test vectors (SHA512) 359 360 - small r and s. ... ECDSA P256 test vectors (SHA512) 360 361 - small r and s. [OK] ECDSA P256 test vectors (SHA512) 360 361 - small r and s. ... ECDSA P256 test vectors (SHA512) 361 362 - small r and s. [OK] ECDSA P256 test vectors (SHA512) 361 362 - small r and s. ... ECDSA P256 test vectors (SHA512) 362 363 - small r and s. [OK] ECDSA P256 test vectors (SHA512) 362 363 - small r and s. ... ECDSA P256 test vectors (SHA512) 363 364 - r is larger than n. [OK] ECDSA P256 test vectors (SHA512) 363 364 - r is larger than n. ... ECDSA P256 test vectors (SHA512) 364 365 - s is larger than n. [OK] ECDSA P256 test vectors (SHA512) 364 365 - s is larger than n. ... ECDSA P256 test vectors (SHA512) 365 366 - small r and s^-1. [OK] ECDSA P256 test vectors (SHA512) 365 366 - small r and s^-1. ... ECDSA P256 test vectors (SHA512) 366 367 - smallish r and s^-1. [OK] ECDSA P256 test vectors (SHA512) 366 367 - smallish r and s^-1. ... ECDSA P256 test vectors (SHA512) 367 368 - 100-bit r and small s^-1. [OK] ECDSA P256 test vectors (SHA512) 367 368 - 100-bit r and small s^-1. ... ECDSA P256 test vectors (SHA512) 368 369 - small r and 100 bit s^-1. [OK] ECDSA P256 test vectors (SHA512) 368 369 - small r and 100 bit s^-1. ... ECDSA P256 test vectors (SHA512) 369 370 - 100-bit r and s^-1. [OK] ECDSA P256 test vectors (SHA512) 369 370 - 100-bit r and s^-1. ... ECDSA P256 test vectors (SHA512) 370 371 - r and s^-1 are close to n. [OK] ECDSA P256 test vectors (SHA512) 370 371 - r and s^-1 are close to n. ... ECDSA P256 test vectors (SHA512) 371 372 - s == 1. [OK] ECDSA P256 test vectors (SHA512) 371 372 - s == 1. ... ECDSA P256 test vectors (SHA512) 372 373 - s == 0. [OK] ECDSA P256 test vectors (SHA512) 372 373 - s == 0. ... ECDSA P256 test vectors (SHA512) 373 374 - point at infinity during verify. [OK] ECDSA P256 test vectors (SHA512) 373 374 - point at infinity during verify. ... ECDSA P256 test vectors (SHA512) 374 375 - edge case for signature malleability. [OK] ECDSA P256 test vectors (SHA512) 374 375 - edge case for signature malleability. ... ECDSA P256 test vectors (SHA512) 375 376 - edge case for signature malleability. [OK] ECDSA P256 test vectors (SHA512) 375 376 - edge case for signature malleability. ... ECDSA P256 test vectors (SHA512) 376 377 - u1 == 1. [OK] ECDSA P256 test vectors (SHA512) 376 377 - u1 == 1. ... ECDSA P256 test vectors (SHA512) 377 378 - u1 == n - 1. [OK] ECDSA P256 test vectors (SHA512) 377 378 - u1 == n - 1. ... ECDSA P256 test vectors (SHA512) 378 379 - u2 == 1. [OK] ECDSA P256 test vectors (SHA512) 378 379 - u2 == 1. ... ECDSA P256 test vectors (SHA512) 379 380 - u2 == n - 1. [OK] ECDSA P256 test vectors (SHA512) 379 380 - u2 == n - 1. ... ECDSA P256 test vectors (SHA512) 380 381 - edge case for u1. [OK] ECDSA P256 test vectors (SHA512) 380 381 - edge case for u1. ... ECDSA P256 test vectors (SHA512) 381 382 - edge case for u1. [OK] ECDSA P256 test vectors (SHA512) 381 382 - edge case for u1. ... ECDSA P256 test vectors (SHA512) 382 383 - edge case for u1. [OK] ECDSA P256 test vectors (SHA512) 382 383 - edge case for u1. ... ECDSA P256 test vectors (SHA512) 383 384 - edge case for u1. [OK] ECDSA P256 test vectors (SHA512) 383 384 - edge case for u1. ... ECDSA P256 test vectors (SHA512) 384 385 - edge case for u1. [OK] ECDSA P256 test vectors (SHA512) 384 385 - edge case for u1. ... ECDSA P256 test vectors (SHA512) 385 386 - edge case for u1. [OK] ECDSA P256 test vectors (SHA512) 385 386 - edge case for u1. ... ECDSA P256 test vectors (SHA512) 386 387 - edge case for u1. [OK] ECDSA P256 test vectors (SHA512) 386 387 - edge case for u1. ... ECDSA P256 test vectors (SHA512) 387 388 - edge case for u1. [OK] ECDSA P256 test vectors (SHA512) 387 388 - edge case for u1. ... ECDSA P256 test vectors (SHA512) 388 389 - edge case for u1. [OK] ECDSA P256 test vectors (SHA512) 388 389 - edge case for u1. ... ECDSA P256 test vectors (SHA512) 389 390 - edge case for u1. [OK] ECDSA P256 test vectors (SHA512) 389 390 - edge case for u1. ... ECDSA P256 test vectors (SHA512) 390 391 - edge case for u1. [OK] ECDSA P256 test vectors (SHA512) 390 391 - edge case for u1. ... ECDSA P256 test vectors (SHA512) 391 392 - edge case for u1. [OK] ECDSA P256 test vectors (SHA512) 391 392 - edge case for u1. ... ECDSA P256 test vectors (SHA512) 392 393 - edge case for u1. [OK] ECDSA P256 test vectors (SHA512) 392 393 - edge case for u1. ... ECDSA P256 test vectors (SHA512) 393 394 - edge case for u1. [OK] ECDSA P256 test vectors (SHA512) 393 394 - edge case for u1. ... ECDSA P256 test vectors (SHA512) 394 395 - edge case for u2. [OK] ECDSA P256 test vectors (SHA512) 394 395 - edge case for u2. ... ECDSA P256 test vectors (SHA512) 395 396 - edge case for u2. [OK] ECDSA P256 test vectors (SHA512) 395 396 - edge case for u2. ... ECDSA P256 test vectors (SHA512) 396 397 - edge case for u2. [OK] ECDSA P256 test vectors (SHA512) 396 397 - edge case for u2. ... ECDSA P256 test vectors (SHA512) 397 398 - edge case for u2. [OK] ECDSA P256 test vectors (SHA512) 397 398 - edge case for u2. ... ECDSA P256 test vectors (SHA512) 398 399 - edge case for u2. [OK] ECDSA P256 test vectors (SHA512) 398 399 - edge case for u2. ... ECDSA P256 test vectors (SHA512) 399 400 - edge case for u2. [OK] ECDSA P256 test vectors (SHA512) 399 400 - edge case for u2. ... ECDSA P256 test vectors (SHA512) 400 401 - edge case for u2. [OK] ECDSA P256 test vectors (SHA512) 400 401 - edge case for u2. ... ECDSA P256 test vectors (SHA512) 401 402 - edge case for u2. [OK] ECDSA P256 test vectors (SHA512) 401 402 - edge case for u2. ... ECDSA P256 test vectors (SHA512) 402 403 - edge case for u2. [OK] ECDSA P256 test vectors (SHA512) 402 403 - edge case for u2. ... ECDSA P256 test vectors (SHA512) 403 404 - edge case for u2. [OK] ECDSA P256 test vectors (SHA512) 403 404 - edge case for u2. ... ECDSA P256 test vectors (SHA512) 404 405 - edge case for u2. [OK] ECDSA P256 test vectors (SHA512) 404 405 - edge case for u2. ... ECDSA P256 test vectors (SHA512) 405 406 - edge case for u2. [OK] ECDSA P256 test vectors (SHA512) 405 406 - edge case for u2. ... ECDSA P256 test vectors (SHA512) 406 407 - edge case for u2. [OK] ECDSA P256 test vectors (SHA512) 406 407 - edge case for u2. ... ECDSA P256 test vectors (SHA512) 407 408 - edge case for u2. [OK] ECDSA P256 test vectors (SHA512) 407 408 - edge case for u2. ... ECDSA P256 test vectors (SHA512) 408 409 - point duplication during verification. [OK] ECDSA P256 test vectors (SHA512) 408 409 - point duplication during verification. ... ECDSA P256 test vectors (SHA512) 409 410 - duplication bug. [OK] ECDSA P256 test vectors (SHA512) 409 410 - duplication bug. ... ECDSA P256 test vectors (SHA512) 410 411 - point with x-coordinate 0. [OK] ECDSA P256 test vectors (SHA512) 410 411 - point with x-coordinate 0. ... ECDSA P256 test vectors (SHA512) 411 412 - point with x-coordinate 0. [OK] ECDSA P256 test vectors (SHA512) 411 412 - point with x-coordinate 0. ... ECDSA P256 test vectors (SHA512) 412 413 - comparison with point at infinity . [OK] ECDSA P256 test vectors (SHA512) 412 413 - comparison with point at infinity . ... ECDSA P256 test vectors (SHA512) 413 414 - extreme value for k and edgecase s. [OK] ECDSA P256 test vectors (SHA512) 413 414 - extreme value for k and edgecase s. ... ECDSA P256 test vectors (SHA512) 414 415 - extreme value for k and s^-1. [OK] ECDSA P256 test vectors (SHA512) 414 415 - extreme value for k and s^-1. ... ECDSA P256 test vectors (SHA512) 415 416 - extreme value for k and s^-1. [OK] ECDSA P256 test vectors (SHA512) 415 416 - extreme value for k and s^-1. ... ECDSA P256 test vectors (SHA512) 416 417 - extreme value for k and s^-1. [OK] ECDSA P256 test vectors (SHA512) 416 417 - extreme value for k and s^-1. ... ECDSA P256 test vectors (SHA512) 417 418 - extreme value for k and s^-1. [OK] ECDSA P256 test vectors (SHA512) 417 418 - extreme value for k and s^-1. ... ECDSA P256 test vectors (SHA512) 418 419 - extreme value for k. [OK] ECDSA P256 test vectors (SHA512) 418 419 - extreme value for k. ... ECDSA P256 test vectors (SHA512) 419 420 - extreme value for k and edgecase s. [OK] ECDSA P256 test vectors (SHA512) 419 420 - extreme value for k and edgecase s. ... ECDSA P256 test vectors (SHA512) 420 421 - extreme value for k and s^-1. [OK] ECDSA P256 test vectors (SHA512) 420 421 - extreme value for k and s^-1. ... ECDSA P256 test vectors (SHA512) 421 422 - extreme value for k and s^-1. [OK] ECDSA P256 test vectors (SHA512) 421 422 - extreme value for k and s^-1. ... ECDSA P256 test vectors (SHA512) 422 423 - extreme value for k and s^-1. [OK] ECDSA P256 test vectors (SHA512) 422 423 - extreme value for k and s^-1. ... ECDSA P256 test vectors (SHA512) 423 424 - extreme value for k and s^-1. [OK] ECDSA P256 test vectors (SHA512) 423 424 - extreme value for k and s^-1. ... ECDSA P256 test vectors (SHA512) 424 425 - extreme value for k. [OK] ECDSA P256 test vectors (SHA512) 424 425 - extreme value for k. ... ECDSA P256 test vectors (SHA512) 425 426 - testing point duplication. [OK] ECDSA P256 test vectors (SHA512) 425 426 - testing point duplication. ... ECDSA P256 test vectors (SHA512) 426 427 - testing point duplication. [OK] ECDSA P256 test vectors (SHA512) 426 427 - testing point duplication. ... ECDSA P256 test vectors (SHA512) 427 428 - testing point duplication. [OK] ECDSA P256 test vectors (SHA512) 427 428 - testing point duplication. ... ECDSA P256 test vectors (SHA512) 428 429 - testing point duplication. [OK] ECDSA P256 test vectors (SHA512) 428 429 - testing point duplication. ... ECDSA P256 test vectors (SHA512) 429 430 - pseudorandom signature. [OK] ECDSA P256 test vectors (SHA512) 429 430 - pseudorandom signature. ... ECDSA P256 test vectors (SHA512) 430 431 - pseudorandom signature. [OK] ECDSA P256 test vectors (SHA512) 430 431 - pseudorandom signature. ... ECDSA P256 test vectors (SHA512) 431 432 - pseudorandom signature. [OK] ECDSA P256 test vectors (SHA512) 431 432 - pseudorandom signature. ... ECDSA P256 test vectors (SHA512) 432 433 - pseudorandom signature. [OK] ECDSA P256 test vectors (SHA512) 432 433 - pseudorandom signature. ... ECDSA P256 test vectors (SHA512) 433 434 - x-coordinate of the public key has many trailing 0's. [OK] ECDSA P256 test vectors (SHA512) 433 434 - x-coordinate of the public key has many trailing 0's. ... ECDSA P256 test vectors (SHA512) 434 435 - x-coordinate of the public key has many trailing 0's. [OK] ECDSA P256 test vectors (SHA512) 434 435 - x-coordinate of the public key has many trailing 0's. ... ECDSA P256 test vectors (SHA512) 435 436 - x-coordinate of the public key has many trailing 0's. [OK] ECDSA P256 test vectors (SHA512) 435 436 - x-coordinate of the public key has many trailing 0's. ... ECDSA P256 test vectors (SHA512) 436 437 - y-coordinate of the public key has many trailing 0's. [OK] ECDSA P256 test vectors (SHA512) 436 437 - y-coordinate of the public key has many trailing 0's. ... ECDSA P256 test vectors (SHA512) 437 438 - y-coordinate of the public key has many trailing 0's. [OK] ECDSA P256 test vectors (SHA512) 437 438 - y-coordinate of the public key has many trailing 0's. ... ECDSA P256 test vectors (SHA512) 438 439 - y-coordinate of the public key has many trailing 0's. [OK] ECDSA P256 test vectors (SHA512) 438 439 - y-coordinate of the public key has many trailing 0's. ... ECDSA P256 test vectors (SHA512) 439 440 - y-coordinate of the public key has many trailing 1's. [OK] ECDSA P256 test vectors (SHA512) 439 440 - y-coordinate of the public key has many trailing 1's. ... ECDSA P256 test vectors (SHA512) 440 441 - y-coordinate of the public key has many trailing 1's. [OK] ECDSA P256 test vectors (SHA512) 440 441 - y-coordinate of the public key has many trailing 1's. ... ECDSA P256 test vectors (SHA512) 441 442 - y-coordinate of the public key has many trailing 1's. [OK] ECDSA P256 test vectors (SHA512) 441 442 - y-coordinate of the public key has many trailing 1's. ... ECDSA P256 test vectors (SHA512) 442 443 - x-coordinate of the public key has many trailing 1's. [OK] ECDSA P256 test vectors (SHA512) 442 443 - x-coordinate of the public key has many trailing 1's. ... ECDSA P256 test vectors (SHA512) 443 444 - x-coordinate of the public key has many trailing 1's. [OK] ECDSA P256 test vectors (SHA512) 443 444 - x-coordinate of the public key has many trailing 1's. ... ECDSA P256 test vectors (SHA512) 444 445 - x-coordinate of the public key has many trailing 1's. [OK] ECDSA P256 test vectors (SHA512) 444 445 - x-coordinate of the public key has many trailing 1's. ... ECDSA P256 test vectors (SHA512) 445 446 - x-coordinate of the public key is large. [OK] ECDSA P256 test vectors (SHA512) 445 446 - x-coordinate of the public key is large. ... ECDSA P256 test vectors (SHA512) 446 447 - x-coordinate of the public key is large. [OK] ECDSA P256 test vectors (SHA512) 446 447 - x-coordinate of the public key is large. ... ECDSA P256 test vectors (SHA512) 447 448 - x-coordinate of the public key is large. [OK] ECDSA P256 test vectors (SHA512) 447 448 - x-coordinate of the public key is large. ... ECDSA P256 test vectors (SHA512) 448 449 - x-coordinate of the public key is small. [OK] ECDSA P256 test vectors (SHA512) 448 449 - x-coordinate of the public key is small. ... ECDSA P256 test vectors (SHA512) 449 450 - x-coordinate of the public key is small. [OK] ECDSA P256 test vectors (SHA512) 449 450 - x-coordinate of the public key is small. ... ECDSA P256 test vectors (SHA512) 450 451 - x-coordinate of the public key is small. [OK] ECDSA P256 test vectors (SHA512) 450 451 - x-coordinate of the public key is small. ... ECDSA P256 test vectors (SHA512) 451 452 - y-coordinate of the public key is small. [OK] ECDSA P256 test vectors (SHA512) 451 452 - y-coordinate of the public key is small. ... ECDSA P256 test vectors (SHA512) 452 453 - y-coordinate of the public key is small. [OK] ECDSA P256 test vectors (SHA512) 452 453 - y-coordinate of the public key is small. ... ECDSA P256 test vectors (SHA512) 453 454 - y-coordinate of the public key is small. [OK] ECDSA P256 test vectors (SHA512) 453 454 - y-coordinate of the public key is small. ... ECDSA P256 test vectors (SHA512) 454 455 - y-coordinate of the public key is large. [OK] ECDSA P256 test vectors (SHA512) 454 455 - y-coordinate of the public key is large. ... ECDSA P256 test vectors (SHA512) 455 456 - y-coordinate of the public key is large. [OK] ECDSA P256 test vectors (SHA512) 455 456 - y-coordinate of the public key is large. ... ECDSA P256 test vectors (SHA512) 456 457 - y-coordinate of the public key is large. [OK] ECDSA P256 test vectors (SHA512) 456 457 - y-coordinate of the public key is large. ... ECDH P384 test vectors 0 1 - normal case. [OK] ECDH P384 test vectors 0 1 - normal case. ... ECDH P384 test vectors 1 2 - compressed public key. [OK] ECDH P384 test vectors 1 2 - compressed public key. ... ECDH P384 test vectors 2 3 - edge case for shared secret. [OK] ECDH P384 test vectors 2 3 - edge case for shared secret. ... ECDH P384 test vectors 3 4 - edge case for shared secret. [OK] ECDH P384 test vectors 3 4 - edge case for shared secret. ... ECDH P384 test vectors 4 5 - edge case for shared secret. [OK] ECDH P384 test vectors 4 5 - edge case for shared secret. ... ECDH P384 test vectors 5 6 - edge case for shared secret. [OK] ECDH P384 test vectors 5 6 - edge case for shared secret. ... ECDH P384 test vectors 6 7 - edge case for shared secret. [OK] ECDH P384 test vectors 6 7 - edge case for shared secret. ... ECDH P384 test vectors 7 8 - edge case for shared secret. [OK] ECDH P384 test vectors 7 8 - edge case for shared secret. ... ECDH P384 test vectors 8 9 - edge case for shared secret. [OK] ECDH P384 test vectors 8 9 - edge case for shared secret. ... ECDH P384 test vectors 9 10 - edge case for shared secret. [OK] ECDH P384 test vectors 9 10 - edge case for shared secret. ... ECDH P384 test vectors 10 11 - edge case for shared secret. [OK] ECDH P384 test vectors 10 11 - edge case for shared secret. ... ECDH P384 test vectors 11 12 - edge case for shared secret. [OK] ECDH P384 test vectors 11 12 - edge case for shared secret. ... ECDH P384 test vectors 12 13 - edge case for shared secret. [OK] ECDH P384 test vectors 12 13 - edge case for shared secret. ... ECDH P384 test vectors 13 14 - edge case for shared secret. [OK] ECDH P384 test vectors 13 14 - edge case for shared secret. ... ECDH P384 test vectors 14 15 - edge case for shared secret. [OK] ECDH P384 test vectors 14 15 - edge case for shared secret. ... ECDH P384 test vectors 15 16 - edge case for shared secret. [OK] ECDH P384 test vectors 15 16 - edge case for shared secret. ... ECDH P384 test vectors 16 17 - edge case for shared secret. [OK] ECDH P384 test vectors 16 17 - edge case for shared secret. ... ECDH P384 test vectors 17 18 - edge case for shared secret. [OK] ECDH P384 test vectors 17 18 - edge case for shared secret. ... ECDH P384 test vectors 18 19 - edge case for shared secret. [OK] ECDH P384 test vectors 18 19 - edge case for shared secret. ... ECDH P384 test vectors 19 20 - edge case for shared secret. [OK] ECDH P384 test vectors 19 20 - edge case for shared secret. ... ECDH P384 test vectors 20 21 - y-coordinate of the public key has many trailing 0's. [OK] ECDH P384 test vectors 20 21 - y-coordinate of the public key has many trailing 0's. ... ECDH P384 test vectors 21 22 - y-coordinate of the public key has many trailing 1's. [OK] ECDH P384 test vectors 21 22 - y-coordinate of the public key has many trailing 1's. ... ECDH P384 test vectors 22 23 - y-coordinate of the public key is small. [OK] ECDH P384 test vectors 22 23 - y-coordinate of the public key is small. ... ECDH P384 test vectors 23 24 - y-coordinate of the public key is large. [OK] ECDH P384 test vectors 23 24 - y-coordinate of the public key is large. ... ECDH P384 test vectors 24 25 - edge cases for ephemeral key. [OK] ECDH P384 test vectors 24 25 - edge cases for ephemeral key. ... ECDH P384 test vectors 25 26 - edge cases for ephemeral key. [OK] ECDH P384 test vectors 25 26 - edge cases for ephemeral key. ... ECDH P384 test vectors 26 27 - edge cases for ephemeral key. [OK] ECDH P384 test vectors 26 27 - edge cases for ephemeral key. ... ECDH P384 test vectors 27 28 - edge cases for ephemeral key. [OK] ECDH P384 test vectors 27 28 - edge cases for ephemeral key. ... ECDH P384 test vectors 28 29 - edge cases for ephemeral key. [OK] ECDH P384 test vectors 28 29 - edge cases for ephemeral key. ... ECDH P384 test vectors 29 30 - edge cases for ephemeral key. [OK] ECDH P384 test vectors 29 30 - edge cases for ephemeral key. ... ECDH P384 test vectors 30 31 - edge cases for ephemeral key. [OK] ECDH P384 test vectors 30 31 - edge cases for ephemeral key. ... ECDH P384 test vectors 31 32 - edge cases for ephemeral key. [OK] ECDH P384 test vectors 31 32 - edge cases for ephemeral key. ... ECDH P384 test vectors 32 33 - edge cases for ephemeral key. [OK] ECDH P384 test vectors 32 33 - edge cases for ephemeral key. ... ECDH P384 test vectors 33 34 - edge cases for ephemeral key. [OK] ECDH P384 test vectors 33 34 - edge cases for ephemeral key. ... ECDH P384 test vectors 34 35 - edge cases for ephemeral key. [OK] ECDH P384 test vectors 34 35 - edge cases for ephemeral key. ... ECDH P384 test vectors 35 36 - edge cases for ephemeral key. [OK] ECDH P384 test vectors 35 36 - edge cases for ephemeral key. ... ECDH P384 test vectors 36 37 - edge cases for ephemeral key. [OK] ECDH P384 test vectors 36 37 - edge cases for ephemeral key. ... ECDH P384 test vectors 37 38 - edge cases for ephemeral key. [OK] ECDH P384 test vectors 37 38 - edge cases for ephemeral key. ... ECDH P384 test vectors 38 39 - edge cases for ephemeral key. [OK] ECDH P384 test vectors 38 39 - edge cases for ephemeral key. ... ECDH P384 test vectors 39 40 - edge cases for ephemeral key. [OK] ECDH P384 test vectors 39 40 - edge cases for ephemeral key. ... ECDH P384 test vectors 40 41 - edge cases for ephemeral key. [OK] ECDH P384 test vectors 40 41 - edge cases for ephemeral key. ... ECDH P384 test vectors 41 42 - edge cases for ephemeral key. [OK] ECDH P384 test vectors 41 42 - edge cases for ephemeral key. ... ECDH P384 test vectors 42 43 - edge cases for ephemeral key. [OK] ECDH P384 test vectors 42 43 - edge cases for ephemeral key. ... ECDH P384 test vectors 43 44 - edge cases for ephemeral key. [OK] ECDH P384 test vectors 43 44 - edge cases for ephemeral key. ... ECDH P384 test vectors 44 45 - edge cases for ephemeral key. [OK] ECDH P384 test vectors 44 45 - edge cases for ephemeral key. ... ECDH P384 test vectors 45 46 - edge cases for ephemeral key. [OK] ECDH P384 test vectors 45 46 - edge cases for ephemeral key. ... ECDH P384 test vectors 46 47 - edge case for Jacobian and projective coordinates. [OK] ECDH P384 test vectors 46 47 - edge case for Jacobian and projective coordinates. ... ECDH P384 test vectors 47 48 - edge case for Jacobian and projective coordinates. [OK] ECDH P384 test vectors 47 48 - edge case for Jacobian and projective coordinates. ... ECDH P384 test vectors 48 49 - edge case for Jacobian and projective coordinates. [OK] ECDH P384 test vectors 48 49 - edge case for Jacobian and projective coordinates. ... ECDH P384 test vectors 49 50 - edge case for Jacobian and projective coordinates in left to right addition chain. [OK] ECDH P384 test vectors 49 50 - edge case for Jacobian and projective coordinates in left to right addition chain. ... ECDH P384 test vectors 50 51 - edge case for Jacobian and projective coordinates in left to right addition chain. [OK] ECDH P384 test vectors 50 51 - edge case for Jacobian and projective coordinates in left to right addition chain. ... ECDH P384 test vectors 51 52 - edge case for Jacobian and projective coordinates in left to right addition chain. [OK] ECDH P384 test vectors 51 52 - edge case for Jacobian and projective coordinates in left to right addition chain. ... ECDH P384 test vectors 52 53 - edge case for Jacobian and projective coordinates in left to right addition chain. [OK] ECDH P384 test vectors 52 53 - edge case for Jacobian and projective coordinates in left to right addition chain. ... ECDH P384 test vectors 53 54 - edge case for Jacobian and projective coordinates in left to right addition chain. [OK] ECDH P384 test vectors 53 54 - edge case for Jacobian and projective coordinates in left to right addition chain. ... ECDH P384 test vectors 54 55 - edge case for Jacobian and projective coordinates in left to right addition chain. [OK] ECDH P384 test vectors 54 55 - edge case for Jacobian and projective coordinates in left to right addition chain. ... ECDH P384 test vectors 55 56 - edge case for Jacobian and projective coordinates in left to right addition chain. [OK] ECDH P384 test vectors 55 56 - edge case for Jacobian and projective coordinates in left to right addition chain. ... ECDH P384 test vectors 56 57 - edge case for Jacobian and projective coordinates in left to right addition chain. [OK] ECDH P384 test vectors 56 57 - edge case for Jacobian and projective coordinates in left to right addition chain. ... ECDH P384 test vectors 57 58 - edge case for Jacobian and projective coordinates in left to right addition chain. [OK] ECDH P384 test vectors 57 58 - edge case for Jacobian and projective coordinates in left to right addition chain. ... ECDH P384 test vectors 58 59 - edge case for Jacobian and projective coordinates in left to right addition chain. [OK] ECDH P384 test vectors 58 59 - edge case for Jacobian and projective coordinates in left to right addition chain. ... ECDH P384 test vectors 59 60 - edge case for Jacobian and projective coordinates in left to right addition chain. [OK] ECDH P384 test vectors 59 60 - edge case for Jacobian and projective coordinates in left to right addition chain. ... ECDH P384 test vectors 60 61 - edge case for Jacobian and projective coordinates in left to right addition chain. [OK] ECDH P384 test vectors 60 61 - edge case for Jacobian and projective coordinates in left to right addition chain. ... ECDH P384 test vectors 61 62 - edge case for Jacobian and projective coordinates in left to right addition chain. [OK] ECDH P384 test vectors 61 62 - edge case for Jacobian and projective coordinates in left to right addition chain. ... ECDH P384 test vectors 62 63 - edge case for Jacobian and projective coordinates in left to right addition chain. [OK] ECDH P384 test vectors 62 63 - edge case for Jacobian and projective coordinates in left to right addition chain. ... ECDH P384 test vectors 63 64 - edge case for Jacobian and projective coordinates in left to right addition chain. [OK] ECDH P384 test vectors 63 64 - edge case for Jacobian and projective coordinates in left to right addition chain. ... ECDH P384 test vectors 64 65 - edge case for Jacobian and projective coordinates in left to right addition chain. [OK] ECDH P384 test vectors 64 65 - edge case for Jacobian and projective coordinates in left to right addition chain. ... ECDH P384 test vectors 65 66 - edge case for Jacobian and projective coordinates in left to right addition chain. [OK] ECDH P384 test vectors 65 66 - edge case for Jacobian and projective coordinates in left to right addition chain. ... ECDH P384 test vectors 66 67 - edge case for Jacobian and projective coordinates in left to right addition chain. [OK] ECDH P384 test vectors 66 67 - edge case for Jacobian and projective coordinates in left to right addition chain. ... ECDH P384 test vectors 67 68 - edge case for Jacobian and projective coordinates in left to right addition chain. [OK] ECDH P384 test vectors 67 68 - edge case for Jacobian and projective coordinates in left to right addition chain. ... ECDH P384 test vectors 68 69 - edge case for Jacobian and projective coordinates in left to right addition chain. [OK] ECDH P384 test vectors 68 69 - edge case for Jacobian and projective coordinates in left to right addition chain. ... ECDH P384 test vectors 69 70 - edge case for Jacobian and projective coordinates in left to right addition chain. [OK] ECDH P384 test vectors 69 70 - edge case for Jacobian and projective coordinates in left to right addition chain. ... ECDH P384 test vectors 70 71 - edge case for Jacobian and projective coordinates in precomputation or right to left addition chain. [OK] ECDH P384 test vectors 70 71 - edge case for Jacobian and projective coordinates in precomputation or right to left addition chain. ... ECDH P384 test vectors 71 72 - edge case for Jacobian and projective coordinates in precomputation or right to left addition chain. [OK] ECDH P384 test vectors 71 72 - edge case for Jacobian and projective coordinates in precomputation or right to left addition chain. ... ECDH P384 test vectors 72 73 - edge case for Jacobian and projective coordinates in precomputation or right to left addition chain. [OK] ECDH P384 test vectors 72 73 - edge case for Jacobian and projective coordinates in precomputation or right to left addition chain. ... ECDH P384 test vectors 73 74 - edge case for Jacobian and projective coordinates in precomputation or right to left addition chain. [OK] ECDH P384 test vectors 73 74 - edge case for Jacobian and projective coordinates in precomputation or right to left addition chain. ... ECDH P384 test vectors 74 75 - edge case for Jacobian and projective coordinates in precomputation or right to left addition chain. [OK] ECDH P384 test vectors 74 75 - edge case for Jacobian and projective coordinates in precomputation or right to left addition chain. ... ECDH P384 test vectors 75 76 - edge case for Jacobian and projective coordinates in precomputation or right to left addition chain. [OK] ECDH P384 test vectors 75 76 - edge case for Jacobian and projective coordinates in precomputation or right to left addition chain. ... ECDH P384 test vectors 76 77 - edge case for Jacobian and projective coordinates in right to left addition chain. [OK] ECDH P384 test vectors 76 77 - edge case for Jacobian and projective coordinates in right to left addition chain. ... ECDH P384 test vectors 77 78 - edge case for Jacobian and projective coordinates in right to left addition chain. [OK] ECDH P384 test vectors 77 78 - edge case for Jacobian and projective coordinates in right to left addition chain. ... ECDH P384 test vectors 78 79 - edge case for Jacobian and projective coordinates in right to left addition chain. [OK] ECDH P384 test vectors 78 79 - edge case for Jacobian and projective coordinates in right to left addition chain. ... ECDH P384 test vectors 79 80 - edge case for Jacobian and projective coordinates in right to left addition chain. [OK] ECDH P384 test vectors 79 80 - edge case for Jacobian and projective coordinates in right to left addition chain. ... ECDH P384 test vectors 80 81 - edge case for Jacobian and projective coordinates in right to left addition chain. [OK] ECDH P384 test vectors 80 81 - edge case for Jacobian and projective coordinates in right to left addition chain. ... ECDH P384 test vectors 81 82 - point with coordinate x = 0. [OK] ECDH P384 test vectors 81 82 - point with coordinate x = 0. ... ECDH P384 test vectors 82 83 - point with coordinate x = 0. [OK] ECDH P384 test vectors 82 83 - point with coordinate x = 0. ... ECDH P384 test vectors 83 84 - point with coordinate x = 0. [OK] ECDH P384 test vectors 83 84 - point with coordinate x = 0. ... ECDH P384 test vectors 84 85 - point with coordinate x = 0 in left to right addition chain. [OK] ECDH P384 test vectors 84 85 - point with coordinate x = 0 in left to right addition chain. ... ECDH P384 test vectors 85 86 - point with coordinate x = 0 in left to right addition chain. [OK] ECDH P384 test vectors 85 86 - point with coordinate x = 0 in left to right addition chain. ... ECDH P384 test vectors 86 87 - point with coordinate x = 0 in left to right addition chain. [OK] ECDH P384 test vectors 86 87 - point with coordinate x = 0 in left to right addition chain. ... ECDH P384 test vectors 87 88 - point with coordinate x = 0 in left to right addition chain. [OK] ECDH P384 test vectors 87 88 - point with coordinate x = 0 in left to right addition chain. ... ECDH P384 test vectors 88 89 - point with coordinate x = 0 in left to right addition chain. [OK] ECDH P384 test vectors 88 89 - point with coordinate x = 0 in left to right addition chain. ... ECDH P384 test vectors 89 90 - point with coordinate x = 0 in left to right addition chain. [OK] ECDH P384 test vectors 89 90 - point with coordinate x = 0 in left to right addition chain. ... ECDH P384 test vectors 90 91 - point with coordinate x = 0 in left to right addition chain. [OK] ECDH P384 test vectors 90 91 - point with coordinate x = 0 in left to right addition chain. ... ECDH P384 test vectors 91 92 - point with coordinate x = 0 in left to right addition chain. [OK] ECDH P384 test vectors 91 92 - point with coordinate x = 0 in left to right addition chain. ... ECDH P384 test vectors 92 93 - point with coordinate x = 0 in left to right addition chain. [OK] ECDH P384 test vectors 92 93 - point with coordinate x = 0 in left to right addition chain. ... ECDH P384 test vectors 93 94 - point with coordinate x = 0 in left to right addition chain. [OK] ECDH P384 test vectors 93 94 - point with coordinate x = 0 in left to right addition chain. ... ECDH P384 test vectors 94 95 - point with coordinate x = 0 in left to right addition chain. [OK] ECDH P384 test vectors 94 95 - point with coordinate x = 0 in left to right addition chain. ... ECDH P384 test vectors 95 96 - point with coordinate x = 0 in left to right addition chain. [OK] ECDH P384 test vectors 95 96 - point with coordinate x = 0 in left to right addition chain. ... ECDH P384 test vectors 96 97 - point with coordinate x = 0 in left to right addition chain. [OK] ECDH P384 test vectors 96 97 - point with coordinate x = 0 in left to right addition chain. ... ECDH P384 test vectors 97 98 - point with coordinate x = 0 in left to right addition chain. [OK] ECDH P384 test vectors 97 98 - point with coordinate x = 0 in left to right addition chain. ... ECDH P384 test vectors 98 99 - point with coordinate x = 0 in left to right addition chain. [OK] ECDH P384 test vectors 98 99 - point with coordinate x = 0 in left to right addition chain. ... ECDH P384 test vectors 99 100 - point with coordinate x = 0 in left to right addition chain. [OK] ECDH P384 test vectors 99 100 - point with coordinate x = 0 in left to right addition chain. ... ECDH P384 test vectors 100 101 - point with coordinate x = 0 in left to right addition chain. [OK] ECDH P384 test vectors 100 101 - point with coordinate x = 0 in left to right addition chain. ... ECDH P384 test vectors 101 102 - point with coordinate x = 0 in left to right addition chain. [OK] ECDH P384 test vectors 101 102 - point with coordinate x = 0 in left to right addition chain. ... ECDH P384 test vectors 102 103 - point with coordinate x = 0 in left to right addition chain. [OK] ECDH P384 test vectors 102 103 - point with coordinate x = 0 in left to right addition chain. ... ECDH P384 test vectors 103 104 - point with coordinate x = 0 in left to right addition chain. [OK] ECDH P384 test vectors 103 104 - point with coordinate x = 0 in left to right addition chain. ... ECDH P384 test vectors 104 105 - point with coordinate x = 0 in left to right addition chain. [OK] ECDH P384 test vectors 104 105 - point with coordinate x = 0 in left to right addition chain. ... ECDH P384 test vectors 105 106 - point with coordinate x = 0 in precomputation or right to left addition chain. [OK] ECDH P384 test vectors 105 106 - point with coordinate x = 0 in precomputation or right to left addition chain. ... ECDH P384 test vectors 106 107 - point with coordinate x = 0 in precomputation or right to left addition chain. [OK] ECDH P384 test vectors 106 107 - point with coordinate x = 0 in precomputation or right to left addition chain. ... ECDH P384 test vectors 107 108 - point with coordinate x = 0 in precomputation or right to left addition chain. [OK] ECDH P384 test vectors 107 108 - point with coordinate x = 0 in precomputation or right to left addition chain. ... ECDH P384 test vectors 108 109 - point with coordinate x = 0 in precomputation or right to left addition chain. [OK] ECDH P384 test vectors 108 109 - point with coordinate x = 0 in precomputation or right to left addition chain. ... ECDH P384 test vectors 109 110 - point with coordinate x = 0 in precomputation or right to left addition chain. [OK] ECDH P384 test vectors 109 110 - point with coordinate x = 0 in precomputation or right to left addition chain. ... ECDH P384 test vectors 110 111 - point with coordinate x = 0 in precomputation or right to left addition chain. [OK] ECDH P384 test vectors 110 111 - point with coordinate x = 0 in precomputation or right to left addition chain. ... ECDH P384 test vectors 111 112 - point with coordinate x = 0 in right to left addition chain. [OK] ECDH P384 test vectors 111 112 - point with coordinate x = 0 in right to left addition chain. ... ECDH P384 test vectors 112 113 - point with coordinate x = 0 in right to left addition chain. [OK] ECDH P384 test vectors 112 113 - point with coordinate x = 0 in right to left addition chain. ... ECDH P384 test vectors 113 114 - point with coordinate x = 0 in right to left addition chain. [OK] ECDH P384 test vectors 113 114 - point with coordinate x = 0 in right to left addition chain. ... ECDH P384 test vectors 114 115 - point with coordinate x = 0 in right to left addition chain. [OK] ECDH P384 test vectors 114 115 - point with coordinate x = 0 in right to left addition chain. ... ECDH P384 test vectors 115 116 - point with coordinate x = 0 in right to left addition chain. [OK] ECDH P384 test vectors 115 116 - point with coordinate x = 0 in right to left addition chain. ... ECDH P384 test vectors 116 117 - point with coordinate y = 1. [OK] ECDH P384 test vectors 116 117 - point with coordinate y = 1. ... ECDH P384 test vectors 117 118 - point with coordinate y = 1. [OK] ECDH P384 test vectors 117 118 - point with coordinate y = 1. ... ECDH P384 test vectors 118 119 - point with coordinate y = 1. [OK] ECDH P384 test vectors 118 119 - point with coordinate y = 1. ... ECDH P384 test vectors 119 120 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P384 test vectors 119 120 - point with coordinate y = 1 in left to right addition chain. ... ECDH P384 test vectors 120 121 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P384 test vectors 120 121 - point with coordinate y = 1 in left to right addition chain. ... ECDH P384 test vectors 121 122 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P384 test vectors 121 122 - point with coordinate y = 1 in left to right addition chain. ... ECDH P384 test vectors 122 123 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P384 test vectors 122 123 - point with coordinate y = 1 in left to right addition chain. ... ECDH P384 test vectors 123 124 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P384 test vectors 123 124 - point with coordinate y = 1 in left to right addition chain. ... ECDH P384 test vectors 124 125 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P384 test vectors 124 125 - point with coordinate y = 1 in left to right addition chain. ... ECDH P384 test vectors 125 126 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P384 test vectors 125 126 - point with coordinate y = 1 in left to right addition chain. ... ECDH P384 test vectors 126 127 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P384 test vectors 126 127 - point with coordinate y = 1 in left to right addition chain. ... ECDH P384 test vectors 127 128 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P384 test vectors 127 128 - point with coordinate y = 1 in left to right addition chain. ... ECDH P384 test vectors 128 129 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P384 test vectors 128 129 - point with coordinate y = 1 in left to right addition chain. ... ECDH P384 test vectors 129 130 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P384 test vectors 129 130 - point with coordinate y = 1 in left to right addition chain. ... ECDH P384 test vectors 130 131 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P384 test vectors 130 131 - point with coordinate y = 1 in left to right addition chain. ... ECDH P384 test vectors 131 132 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P384 test vectors 131 132 - point with coordinate y = 1 in left to right addition chain. ... ECDH P384 test vectors 132 133 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P384 test vectors 132 133 - point with coordinate y = 1 in left to right addition chain. ... ECDH P384 test vectors 133 134 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P384 test vectors 133 134 - point with coordinate y = 1 in left to right addition chain. ... ECDH P384 test vectors 134 135 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P384 test vectors 134 135 - point with coordinate y = 1 in left to right addition chain. ... ECDH P384 test vectors 135 136 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P384 test vectors 135 136 - point with coordinate y = 1 in left to right addition chain. ... ECDH P384 test vectors 136 137 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P384 test vectors 136 137 - point with coordinate y = 1 in left to right addition chain. ... ECDH P384 test vectors 137 138 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P384 test vectors 137 138 - point with coordinate y = 1 in left to right addition chain. ... ECDH P384 test vectors 138 139 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P384 test vectors 138 139 - point with coordinate y = 1 in left to right addition chain. ... ECDH P384 test vectors 139 140 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P384 test vectors 139 140 - point with coordinate y = 1 in left to right addition chain. ... ECDH P384 test vectors 140 141 - point with coordinate y = 1 in precomputation or right to left addition chain. [OK] ECDH P384 test vectors 140 141 - point with coordinate y = 1 in precomputation or right to left addition chain. ... ECDH P384 test vectors 141 142 - point with coordinate y = 1 in precomputation or right to left addition chain. [OK] ECDH P384 test vectors 141 142 - point with coordinate y = 1 in precomputation or right to left addition chain. ... ECDH P384 test vectors 142 143 - point with coordinate y = 1 in precomputation or right to left addition chain. [OK] ECDH P384 test vectors 142 143 - point with coordinate y = 1 in precomputation or right to left addition chain. ... ECDH P384 test vectors 143 144 - point with coordinate y = 1 in precomputation or right to left addition chain. [OK] ECDH P384 test vectors 143 144 - point with coordinate y = 1 in precomputation or right to left addition chain. ... ECDH P384 test vectors 144 145 - point with coordinate y = 1 in precomputation or right to left addition chain. [OK] ECDH P384 test vectors 144 145 - point with coordinate y = 1 in precomputation or right to left addition chain. ... ECDH P384 test vectors 145 146 - point with coordinate y = 1 in precomputation or right to left addition chain. [OK] ECDH P384 test vectors 145 146 - point with coordinate y = 1 in precomputation or right to left addition chain. ... ECDH P384 test vectors 146 147 - point with coordinate y = 1 in right to left addition chain. [OK] ECDH P384 test vectors 146 147 - point with coordinate y = 1 in right to left addition chain. ... ECDH P384 test vectors 147 148 - point with coordinate y = 1 in right to left addition chain. [OK] ECDH P384 test vectors 147 148 - point with coordinate y = 1 in right to left addition chain. ... ECDH P384 test vectors 148 149 - point with coordinate y = 1 in right to left addition chain. [OK] ECDH P384 test vectors 148 149 - point with coordinate y = 1 in right to left addition chain. ... ECDH P384 test vectors 149 150 - point with coordinate y = 1 in right to left addition chain. [OK] ECDH P384 test vectors 149 150 - point with coordinate y = 1 in right to left addition chain. ... ECDH P384 test vectors 150 151 - point with coordinate y = 1 in right to left addition chain. [OK] ECDH P384 test vectors 150 151 - point with coordinate y = 1 in right to left addition chain. ... ECDH P384 test vectors 151 152 - edge case private key. [OK] ECDH P384 test vectors 151 152 - edge case private key. ... ECDH P384 test vectors 152 153 - edge case private key. [OK] ECDH P384 test vectors 152 153 - edge case private key. ... ECDH P384 test vectors 153 154 - edge case private key. [OK] ECDH P384 test vectors 153 154 - edge case private key. ... ECDH P384 test vectors 154 155 - edge case private key. [OK] ECDH P384 test vectors 154 155 - edge case private key. ... ECDH P384 test vectors 155 156 - edge case private key. [OK] ECDH P384 test vectors 155 156 - edge case private key. ... ECDH P384 test vectors 156 157 - edge case private key. [OK] ECDH P384 test vectors 156 157 - edge case private key. ... ECDH P384 test vectors 157 158 - edge case private key. [OK] ECDH P384 test vectors 157 158 - edge case private key. ... ECDH P384 test vectors 158 159 - edge case private key. [OK] ECDH P384 test vectors 158 159 - edge case private key. ... ECDH P384 test vectors 159 160 - edge case private key. [OK] ECDH P384 test vectors 159 160 - edge case private key. ... ECDH P384 test vectors 160 161 - edge case private key. [OK] ECDH P384 test vectors 160 161 - edge case private key. ... ECDH P384 test vectors 161 162 - edge case private key. [OK] ECDH P384 test vectors 161 162 - edge case private key. ... ECDH P384 test vectors 162 163 - edge case private key. [OK] ECDH P384 test vectors 162 163 - edge case private key. ... ECDH P384 test vectors 163 164 - edge case private key. [OK] ECDH P384 test vectors 163 164 - edge case private key. ... ECDH P384 test vectors 164 165 - point is not on curve. [OK] ECDH P384 test vectors 164 165 - point is not on curve. ... ECDH P384 test vectors 165 166 - point is not on curve. [OK] ECDH P384 test vectors 165 166 - point is not on curve. ... ECDH P384 test vectors 166 167 - point is not on curve. [OK] ECDH P384 test vectors 166 167 - point is not on curve. ... ECDH P384 test vectors 167 168 - point is not on curve. [OK] ECDH P384 test vectors 167 168 - point is not on curve. ... ECDH P384 test vectors 168 169 - point is not on curve. [OK] ECDH P384 test vectors 168 169 - point is not on curve. ... ECDH P384 test vectors 169 170 - point is not on curve. [OK] ECDH P384 test vectors 169 170 - point is not on curve. ... ECDH P384 test vectors 170 171 - point is not on curve. [OK] ECDH P384 test vectors 170 171 - point is not on curve. ... ECDH P384 test vectors 171 172 - point is not on curve. [OK] ECDH P384 test vectors 171 172 - point is not on curve. ... ECDH P384 test vectors 172 173 - point is not on curve. [OK] ECDH P384 test vectors 172 173 - point is not on curve. ... ECDH P384 test vectors 173 174 - point is not on curve. [OK] ECDH P384 test vectors 173 174 - point is not on curve. ... ECDH P384 test vectors 174 175 - point is not on curve. [OK] ECDH P384 test vectors 174 175 - point is not on curve. ... ECDH P384 test vectors 175 176 - point is not on curve. [OK] ECDH P384 test vectors 175 176 - point is not on curve. ... ECDH P384 test vectors 176 177 - point is not on curve. [OK] ECDH P384 test vectors 176 177 - point is not on curve. ... ECDH P384 test vectors 177 178 - point is not on curve. [OK] ECDH P384 test vectors 177 178 - point is not on curve. ... ECDH P384 test vectors 178 179 - point is not on curve. [OK] ECDH P384 test vectors 178 179 - point is not on curve. ... ECDH P384 test vectors 179 180 - point is not on curve. [OK] ECDH P384 test vectors 179 180 - point is not on curve. ... ECDH P384 test vectors 180 181 - . [OK] ECDH P384 test vectors 180 181 - . ... ECDH P384 test vectors 181 182 - public point not on curve. [OK] ECDH P384 test vectors 181 182 - public point not on curve. ... ECDH P384 test vectors 182 183 - public point = (0,0). [OK] ECDH P384 test vectors 182 183 - public point = (0,0). ... ECDH P384 test vectors 183 196 - using secp224r1. [OK] ECDH P384 test vectors 183 196 - using secp224r1. ... ECDH P384 test vectors 184 197 - using secp256r1. [OK] ECDH P384 test vectors 184 197 - using secp256r1. ... ECDH P384 test vectors 185 198 - using secp256k1. [OK] ECDH P384 test vectors 185 198 - using secp256k1. ... ECDH P384 test vectors 186 201 - Public key uses wrong curve: secp224r1. [OK] ECDH P384 test vectors 186 201 - Public key uses wrong curve: secp224r1. ... ECDH P384 test vectors 187 202 - Public key uses wrong curve: secp256r1. [OK] ECDH P384 test vectors 187 202 - Public key uses wrong curve: secp256r1. ... ECDH P384 test vectors 188 203 - Public key uses wrong curve: secp521r1. [OK] ECDH P384 test vectors 188 203 - Public key uses wrong curve: secp521r1. ... ECDH P384 test vectors 189 204 - Public key uses wrong curve: secp256k1. [OK] ECDH P384 test vectors 189 204 - Public key uses wrong curve: secp256k1. ... ECDH P384 test vectors 190 205 - Public key uses wrong curve: secp224k1. [OK] ECDH P384 test vectors 190 205 - Public key uses wrong curve: secp224k1. ... ECDH P384 test vectors 191 206 - Public key uses wrong curve: brainpoolP224r1. [OK] ECDH P384 test vectors 191 206 - Public key uses wrong curve: brainpoolP224r1. ... ECDH P384 test vectors 192 207 - Public key uses wrong curve: brainpoolP256r1. [OK] ECDH P384 test vectors 192 207 - Public key uses wrong curve: brainpoolP256r1. ... ECDH P384 test vectors 193 208 - Public key uses wrong curve: brainpoolP320r1. [OK] ECDH P384 test vectors 193 208 - Public key uses wrong curve: brainpoolP320r1. ... ECDH P384 test vectors 194 209 - Public key uses wrong curve: brainpoolP384r1. [OK] ECDH P384 test vectors 194 209 - Public key uses wrong curve: brainpoolP384r1. ... ECDH P384 test vectors 195 210 - Public key uses wrong curve: brainpoolP512r1. [OK] ECDH P384 test vectors 195 210 - Public key uses wrong curve: brainpoolP512r1. ... ECDH P384 test vectors 196 211 - Public key uses wrong curve: brainpoolP224t1. [OK] ECDH P384 test vectors 196 211 - Public key uses wrong curve: brainpoolP224t1. ... ECDH P384 test vectors 197 212 - Public key uses wrong curve: brainpoolP256t1. [OK] ECDH P384 test vectors 197 212 - Public key uses wrong curve: brainpoolP256t1. ... ECDH P384 test vectors 198 213 - Public key uses wrong curve: brainpoolP320t1. [OK] ECDH P384 test vectors 198 213 - Public key uses wrong curve: brainpoolP320t1. ... ECDH P384 test vectors 199 214 - Public key uses wrong curve: brainpoolP384t1. [OK] ECDH P384 test vectors 199 214 - Public key uses wrong curve: brainpoolP384t1. ... ECDH P384 test vectors 200 215 - Public key uses wrong curve: brainpoolP512t1. [OK] ECDH P384 test vectors 200 215 - Public key uses wrong curve: brainpoolP512t1. ... ECDH P384 test vectors 201 216 - invalid public key. [OK] ECDH P384 test vectors 201 216 - invalid public key. ... ECDSA P384 test vectors (SHA384) 0 1 - signature malleability. [OK] ECDSA P384 test vectors (SHA384) 0 1 - signature malleability. ... ECDSA P384 test vectors (SHA384) 1 2 - Legacy:ASN encoding of s misses leading 0. [OK] ECDSA P384 test vectors (SHA384) 1 2 - Legacy:ASN encoding of s misses leading 0. ... ECDSA P384 test vectors (SHA384) 2 3 - valid. [OK] ECDSA P384 test vectors (SHA384) 2 3 - valid. ... ECDSA P384 test vectors (SHA384) 3 4 - long form encoding of length of sequence. [OK] ECDSA P384 test vectors (SHA384) 3 4 - long form encoding of length of sequence. ... ECDSA P384 test vectors (SHA384) 4 5 - length of sequence contains leading 0. [OK] ECDSA P384 test vectors (SHA384) 4 5 - length of sequence contains leading 0. ... ECDSA P384 test vectors (SHA384) 5 6 - wrong length of sequence. [OK] ECDSA P384 test vectors (SHA384) 5 6 - wrong length of sequence. ... ECDSA P384 test vectors (SHA384) 6 7 - wrong length of sequence. [OK] ECDSA P384 test vectors (SHA384) 6 7 - wrong length of sequence. ... ECDSA P384 test vectors (SHA384) 7 8 - uint32 overflow in length of sequence. [OK] ECDSA P384 test vectors (SHA384) 7 8 - uint32 overflow in length of sequence. ... ECDSA P384 test vectors (SHA384) 8 9 - uint64 overflow in length of sequence. [OK] ECDSA P384 test vectors (SHA384) 8 9 - uint64 overflow in length of sequence. ... ECDSA P384 test vectors (SHA384) 9 10 - length of sequence = 2**31 - 1. [OK] ECDSA P384 test vectors (SHA384) 9 10 - length of sequence = 2**31 - 1. ... ECDSA P384 test vectors (SHA384) 10 11 - length of sequence = 2**32 - 1. [OK] ECDSA P384 test vectors (SHA384) 10 11 - length of sequence = 2**32 - 1. ... ECDSA P384 test vectors (SHA384) 11 12 - length of sequence = 2**40 - 1. [OK] ECDSA P384 test vectors (SHA384) 11 12 - length of sequence = 2**40 - 1. ... ECDSA P384 test vectors (SHA384) 12 13 - length of sequence = 2**64 - 1. [OK] ECDSA P384 test vectors (SHA384) 12 13 - length of sequence = 2**64 - 1. ... ECDSA P384 test vectors (SHA384) 13 14 - incorrect length of sequence. [OK] ECDSA P384 test vectors (SHA384) 13 14 - incorrect length of sequence. ... ECDSA P384 test vectors (SHA384) 14 15 - indefinite length without termination. [OK] ECDSA P384 test vectors (SHA384) 14 15 - indefinite length without termination. ... ECDSA P384 test vectors (SHA384) 15 16 - indefinite length without termination. [OK] ECDSA P384 test vectors (SHA384) 15 16 - indefinite length without termination. ... ECDSA P384 test vectors (SHA384) 16 17 - indefinite length without termination. [OK] ECDSA P384 test vectors (SHA384) 16 17 - indefinite length without termination. ... ECDSA P384 test vectors (SHA384) 17 18 - removing sequence. [OK] ECDSA P384 test vectors (SHA384) 17 18 - removing sequence. ... ECDSA P384 test vectors (SHA384) 18 19 - lonely sequence tag. [OK] ECDSA P384 test vectors (SHA384) 18 19 - lonely sequence tag. ... ECDSA P384 test vectors (SHA384) 19 20 - appending 0's to sequence. [OK] ECDSA P384 test vectors (SHA384) 19 20 - appending 0's to sequence. ... ECDSA P384 test vectors (SHA384) 20 21 - prepending 0's to sequence. [OK] ECDSA P384 test vectors (SHA384) 20 21 - prepending 0's to sequence. ... ECDSA P384 test vectors (SHA384) 21 22 - appending unused 0's to sequence. [OK] ECDSA P384 test vectors (SHA384) 21 22 - appending unused 0's to sequence. ... ECDSA P384 test vectors (SHA384) 22 23 - appending null value to sequence. [OK] ECDSA P384 test vectors (SHA384) 22 23 - appending null value to sequence. ... ECDSA P384 test vectors (SHA384) 23 24 - including garbage. [OK] ECDSA P384 test vectors (SHA384) 23 24 - including garbage. ... ECDSA P384 test vectors (SHA384) 24 25 - including garbage. [OK] ECDSA P384 test vectors (SHA384) 24 25 - including garbage. ... ECDSA P384 test vectors (SHA384) 25 26 - including garbage. [OK] ECDSA P384 test vectors (SHA384) 25 26 - including garbage. ... ECDSA P384 test vectors (SHA384) 26 27 - including garbage. [OK] ECDSA P384 test vectors (SHA384) 26 27 - including garbage. ... ECDSA P384 test vectors (SHA384) 27 28 - including garbage. [OK] ECDSA P384 test vectors (SHA384) 27 28 - including garbage. ... ECDSA P384 test vectors (SHA384) 28 29 - including garbage. [OK] ECDSA P384 test vectors (SHA384) 28 29 - including garbage. ... ECDSA P384 test vectors (SHA384) 29 30 - including garbage. [OK] ECDSA P384 test vectors (SHA384) 29 30 - including garbage. ... ECDSA P384 test vectors (SHA384) 30 31 - including garbage. [OK] ECDSA P384 test vectors (SHA384) 30 31 - including garbage. ... ECDSA P384 test vectors (SHA384) 31 32 - including garbage. [OK] ECDSA P384 test vectors (SHA384) 31 32 - including garbage. ... ECDSA P384 test vectors (SHA384) 32 33 - including undefined tags. [OK] ECDSA P384 test vectors (SHA384) 32 33 - including undefined tags. ... ECDSA P384 test vectors (SHA384) 33 34 - including undefined tags. [OK] ECDSA P384 test vectors (SHA384) 33 34 - including undefined tags. ... ECDSA P384 test vectors (SHA384) 34 35 - including undefined tags. [OK] ECDSA P384 test vectors (SHA384) 34 35 - including undefined tags. ... ECDSA P384 test vectors (SHA384) 35 36 - including undefined tags. [OK] ECDSA P384 test vectors (SHA384) 35 36 - including undefined tags. ... ECDSA P384 test vectors (SHA384) 36 37 - including undefined tags. [OK] ECDSA P384 test vectors (SHA384) 36 37 - including undefined tags. ... ECDSA P384 test vectors (SHA384) 37 38 - including undefined tags. [OK] ECDSA P384 test vectors (SHA384) 37 38 - including undefined tags. ... ECDSA P384 test vectors (SHA384) 38 39 - truncated length of sequence. [OK] ECDSA P384 test vectors (SHA384) 38 39 - truncated length of sequence. ... ECDSA P384 test vectors (SHA384) 39 40 - using composition with indefinite length. [OK] ECDSA P384 test vectors (SHA384) 39 40 - using composition with indefinite length. ... ECDSA P384 test vectors (SHA384) 40 41 - using composition with indefinite length. [OK] ECDSA P384 test vectors (SHA384) 40 41 - using composition with indefinite length. ... ECDSA P384 test vectors (SHA384) 41 42 - using composition with indefinite length. [OK] ECDSA P384 test vectors (SHA384) 41 42 - using composition with indefinite length. ... ECDSA P384 test vectors (SHA384) 42 43 - using composition with wrong tag. [OK] ECDSA P384 test vectors (SHA384) 42 43 - using composition with wrong tag. ... ECDSA P384 test vectors (SHA384) 43 44 - using composition with wrong tag. [OK] ECDSA P384 test vectors (SHA384) 43 44 - using composition with wrong tag. ... ECDSA P384 test vectors (SHA384) 44 45 - using composition with wrong tag. [OK] ECDSA P384 test vectors (SHA384) 44 45 - using composition with wrong tag. ... ECDSA P384 test vectors (SHA384) 45 46 - Replacing sequence with NULL. [OK] ECDSA P384 test vectors (SHA384) 45 46 - Replacing sequence with NULL. ... ECDSA P384 test vectors (SHA384) 46 47 - changing tag value of sequence. [OK] ECDSA P384 test vectors (SHA384) 46 47 - changing tag value of sequence. ... ECDSA P384 test vectors (SHA384) 47 48 - changing tag value of sequence. [OK] ECDSA P384 test vectors (SHA384) 47 48 - changing tag value of sequence. ... ECDSA P384 test vectors (SHA384) 48 49 - changing tag value of sequence. [OK] ECDSA P384 test vectors (SHA384) 48 49 - changing tag value of sequence. ... ECDSA P384 test vectors (SHA384) 49 50 - changing tag value of sequence. [OK] ECDSA P384 test vectors (SHA384) 49 50 - changing tag value of sequence. ... ECDSA P384 test vectors (SHA384) 50 51 - changing tag value of sequence. [OK] ECDSA P384 test vectors (SHA384) 50 51 - changing tag value of sequence. ... ECDSA P384 test vectors (SHA384) 51 52 - dropping value of sequence. [OK] ECDSA P384 test vectors (SHA384) 51 52 - dropping value of sequence. ... ECDSA P384 test vectors (SHA384) 52 53 - using composition for sequence. [OK] ECDSA P384 test vectors (SHA384) 52 53 - using composition for sequence. ... ECDSA P384 test vectors (SHA384) 53 54 - truncated sequence. [OK] ECDSA P384 test vectors (SHA384) 53 54 - truncated sequence. ... ECDSA P384 test vectors (SHA384) 54 55 - truncated sequence. [OK] ECDSA P384 test vectors (SHA384) 54 55 - truncated sequence. ... ECDSA P384 test vectors (SHA384) 55 56 - indefinite length. [OK] ECDSA P384 test vectors (SHA384) 55 56 - indefinite length. ... ECDSA P384 test vectors (SHA384) 56 57 - indefinite length with truncated delimiter. [OK] ECDSA P384 test vectors (SHA384) 56 57 - indefinite length with truncated delimiter. ... ECDSA P384 test vectors (SHA384) 57 58 - indefinite length with additional element. [OK] ECDSA P384 test vectors (SHA384) 57 58 - indefinite length with additional element. ... ECDSA P384 test vectors (SHA384) 58 59 - indefinite length with truncated element. [OK] ECDSA P384 test vectors (SHA384) 58 59 - indefinite length with truncated element. ... ECDSA P384 test vectors (SHA384) 59 60 - indefinite length with garbage. [OK] ECDSA P384 test vectors (SHA384) 59 60 - indefinite length with garbage. ... ECDSA P384 test vectors (SHA384) 60 61 - indefinite length with nonempty EOC. [OK] ECDSA P384 test vectors (SHA384) 60 61 - indefinite length with nonempty EOC. ... ECDSA P384 test vectors (SHA384) 61 62 - prepend empty sequence. [OK] ECDSA P384 test vectors (SHA384) 61 62 - prepend empty sequence. ... ECDSA P384 test vectors (SHA384) 62 63 - append empty sequence. [OK] ECDSA P384 test vectors (SHA384) 62 63 - append empty sequence. ... ECDSA P384 test vectors (SHA384) 63 64 - append garbage with high tag number. [OK] ECDSA P384 test vectors (SHA384) 63 64 - append garbage with high tag number. ... ECDSA P384 test vectors (SHA384) 64 65 - sequence of sequence. [OK] ECDSA P384 test vectors (SHA384) 64 65 - sequence of sequence. ... ECDSA P384 test vectors (SHA384) 65 66 - truncated sequence: removed last 1 elements. [OK] ECDSA P384 test vectors (SHA384) 65 66 - truncated sequence: removed last 1 elements. ... ECDSA P384 test vectors (SHA384) 66 67 - repeating element in sequence. [OK] ECDSA P384 test vectors (SHA384) 66 67 - repeating element in sequence. ... ECDSA P384 test vectors (SHA384) 67 68 - long form encoding of length of integer. [OK] ECDSA P384 test vectors (SHA384) 67 68 - long form encoding of length of integer. ... ECDSA P384 test vectors (SHA384) 68 69 - long form encoding of length of integer. [OK] ECDSA P384 test vectors (SHA384) 68 69 - long form encoding of length of integer. ... ECDSA P384 test vectors (SHA384) 69 70 - length of integer contains leading 0. [OK] ECDSA P384 test vectors (SHA384) 69 70 - length of integer contains leading 0. ... ECDSA P384 test vectors (SHA384) 70 71 - length of integer contains leading 0. [OK] ECDSA P384 test vectors (SHA384) 70 71 - length of integer contains leading 0. ... ECDSA P384 test vectors (SHA384) 71 72 - wrong length of integer. [OK] ECDSA P384 test vectors (SHA384) 71 72 - wrong length of integer. ... ECDSA P384 test vectors (SHA384) 72 73 - wrong length of integer. [OK] ECDSA P384 test vectors (SHA384) 72 73 - wrong length of integer. ... ECDSA P384 test vectors (SHA384) 73 74 - wrong length of integer. [OK] ECDSA P384 test vectors (SHA384) 73 74 - wrong length of integer. ... ECDSA P384 test vectors (SHA384) 74 75 - wrong length of integer. [OK] ECDSA P384 test vectors (SHA384) 74 75 - wrong length of integer. ... ECDSA P384 test vectors (SHA384) 75 76 - uint32 overflow in length of integer. [OK] ECDSA P384 test vectors (SHA384) 75 76 - uint32 overflow in length of integer. ... ECDSA P384 test vectors (SHA384) 76 77 - uint32 overflow in length of integer. [OK] ECDSA P384 test vectors (SHA384) 76 77 - uint32 overflow in length of integer. ... ECDSA P384 test vectors (SHA384) 77 78 - uint64 overflow in length of integer. [OK] ECDSA P384 test vectors (SHA384) 77 78 - uint64 overflow in length of integer. ... ECDSA P384 test vectors (SHA384) 78 79 - uint64 overflow in length of integer. [OK] ECDSA P384 test vectors (SHA384) 78 79 - uint64 overflow in length of integer. ... ECDSA P384 test vectors (SHA384) 79 80 - length of integer = 2**31 - 1. [OK] ECDSA P384 test vectors (SHA384) 79 80 - length of integer = 2**31 - 1. ... ECDSA P384 test vectors (SHA384) 80 81 - length of integer = 2**31 - 1. [OK] ECDSA P384 test vectors (SHA384) 80 81 - length of integer = 2**31 - 1. ... ECDSA P384 test vectors (SHA384) 81 82 - length of integer = 2**32 - 1. [OK] ECDSA P384 test vectors (SHA384) 81 82 - length of integer = 2**32 - 1. ... ECDSA P384 test vectors (SHA384) 82 83 - length of integer = 2**32 - 1. [OK] ECDSA P384 test vectors (SHA384) 82 83 - length of integer = 2**32 - 1. ... ECDSA P384 test vectors (SHA384) 83 84 - length of integer = 2**40 - 1. [OK] ECDSA P384 test vectors (SHA384) 83 84 - length of integer = 2**40 - 1. ... ECDSA P384 test vectors (SHA384) 84 85 - length of integer = 2**40 - 1. [OK] ECDSA P384 test vectors (SHA384) 84 85 - length of integer = 2**40 - 1. ... ECDSA P384 test vectors (SHA384) 85 86 - length of integer = 2**64 - 1. [OK] ECDSA P384 test vectors (SHA384) 85 86 - length of integer = 2**64 - 1. ... ECDSA P384 test vectors (SHA384) 86 87 - length of integer = 2**64 - 1. [OK] ECDSA P384 test vectors (SHA384) 86 87 - length of integer = 2**64 - 1. ... ECDSA P384 test vectors (SHA384) 87 88 - incorrect length of integer. [OK] ECDSA P384 test vectors (SHA384) 87 88 - incorrect length of integer. ... ECDSA P384 test vectors (SHA384) 88 89 - incorrect length of integer. [OK] ECDSA P384 test vectors (SHA384) 88 89 - incorrect length of integer. ... ECDSA P384 test vectors (SHA384) 89 90 - removing integer. [OK] ECDSA P384 test vectors (SHA384) 89 90 - removing integer. ... ECDSA P384 test vectors (SHA384) 90 91 - lonely integer tag. [OK] ECDSA P384 test vectors (SHA384) 90 91 - lonely integer tag. ... ECDSA P384 test vectors (SHA384) 91 92 - lonely integer tag. [OK] ECDSA P384 test vectors (SHA384) 91 92 - lonely integer tag. ... ECDSA P384 test vectors (SHA384) 92 93 - appending 0's to integer. [OK] ECDSA P384 test vectors (SHA384) 92 93 - appending 0's to integer. ... ECDSA P384 test vectors (SHA384) 93 94 - appending 0's to integer. [OK] ECDSA P384 test vectors (SHA384) 93 94 - appending 0's to integer. ... ECDSA P384 test vectors (SHA384) 94 95 - prepending 0's to integer. [OK] ECDSA P384 test vectors (SHA384) 94 95 - prepending 0's to integer. ... ECDSA P384 test vectors (SHA384) 95 96 - prepending 0's to integer. [OK] ECDSA P384 test vectors (SHA384) 95 96 - prepending 0's to integer. ... ECDSA P384 test vectors (SHA384) 96 97 - appending unused 0's to integer. [OK] ECDSA P384 test vectors (SHA384) 96 97 - appending unused 0's to integer. ... ECDSA P384 test vectors (SHA384) 97 98 - appending null value to integer. [OK] ECDSA P384 test vectors (SHA384) 97 98 - appending null value to integer. ... ECDSA P384 test vectors (SHA384) 98 99 - appending null value to integer. [OK] ECDSA P384 test vectors (SHA384) 98 99 - appending null value to integer. ... ECDSA P384 test vectors (SHA384) 99 100 - truncated length of integer. [OK] ECDSA P384 test vectors (SHA384) 99 100 - truncated length of integer. ... ECDSA P384 test vectors (SHA384) 100 101 - truncated length of integer. [OK] ECDSA P384 test vectors (SHA384) 100 101 - truncated length of integer. ... ECDSA P384 test vectors (SHA384) 101 102 - Replacing integer with NULL. [OK] ECDSA P384 test vectors (SHA384) 101 102 - Replacing integer with NULL. ... ECDSA P384 test vectors (SHA384) 102 103 - Replacing integer with NULL. [OK] ECDSA P384 test vectors (SHA384) 102 103 - Replacing integer with NULL. ... ECDSA P384 test vectors (SHA384) 103 104 - changing tag value of integer. [OK] ECDSA P384 test vectors (SHA384) 103 104 - changing tag value of integer. ... ECDSA P384 test vectors (SHA384) 104 105 - changing tag value of integer. [OK] ECDSA P384 test vectors (SHA384) 104 105 - changing tag value of integer. ... ECDSA P384 test vectors (SHA384) 105 106 - changing tag value of integer. [OK] ECDSA P384 test vectors (SHA384) 105 106 - changing tag value of integer. ... ECDSA P384 test vectors (SHA384) 106 107 - changing tag value of integer. [OK] ECDSA P384 test vectors (SHA384) 106 107 - changing tag value of integer. ... ECDSA P384 test vectors (SHA384) 107 108 - changing tag value of integer. [OK] ECDSA P384 test vectors (SHA384) 107 108 - changing tag value of integer. ... ECDSA P384 test vectors (SHA384) 108 109 - changing tag value of integer. [OK] ECDSA P384 test vectors (SHA384) 108 109 - changing tag value of integer. ... ECDSA P384 test vectors (SHA384) 109 110 - changing tag value of integer. [OK] ECDSA P384 test vectors (SHA384) 109 110 - changing tag value of integer. ... ECDSA P384 test vectors (SHA384) 110 111 - changing tag value of integer. [OK] ECDSA P384 test vectors (SHA384) 110 111 - changing tag value of integer. ... ECDSA P384 test vectors (SHA384) 111 112 - changing tag value of integer. [OK] ECDSA P384 test vectors (SHA384) 111 112 - changing tag value of integer. ... ECDSA P384 test vectors (SHA384) 112 113 - changing tag value of integer. [OK] ECDSA P384 test vectors (SHA384) 112 113 - changing tag value of integer. ... ECDSA P384 test vectors (SHA384) 113 114 - dropping value of integer. [OK] ECDSA P384 test vectors (SHA384) 113 114 - dropping value of integer. ... ECDSA P384 test vectors (SHA384) 114 115 - dropping value of integer. [OK] ECDSA P384 test vectors (SHA384) 114 115 - dropping value of integer. ... ECDSA P384 test vectors (SHA384) 115 116 - using composition for integer. [OK] ECDSA P384 test vectors (SHA384) 115 116 - using composition for integer. ... ECDSA P384 test vectors (SHA384) 116 117 - using composition for integer. [OK] ECDSA P384 test vectors (SHA384) 116 117 - using composition for integer. ... ECDSA P384 test vectors (SHA384) 117 118 - modify first byte of integer. [OK] ECDSA P384 test vectors (SHA384) 117 118 - modify first byte of integer. ... ECDSA P384 test vectors (SHA384) 118 119 - modify first byte of integer. [OK] ECDSA P384 test vectors (SHA384) 118 119 - modify first byte of integer. ... ECDSA P384 test vectors (SHA384) 119 120 - modify last byte of integer. [OK] ECDSA P384 test vectors (SHA384) 119 120 - modify last byte of integer. ... ECDSA P384 test vectors (SHA384) 120 121 - modify last byte of integer. [OK] ECDSA P384 test vectors (SHA384) 120 121 - modify last byte of integer. ... ECDSA P384 test vectors (SHA384) 121 122 - truncated integer. [OK] ECDSA P384 test vectors (SHA384) 121 122 - truncated integer. ... ECDSA P384 test vectors (SHA384) 122 123 - truncated integer. [OK] ECDSA P384 test vectors (SHA384) 122 123 - truncated integer. ... ECDSA P384 test vectors (SHA384) 123 124 - truncated integer. [OK] ECDSA P384 test vectors (SHA384) 123 124 - truncated integer. ... ECDSA P384 test vectors (SHA384) 124 125 - leading ff in integer. [OK] ECDSA P384 test vectors (SHA384) 124 125 - leading ff in integer. ... ECDSA P384 test vectors (SHA384) 125 126 - leading ff in integer. [OK] ECDSA P384 test vectors (SHA384) 125 126 - leading ff in integer. ... ECDSA P384 test vectors (SHA384) 126 127 - replaced integer by infinity. [OK] ECDSA P384 test vectors (SHA384) 126 127 - replaced integer by infinity. ... ECDSA P384 test vectors (SHA384) 127 128 - replaced integer by infinity. [OK] ECDSA P384 test vectors (SHA384) 127 128 - replaced integer by infinity. ... ECDSA P384 test vectors (SHA384) 128 129 - replacing integer with zero. [OK] ECDSA P384 test vectors (SHA384) 128 129 - replacing integer with zero. ... ECDSA P384 test vectors (SHA384) 129 130 - replacing integer with zero. [OK] ECDSA P384 test vectors (SHA384) 129 130 - replacing integer with zero. ... ECDSA P384 test vectors (SHA384) 130 131 - Modified r or s, e.g. by adding or subtracting the order of the group. [OK] ECDSA P384 test vectors (SHA384) 130 131 - Modified r or s, e.g. by adding or subtracting the order of the group. ... ECDSA P384 test vectors (SHA384) 131 132 - Modified r or s, e.g. by adding or subtracting the order of the group. [OK] ECDSA P384 test vectors (SHA384) 131 132 - Modified r or s, e.g. by adding or subtracting the order of the group. ... ECDSA P384 test vectors (SHA384) 132 133 - Modified r or s, e.g. by adding or subtracting the order of the group. [OK] ECDSA P384 test vectors (SHA384) 132 133 - Modified r or s, e.g. by adding or subtracting the order of the group. ... ECDSA P384 test vectors (SHA384) 133 134 - Modified r or s, e.g. by adding or subtracting the order of the group. [OK] ECDSA P384 test vectors (SHA384) 133 134 - Modified r or s, e.g. by adding or subtracting the order of the group. ... ECDSA P384 test vectors (SHA384) 134 135 - Modified r or s, e.g. by adding or subtracting the order of the group. [OK] ECDSA P384 test vectors (SHA384) 134 135 - Modified r or s, e.g. by adding or subtracting the order of the group. ... ECDSA P384 test vectors (SHA384) 135 136 - Modified r or s, e.g. by adding or subtracting the order of the group. [OK] ECDSA P384 test vectors (SHA384) 135 136 - Modified r or s, e.g. by adding or subtracting the order of the group. ... ECDSA P384 test vectors (SHA384) 136 137 - Modified r or s, e.g. by adding or subtracting the order of the group. [OK] ECDSA P384 test vectors (SHA384) 136 137 - Modified r or s, e.g. by adding or subtracting the order of the group. ... ECDSA P384 test vectors (SHA384) 137 138 - Modified r or s, e.g. by adding or subtracting the order of the group. [OK] ECDSA P384 test vectors (SHA384) 137 138 - Modified r or s, e.g. by adding or subtracting the order of the group. ... ECDSA P384 test vectors (SHA384) 138 139 - Modified r or s, e.g. by adding or subtracting the order of the group. [OK] ECDSA P384 test vectors (SHA384) 138 139 - Modified r or s, e.g. by adding or subtracting the order of the group. ... ECDSA P384 test vectors (SHA384) 139 140 - Modified r or s, e.g. by adding or subtracting the order of the group. [OK] ECDSA P384 test vectors (SHA384) 139 140 - Modified r or s, e.g. by adding or subtracting the order of the group. ... ECDSA P384 test vectors (SHA384) 140 141 - Modified r or s, e.g. by adding or subtracting the order of the group. [OK] ECDSA P384 test vectors (SHA384) 140 141 - Modified r or s, e.g. by adding or subtracting the order of the group. ... ECDSA P384 test vectors (SHA384) 141 142 - Modified r or s, e.g. by adding or subtracting the order of the group. [OK] ECDSA P384 test vectors (SHA384) 141 142 - Modified r or s, e.g. by adding or subtracting the order of the group. ... ECDSA P384 test vectors (SHA384) 142 143 - Modified r or s, e.g. by adding or subtracting the order of the group. [OK] ECDSA P384 test vectors (SHA384) 142 143 - Modified r or s, e.g. by adding or subtracting the order of the group. ... ECDSA P384 test vectors (SHA384) 143 144 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 143 144 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 144 145 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 144 145 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 145 146 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 145 146 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 146 147 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 146 147 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 147 148 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 147 148 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 148 149 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 148 149 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 149 150 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 149 150 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 150 151 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 150 151 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 151 152 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 151 152 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 152 153 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 152 153 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 153 154 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 153 154 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 154 155 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 154 155 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 155 156 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 155 156 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 156 157 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 156 157 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 157 158 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 157 158 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 158 159 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 158 159 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 159 160 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 159 160 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 160 161 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 160 161 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 161 162 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 161 162 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 162 163 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 162 163 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 163 164 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 163 164 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 164 165 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 164 165 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 165 166 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 165 166 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 166 167 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 166 167 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 167 168 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 167 168 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 168 169 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 168 169 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 169 170 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 169 170 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 170 171 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 170 171 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 171 172 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 171 172 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 172 173 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 172 173 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 173 174 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 173 174 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 174 175 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 174 175 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 175 176 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 175 176 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 176 177 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 176 177 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 177 178 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 177 178 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 178 179 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 178 179 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 179 180 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 179 180 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 180 181 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 180 181 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 181 182 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 181 182 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 182 183 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 182 183 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 183 184 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 183 184 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 184 185 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 184 185 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 185 186 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 185 186 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 186 187 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 186 187 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 187 188 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 187 188 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 188 189 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 188 189 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 189 190 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 189 190 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 190 191 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 190 191 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 191 192 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 191 192 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 192 193 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 192 193 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 193 194 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 193 194 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 194 195 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 194 195 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 195 196 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 195 196 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 196 197 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 196 197 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 197 198 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 197 198 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 198 199 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 198 199 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 199 200 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 199 200 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 200 201 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 200 201 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 201 202 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 201 202 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 202 203 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 202 203 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 203 204 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 203 204 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 204 205 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 204 205 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 205 206 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 205 206 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 206 207 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 206 207 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 207 208 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 207 208 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 208 209 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 208 209 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 209 210 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 209 210 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 210 211 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 210 211 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 211 212 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 211 212 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 212 213 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 212 213 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 213 214 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 213 214 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 214 215 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 214 215 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 215 216 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 215 216 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 216 217 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 216 217 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 217 218 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 217 218 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 218 219 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 218 219 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 219 220 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 219 220 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 220 221 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 220 221 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 221 222 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 221 222 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 222 223 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA384) 222 223 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA384) 223 224 - Signature encoding contains wrong types. [OK] ECDSA P384 test vectors (SHA384) 223 224 - Signature encoding contains wrong types. ... ECDSA P384 test vectors (SHA384) 224 225 - Signature encoding contains wrong types. [OK] ECDSA P384 test vectors (SHA384) 224 225 - Signature encoding contains wrong types. ... ECDSA P384 test vectors (SHA384) 225 226 - Signature encoding contains wrong types. [OK] ECDSA P384 test vectors (SHA384) 225 226 - Signature encoding contains wrong types. ... ECDSA P384 test vectors (SHA384) 226 227 - Signature encoding contains wrong types. [OK] ECDSA P384 test vectors (SHA384) 226 227 - Signature encoding contains wrong types. ... ECDSA P384 test vectors (SHA384) 227 228 - Signature encoding contains wrong types. [OK] ECDSA P384 test vectors (SHA384) 227 228 - Signature encoding contains wrong types. ... ECDSA P384 test vectors (SHA384) 228 229 - Signature encoding contains wrong types. [OK] ECDSA P384 test vectors (SHA384) 228 229 - Signature encoding contains wrong types. ... ECDSA P384 test vectors (SHA384) 229 230 - Edge case for Shamir multiplication. [OK] ECDSA P384 test vectors (SHA384) 229 230 - Edge case for Shamir multiplication. ... ECDSA P384 test vectors (SHA384) 230 231 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 230 231 - special case hash. ... ECDSA P384 test vectors (SHA384) 231 232 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 231 232 - special case hash. ... ECDSA P384 test vectors (SHA384) 232 233 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 232 233 - special case hash. ... ECDSA P384 test vectors (SHA384) 233 234 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 233 234 - special case hash. ... ECDSA P384 test vectors (SHA384) 234 235 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 234 235 - special case hash. ... ECDSA P384 test vectors (SHA384) 235 236 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 235 236 - special case hash. ... ECDSA P384 test vectors (SHA384) 236 237 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 236 237 - special case hash. ... ECDSA P384 test vectors (SHA384) 237 238 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 237 238 - special case hash. ... ECDSA P384 test vectors (SHA384) 238 239 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 238 239 - special case hash. ... ECDSA P384 test vectors (SHA384) 239 240 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 239 240 - special case hash. ... ECDSA P384 test vectors (SHA384) 240 241 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 240 241 - special case hash. ... ECDSA P384 test vectors (SHA384) 241 242 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 241 242 - special case hash. ... ECDSA P384 test vectors (SHA384) 242 243 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 242 243 - special case hash. ... ECDSA P384 test vectors (SHA384) 243 244 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 243 244 - special case hash. ... ECDSA P384 test vectors (SHA384) 244 245 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 244 245 - special case hash. ... ECDSA P384 test vectors (SHA384) 245 246 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 245 246 - special case hash. ... ECDSA P384 test vectors (SHA384) 246 247 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 246 247 - special case hash. ... ECDSA P384 test vectors (SHA384) 247 248 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 247 248 - special case hash. ... ECDSA P384 test vectors (SHA384) 248 249 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 248 249 - special case hash. ... ECDSA P384 test vectors (SHA384) 249 250 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 249 250 - special case hash. ... ECDSA P384 test vectors (SHA384) 250 251 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 250 251 - special case hash. ... ECDSA P384 test vectors (SHA384) 251 252 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 251 252 - special case hash. ... ECDSA P384 test vectors (SHA384) 252 253 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 252 253 - special case hash. ... ECDSA P384 test vectors (SHA384) 253 254 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 253 254 - special case hash. ... ECDSA P384 test vectors (SHA384) 254 255 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 254 255 - special case hash. ... ECDSA P384 test vectors (SHA384) 255 256 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 255 256 - special case hash. ... ECDSA P384 test vectors (SHA384) 256 257 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 256 257 - special case hash. ... ECDSA P384 test vectors (SHA384) 257 258 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 257 258 - special case hash. ... ECDSA P384 test vectors (SHA384) 258 259 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 258 259 - special case hash. ... ECDSA P384 test vectors (SHA384) 259 260 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 259 260 - special case hash. ... ECDSA P384 test vectors (SHA384) 260 261 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 260 261 - special case hash. ... ECDSA P384 test vectors (SHA384) 261 262 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 261 262 - special case hash. ... ECDSA P384 test vectors (SHA384) 262 263 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 262 263 - special case hash. ... ECDSA P384 test vectors (SHA384) 263 264 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 263 264 - special case hash. ... ECDSA P384 test vectors (SHA384) 264 265 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 264 265 - special case hash. ... ECDSA P384 test vectors (SHA384) 265 266 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 265 266 - special case hash. ... ECDSA P384 test vectors (SHA384) 266 267 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 266 267 - special case hash. ... ECDSA P384 test vectors (SHA384) 267 268 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 267 268 - special case hash. ... ECDSA P384 test vectors (SHA384) 268 269 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 268 269 - special case hash. ... ECDSA P384 test vectors (SHA384) 269 270 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 269 270 - special case hash. ... ECDSA P384 test vectors (SHA384) 270 271 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 270 271 - special case hash. ... ECDSA P384 test vectors (SHA384) 271 272 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 271 272 - special case hash. ... ECDSA P384 test vectors (SHA384) 272 273 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 272 273 - special case hash. ... ECDSA P384 test vectors (SHA384) 273 274 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 273 274 - special case hash. ... ECDSA P384 test vectors (SHA384) 274 275 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 274 275 - special case hash. ... ECDSA P384 test vectors (SHA384) 275 276 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 275 276 - special case hash. ... ECDSA P384 test vectors (SHA384) 276 277 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 276 277 - special case hash. ... ECDSA P384 test vectors (SHA384) 277 278 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 277 278 - special case hash. ... ECDSA P384 test vectors (SHA384) 278 279 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 278 279 - special case hash. ... ECDSA P384 test vectors (SHA384) 279 280 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 279 280 - special case hash. ... ECDSA P384 test vectors (SHA384) 280 281 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 280 281 - special case hash. ... ECDSA P384 test vectors (SHA384) 281 282 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 281 282 - special case hash. ... ECDSA P384 test vectors (SHA384) 282 283 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 282 283 - special case hash. ... ECDSA P384 test vectors (SHA384) 283 284 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 283 284 - special case hash. ... ECDSA P384 test vectors (SHA384) 284 285 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 284 285 - special case hash. ... ECDSA P384 test vectors (SHA384) 285 286 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 285 286 - special case hash. ... ECDSA P384 test vectors (SHA384) 286 287 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 286 287 - special case hash. ... ECDSA P384 test vectors (SHA384) 287 288 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 287 288 - special case hash. ... ECDSA P384 test vectors (SHA384) 288 289 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 288 289 - special case hash. ... ECDSA P384 test vectors (SHA384) 289 290 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 289 290 - special case hash. ... ECDSA P384 test vectors (SHA384) 290 291 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 290 291 - special case hash. ... ECDSA P384 test vectors (SHA384) 291 292 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 291 292 - special case hash. ... ECDSA P384 test vectors (SHA384) 292 293 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 292 293 - special case hash. ... ECDSA P384 test vectors (SHA384) 293 294 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 293 294 - special case hash. ... ECDSA P384 test vectors (SHA384) 294 295 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 294 295 - special case hash. ... ECDSA P384 test vectors (SHA384) 295 296 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 295 296 - special case hash. ... ECDSA P384 test vectors (SHA384) 296 297 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 296 297 - special case hash. ... ECDSA P384 test vectors (SHA384) 297 298 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 297 298 - special case hash. ... ECDSA P384 test vectors (SHA384) 298 299 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 298 299 - special case hash. ... ECDSA P384 test vectors (SHA384) 299 300 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 299 300 - special case hash. ... ECDSA P384 test vectors (SHA384) 300 301 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 300 301 - special case hash. ... ECDSA P384 test vectors (SHA384) 301 302 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 301 302 - special case hash. ... ECDSA P384 test vectors (SHA384) 302 303 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 302 303 - special case hash. ... ECDSA P384 test vectors (SHA384) 303 304 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 303 304 - special case hash. ... ECDSA P384 test vectors (SHA384) 304 305 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 304 305 - special case hash. ... ECDSA P384 test vectors (SHA384) 305 306 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 305 306 - special case hash. ... ECDSA P384 test vectors (SHA384) 306 307 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 306 307 - special case hash. ... ECDSA P384 test vectors (SHA384) 307 308 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 307 308 - special case hash. ... ECDSA P384 test vectors (SHA384) 308 309 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 308 309 - special case hash. ... ECDSA P384 test vectors (SHA384) 309 310 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 309 310 - special case hash. ... ECDSA P384 test vectors (SHA384) 310 311 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 310 311 - special case hash. ... ECDSA P384 test vectors (SHA384) 311 312 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 311 312 - special case hash. ... ECDSA P384 test vectors (SHA384) 312 313 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 312 313 - special case hash. ... ECDSA P384 test vectors (SHA384) 313 314 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 313 314 - special case hash. ... ECDSA P384 test vectors (SHA384) 314 315 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 314 315 - special case hash. ... ECDSA P384 test vectors (SHA384) 315 316 - special case hash. [OK] ECDSA P384 test vectors (SHA384) 315 316 - special case hash. ... ECDSA P384 test vectors (SHA384) 316 317 - k*G has a large x-coordinate. [OK] ECDSA P384 test vectors (SHA384) 316 317 - k*G has a large x-coordinate. ... ECDSA P384 test vectors (SHA384) 317 318 - r too large. [OK] ECDSA P384 test vectors (SHA384) 317 318 - r too large. ... ECDSA P384 test vectors (SHA384) 318 319 - r,s are large. [OK] ECDSA P384 test vectors (SHA384) 318 319 - r,s are large. ... ECDSA P384 test vectors (SHA384) 319 320 - r and s^-1 have a large Hamming weight. [OK] ECDSA P384 test vectors (SHA384) 319 320 - r and s^-1 have a large Hamming weight. ... ECDSA P384 test vectors (SHA384) 320 321 - r and s^-1 have a large Hamming weight. [OK] ECDSA P384 test vectors (SHA384) 320 321 - r and s^-1 have a large Hamming weight. ... ECDSA P384 test vectors (SHA384) 321 322 - small r and s. [OK] ECDSA P384 test vectors (SHA384) 321 322 - small r and s. ... ECDSA P384 test vectors (SHA384) 322 323 - small r and s. [OK] ECDSA P384 test vectors (SHA384) 322 323 - small r and s. ... ECDSA P384 test vectors (SHA384) 323 324 - small r and s. [OK] ECDSA P384 test vectors (SHA384) 323 324 - small r and s. ... ECDSA P384 test vectors (SHA384) 324 325 - r is larger than n. [OK] ECDSA P384 test vectors (SHA384) 324 325 - r is larger than n. ... ECDSA P384 test vectors (SHA384) 325 326 - s is larger than n. [OK] ECDSA P384 test vectors (SHA384) 325 326 - s is larger than n. ... ECDSA P384 test vectors (SHA384) 326 327 - small r and s^-1. [OK] ECDSA P384 test vectors (SHA384) 326 327 - small r and s^-1. ... ECDSA P384 test vectors (SHA384) 327 328 - smallish r and s^-1. [OK] ECDSA P384 test vectors (SHA384) 327 328 - smallish r and s^-1. ... ECDSA P384 test vectors (SHA384) 328 329 - 100-bit r and small s^-1. [OK] ECDSA P384 test vectors (SHA384) 328 329 - 100-bit r and small s^-1. ... ECDSA P384 test vectors (SHA384) 329 330 - small r and 100 bit s^-1. [OK] ECDSA P384 test vectors (SHA384) 329 330 - small r and 100 bit s^-1. ... ECDSA P384 test vectors (SHA384) 330 331 - 100-bit r and s^-1. [OK] ECDSA P384 test vectors (SHA384) 330 331 - 100-bit r and s^-1. ... ECDSA P384 test vectors (SHA384) 331 332 - r and s^-1 are close to n. [OK] ECDSA P384 test vectors (SHA384) 331 332 - r and s^-1 are close to n. ... ECDSA P384 test vectors (SHA384) 332 333 - s == 1. [OK] ECDSA P384 test vectors (SHA384) 332 333 - s == 1. ... ECDSA P384 test vectors (SHA384) 333 334 - s == 0. [OK] ECDSA P384 test vectors (SHA384) 333 334 - s == 0. ... ECDSA P384 test vectors (SHA384) 334 335 - point at infinity during verify. [OK] ECDSA P384 test vectors (SHA384) 334 335 - point at infinity during verify. ... ECDSA P384 test vectors (SHA384) 335 336 - edge case for signature malleability. [OK] ECDSA P384 test vectors (SHA384) 335 336 - edge case for signature malleability. ... ECDSA P384 test vectors (SHA384) 336 337 - edge case for signature malleability. [OK] ECDSA P384 test vectors (SHA384) 336 337 - edge case for signature malleability. ... ECDSA P384 test vectors (SHA384) 337 338 - u1 == 1. [OK] ECDSA P384 test vectors (SHA384) 337 338 - u1 == 1. ... ECDSA P384 test vectors (SHA384) 338 339 - u1 == n - 1. [OK] ECDSA P384 test vectors (SHA384) 338 339 - u1 == n - 1. ... ECDSA P384 test vectors (SHA384) 339 340 - u2 == 1. [OK] ECDSA P384 test vectors (SHA384) 339 340 - u2 == 1. ... ECDSA P384 test vectors (SHA384) 340 341 - u2 == n - 1. [OK] ECDSA P384 test vectors (SHA384) 340 341 - u2 == n - 1. ... ECDSA P384 test vectors (SHA384) 341 342 - edge case for u1. [OK] ECDSA P384 test vectors (SHA384) 341 342 - edge case for u1. ... ECDSA P384 test vectors (SHA384) 342 343 - edge case for u1. [OK] ECDSA P384 test vectors (SHA384) 342 343 - edge case for u1. ... ECDSA P384 test vectors (SHA384) 343 344 - edge case for u1. [OK] ECDSA P384 test vectors (SHA384) 343 344 - edge case for u1. ... ECDSA P384 test vectors (SHA384) 344 345 - edge case for u1. [OK] ECDSA P384 test vectors (SHA384) 344 345 - edge case for u1. ... ECDSA P384 test vectors (SHA384) 345 346 - edge case for u1. [OK] ECDSA P384 test vectors (SHA384) 345 346 - edge case for u1. ... ECDSA P384 test vectors (SHA384) 346 347 - edge case for u1. [OK] ECDSA P384 test vectors (SHA384) 346 347 - edge case for u1. ... ECDSA P384 test vectors (SHA384) 347 348 - edge case for u1. [OK] ECDSA P384 test vectors (SHA384) 347 348 - edge case for u1. ... ECDSA P384 test vectors (SHA384) 348 349 - edge case for u1. [OK] ECDSA P384 test vectors (SHA384) 348 349 - edge case for u1. ... ECDSA P384 test vectors (SHA384) 349 350 - edge case for u1. [OK] ECDSA P384 test vectors (SHA384) 349 350 - edge case for u1. ... ECDSA P384 test vectors (SHA384) 350 351 - edge case for u1. [OK] ECDSA P384 test vectors (SHA384) 350 351 - edge case for u1. ... ECDSA P384 test vectors (SHA384) 351 352 - edge case for u1. [OK] ECDSA P384 test vectors (SHA384) 351 352 - edge case for u1. ... ECDSA P384 test vectors (SHA384) 352 353 - edge case for u1. [OK] ECDSA P384 test vectors (SHA384) 352 353 - edge case for u1. ... ECDSA P384 test vectors (SHA384) 353 354 - edge case for u2. [OK] ECDSA P384 test vectors (SHA384) 353 354 - edge case for u2. ... ECDSA P384 test vectors (SHA384) 354 355 - edge case for u2. [OK] ECDSA P384 test vectors (SHA384) 354 355 - edge case for u2. ... ECDSA P384 test vectors (SHA384) 355 356 - edge case for u2. [OK] ECDSA P384 test vectors (SHA384) 355 356 - edge case for u2. ... ECDSA P384 test vectors (SHA384) 356 357 - edge case for u2. [OK] ECDSA P384 test vectors (SHA384) 356 357 - edge case for u2. ... ECDSA P384 test vectors (SHA384) 357 358 - edge case for u2. [OK] ECDSA P384 test vectors (SHA384) 357 358 - edge case for u2. ... ECDSA P384 test vectors (SHA384) 358 359 - edge case for u2. [OK] ECDSA P384 test vectors (SHA384) 358 359 - edge case for u2. ... ECDSA P384 test vectors (SHA384) 359 360 - edge case for u2. [OK] ECDSA P384 test vectors (SHA384) 359 360 - edge case for u2. ... ECDSA P384 test vectors (SHA384) 360 361 - edge case for u2. [OK] ECDSA P384 test vectors (SHA384) 360 361 - edge case for u2. ... ECDSA P384 test vectors (SHA384) 361 362 - edge case for u2. [OK] ECDSA P384 test vectors (SHA384) 361 362 - edge case for u2. ... ECDSA P384 test vectors (SHA384) 362 363 - edge case for u2. [OK] ECDSA P384 test vectors (SHA384) 362 363 - edge case for u2. ... ECDSA P384 test vectors (SHA384) 363 364 - edge case for u2. [OK] ECDSA P384 test vectors (SHA384) 363 364 - edge case for u2. ... ECDSA P384 test vectors (SHA384) 364 365 - edge case for u2. [OK] ECDSA P384 test vectors (SHA384) 364 365 - edge case for u2. ... ECDSA P384 test vectors (SHA384) 365 366 - point duplication during verification. [OK] ECDSA P384 test vectors (SHA384) 365 366 - point duplication during verification. ... ECDSA P384 test vectors (SHA384) 366 367 - duplication bug. [OK] ECDSA P384 test vectors (SHA384) 366 367 - duplication bug. ... ECDSA P384 test vectors (SHA384) 367 368 - point with x-coordinate 0. [OK] ECDSA P384 test vectors (SHA384) 367 368 - point with x-coordinate 0. ... ECDSA P384 test vectors (SHA384) 368 369 - point with x-coordinate 0. [OK] ECDSA P384 test vectors (SHA384) 368 369 - point with x-coordinate 0. ... ECDSA P384 test vectors (SHA384) 369 370 - comparison with point at infinity . [OK] ECDSA P384 test vectors (SHA384) 369 370 - comparison with point at infinity . ... ECDSA P384 test vectors (SHA384) 370 371 - extreme value for k and edgecase s. [OK] ECDSA P384 test vectors (SHA384) 370 371 - extreme value for k and edgecase s. ... ECDSA P384 test vectors (SHA384) 371 372 - extreme value for k and s^-1. [OK] ECDSA P384 test vectors (SHA384) 371 372 - extreme value for k and s^-1. ... ECDSA P384 test vectors (SHA384) 372 373 - extreme value for k and s^-1. [OK] ECDSA P384 test vectors (SHA384) 372 373 - extreme value for k and s^-1. ... ECDSA P384 test vectors (SHA384) 373 374 - extreme value for k and s^-1. [OK] ECDSA P384 test vectors (SHA384) 373 374 - extreme value for k and s^-1. ... ECDSA P384 test vectors (SHA384) 374 375 - extreme value for k and s^-1. [OK] ECDSA P384 test vectors (SHA384) 374 375 - extreme value for k and s^-1. ... ECDSA P384 test vectors (SHA384) 375 376 - extreme value for k. [OK] ECDSA P384 test vectors (SHA384) 375 376 - extreme value for k. ... ECDSA P384 test vectors (SHA384) 376 377 - extreme value for k and edgecase s. [OK] ECDSA P384 test vectors (SHA384) 376 377 - extreme value for k and edgecase s. ... ECDSA P384 test vectors (SHA384) 377 378 - extreme value for k and s^-1. [OK] ECDSA P384 test vectors (SHA384) 377 378 - extreme value for k and s^-1. ... ECDSA P384 test vectors (SHA384) 378 379 - extreme value for k and s^-1. [OK] ECDSA P384 test vectors (SHA384) 378 379 - extreme value for k and s^-1. ... ECDSA P384 test vectors (SHA384) 379 380 - extreme value for k and s^-1. [OK] ECDSA P384 test vectors (SHA384) 379 380 - extreme value for k and s^-1. ... ECDSA P384 test vectors (SHA384) 380 381 - extreme value for k and s^-1. [OK] ECDSA P384 test vectors (SHA384) 380 381 - extreme value for k and s^-1. ... ECDSA P384 test vectors (SHA384) 381 382 - extreme value for k. [OK] ECDSA P384 test vectors (SHA384) 381 382 - extreme value for k. ... ECDSA P384 test vectors (SHA384) 382 383 - testing point duplication. [OK] ECDSA P384 test vectors (SHA384) 382 383 - testing point duplication. ... ECDSA P384 test vectors (SHA384) 383 384 - testing point duplication. [OK] ECDSA P384 test vectors (SHA384) 383 384 - testing point duplication. ... ECDSA P384 test vectors (SHA384) 384 385 - testing point duplication. [OK] ECDSA P384 test vectors (SHA384) 384 385 - testing point duplication. ... ECDSA P384 test vectors (SHA384) 385 386 - testing point duplication. [OK] ECDSA P384 test vectors (SHA384) 385 386 - testing point duplication. ... ECDSA P384 test vectors (SHA384) 386 387 - pseudorandom signature. [OK] ECDSA P384 test vectors (SHA384) 386 387 - pseudorandom signature. ... ECDSA P384 test vectors (SHA384) 387 388 - pseudorandom signature. [OK] ECDSA P384 test vectors (SHA384) 387 388 - pseudorandom signature. ... ECDSA P384 test vectors (SHA384) 388 389 - pseudorandom signature. [OK] ECDSA P384 test vectors (SHA384) 388 389 - pseudorandom signature. ... ECDSA P384 test vectors (SHA384) 389 390 - pseudorandom signature. [OK] ECDSA P384 test vectors (SHA384) 389 390 - pseudorandom signature. ... ECDSA P384 test vectors (SHA384) 390 391 - x-coordinate of the public key is large. [OK] ECDSA P384 test vectors (SHA384) 390 391 - x-coordinate of the public key is large. ... ECDSA P384 test vectors (SHA384) 391 392 - x-coordinate of the public key is large. [OK] ECDSA P384 test vectors (SHA384) 391 392 - x-coordinate of the public key is large. ... ECDSA P384 test vectors (SHA384) 392 393 - x-coordinate of the public key is large. [OK] ECDSA P384 test vectors (SHA384) 392 393 - x-coordinate of the public key is large. ... ECDSA P384 test vectors (SHA384) 393 394 - y-coordinate of the public key has many trailing 0's. [OK] ECDSA P384 test vectors (SHA384) 393 394 - y-coordinate of the public key has many trailing 0's. ... ECDSA P384 test vectors (SHA384) 394 395 - y-coordinate of the public key has many trailing 0's. [OK] ECDSA P384 test vectors (SHA384) 394 395 - y-coordinate of the public key has many trailing 0's. ... ECDSA P384 test vectors (SHA384) 395 396 - y-coordinate of the public key has many trailing 0's. [OK] ECDSA P384 test vectors (SHA384) 395 396 - y-coordinate of the public key has many trailing 0's. ... ECDSA P384 test vectors (SHA384) 396 397 - x-coordinate of the public key has many trailing 0's. [OK] ECDSA P384 test vectors (SHA384) 396 397 - x-coordinate of the public key has many trailing 0's. ... ECDSA P384 test vectors (SHA384) 397 398 - x-coordinate of the public key has many trailing 0's. [OK] ECDSA P384 test vectors (SHA384) 397 398 - x-coordinate of the public key has many trailing 0's. ... ECDSA P384 test vectors (SHA384) 398 399 - x-coordinate of the public key has many trailing 0's. [OK] ECDSA P384 test vectors (SHA384) 398 399 - x-coordinate of the public key has many trailing 0's. ... ECDSA P384 test vectors (SHA384) 399 400 - x-coordinate of the public key is small. [OK] ECDSA P384 test vectors (SHA384) 399 400 - x-coordinate of the public key is small. ... ECDSA P384 test vectors (SHA384) 400 401 - x-coordinate of the public key is small. [OK] ECDSA P384 test vectors (SHA384) 400 401 - x-coordinate of the public key is small. ... ECDSA P384 test vectors (SHA384) 401 402 - x-coordinate of the public key is small. [OK] ECDSA P384 test vectors (SHA384) 401 402 - x-coordinate of the public key is small. ... ECDSA P384 test vectors (SHA384) 402 403 - y-coordinate of the public key is small. [OK] ECDSA P384 test vectors (SHA384) 402 403 - y-coordinate of the public key is small. ... ECDSA P384 test vectors (SHA384) 403 404 - y-coordinate of the public key is small. [OK] ECDSA P384 test vectors (SHA384) 403 404 - y-coordinate of the public key is small. ... ECDSA P384 test vectors (SHA384) 404 405 - y-coordinate of the public key is small. [OK] ECDSA P384 test vectors (SHA384) 404 405 - y-coordinate of the public key is small. ... ECDSA P384 test vectors (SHA384) 405 406 - y-coordinate of the public key is large. [OK] ECDSA P384 test vectors (SHA384) 405 406 - y-coordinate of the public key is large. ... ECDSA P384 test vectors (SHA384) 406 407 - y-coordinate of the public key is large. [OK] ECDSA P384 test vectors (SHA384) 406 407 - y-coordinate of the public key is large. ... ECDSA P384 test vectors (SHA384) 407 408 - y-coordinate of the public key is large. [OK] ECDSA P384 test vectors (SHA384) 407 408 - y-coordinate of the public key is large. ... ECDSA P384 test vectors (SHA512) 0 1 - signature malleability. [OK] ECDSA P384 test vectors (SHA512) 0 1 - signature malleability. ... ECDSA P384 test vectors (SHA512) 1 2 - Legacy:ASN encoding of r misses leading 0. [OK] ECDSA P384 test vectors (SHA512) 1 2 - Legacy:ASN encoding of r misses leading 0. ... ECDSA P384 test vectors (SHA512) 2 3 - Legacy:ASN encoding of s misses leading 0. [OK] ECDSA P384 test vectors (SHA512) 2 3 - Legacy:ASN encoding of s misses leading 0. ... ECDSA P384 test vectors (SHA512) 3 4 - valid. [OK] ECDSA P384 test vectors (SHA512) 3 4 - valid. ... ECDSA P384 test vectors (SHA512) 4 5 - long form encoding of length of sequence. [OK] ECDSA P384 test vectors (SHA512) 4 5 - long form encoding of length of sequence. ... ECDSA P384 test vectors (SHA512) 5 6 - length of sequence contains leading 0. [OK] ECDSA P384 test vectors (SHA512) 5 6 - length of sequence contains leading 0. ... ECDSA P384 test vectors (SHA512) 6 7 - wrong length of sequence. [OK] ECDSA P384 test vectors (SHA512) 6 7 - wrong length of sequence. ... ECDSA P384 test vectors (SHA512) 7 8 - wrong length of sequence. [OK] ECDSA P384 test vectors (SHA512) 7 8 - wrong length of sequence. ... ECDSA P384 test vectors (SHA512) 8 9 - uint32 overflow in length of sequence. [OK] ECDSA P384 test vectors (SHA512) 8 9 - uint32 overflow in length of sequence. ... ECDSA P384 test vectors (SHA512) 9 10 - uint64 overflow in length of sequence. [OK] ECDSA P384 test vectors (SHA512) 9 10 - uint64 overflow in length of sequence. ... ECDSA P384 test vectors (SHA512) 10 11 - length of sequence = 2**31 - 1. [OK] ECDSA P384 test vectors (SHA512) 10 11 - length of sequence = 2**31 - 1. ... ECDSA P384 test vectors (SHA512) 11 12 - length of sequence = 2**32 - 1. [OK] ECDSA P384 test vectors (SHA512) 11 12 - length of sequence = 2**32 - 1. ... ECDSA P384 test vectors (SHA512) 12 13 - length of sequence = 2**40 - 1. [OK] ECDSA P384 test vectors (SHA512) 12 13 - length of sequence = 2**40 - 1. ... ECDSA P384 test vectors (SHA512) 13 14 - length of sequence = 2**64 - 1. [OK] ECDSA P384 test vectors (SHA512) 13 14 - length of sequence = 2**64 - 1. ... ECDSA P384 test vectors (SHA512) 14 15 - incorrect length of sequence. [OK] ECDSA P384 test vectors (SHA512) 14 15 - incorrect length of sequence. ... ECDSA P384 test vectors (SHA512) 15 16 - indefinite length without termination. [OK] ECDSA P384 test vectors (SHA512) 15 16 - indefinite length without termination. ... ECDSA P384 test vectors (SHA512) 16 17 - indefinite length without termination. [OK] ECDSA P384 test vectors (SHA512) 16 17 - indefinite length without termination. ... ECDSA P384 test vectors (SHA512) 17 18 - indefinite length without termination. [OK] ECDSA P384 test vectors (SHA512) 17 18 - indefinite length without termination. ... ECDSA P384 test vectors (SHA512) 18 19 - removing sequence. [OK] ECDSA P384 test vectors (SHA512) 18 19 - removing sequence. ... ECDSA P384 test vectors (SHA512) 19 20 - lonely sequence tag. [OK] ECDSA P384 test vectors (SHA512) 19 20 - lonely sequence tag. ... ECDSA P384 test vectors (SHA512) 20 21 - appending 0's to sequence. [OK] ECDSA P384 test vectors (SHA512) 20 21 - appending 0's to sequence. ... ECDSA P384 test vectors (SHA512) 21 22 - prepending 0's to sequence. [OK] ECDSA P384 test vectors (SHA512) 21 22 - prepending 0's to sequence. ... ECDSA P384 test vectors (SHA512) 22 23 - appending unused 0's to sequence. [OK] ECDSA P384 test vectors (SHA512) 22 23 - appending unused 0's to sequence. ... ECDSA P384 test vectors (SHA512) 23 24 - appending null value to sequence. [OK] ECDSA P384 test vectors (SHA512) 23 24 - appending null value to sequence. ... ECDSA P384 test vectors (SHA512) 24 25 - including garbage. [OK] ECDSA P384 test vectors (SHA512) 24 25 - including garbage. ... ECDSA P384 test vectors (SHA512) 25 26 - including garbage. [OK] ECDSA P384 test vectors (SHA512) 25 26 - including garbage. ... ECDSA P384 test vectors (SHA512) 26 27 - including garbage. [OK] ECDSA P384 test vectors (SHA512) 26 27 - including garbage. ... ECDSA P384 test vectors (SHA512) 27 28 - including garbage. [OK] ECDSA P384 test vectors (SHA512) 27 28 - including garbage. ... ECDSA P384 test vectors (SHA512) 28 29 - including garbage. [OK] ECDSA P384 test vectors (SHA512) 28 29 - including garbage. ... ECDSA P384 test vectors (SHA512) 29 30 - including garbage. [OK] ECDSA P384 test vectors (SHA512) 29 30 - including garbage. ... ECDSA P384 test vectors (SHA512) 30 31 - including garbage. [OK] ECDSA P384 test vectors (SHA512) 30 31 - including garbage. ... ECDSA P384 test vectors (SHA512) 31 32 - including garbage. [OK] ECDSA P384 test vectors (SHA512) 31 32 - including garbage. ... ECDSA P384 test vectors (SHA512) 32 33 - including garbage. [OK] ECDSA P384 test vectors (SHA512) 32 33 - including garbage. ... ECDSA P384 test vectors (SHA512) 33 34 - including undefined tags. [OK] ECDSA P384 test vectors (SHA512) 33 34 - including undefined tags. ... ECDSA P384 test vectors (SHA512) 34 35 - including undefined tags. [OK] ECDSA P384 test vectors (SHA512) 34 35 - including undefined tags. ... ECDSA P384 test vectors (SHA512) 35 36 - including undefined tags. [OK] ECDSA P384 test vectors (SHA512) 35 36 - including undefined tags. ... ECDSA P384 test vectors (SHA512) 36 37 - including undefined tags. [OK] ECDSA P384 test vectors (SHA512) 36 37 - including undefined tags. ... ECDSA P384 test vectors (SHA512) 37 38 - including undefined tags. [OK] ECDSA P384 test vectors (SHA512) 37 38 - including undefined tags. ... ECDSA P384 test vectors (SHA512) 38 39 - including undefined tags. [OK] ECDSA P384 test vectors (SHA512) 38 39 - including undefined tags. ... ECDSA P384 test vectors (SHA512) 39 40 - truncated length of sequence. [OK] ECDSA P384 test vectors (SHA512) 39 40 - truncated length of sequence. ... ECDSA P384 test vectors (SHA512) 40 41 - using composition with indefinite length. [OK] ECDSA P384 test vectors (SHA512) 40 41 - using composition with indefinite length. ... ECDSA P384 test vectors (SHA512) 41 42 - using composition with indefinite length. [OK] ECDSA P384 test vectors (SHA512) 41 42 - using composition with indefinite length. ... ECDSA P384 test vectors (SHA512) 42 43 - using composition with indefinite length. [OK] ECDSA P384 test vectors (SHA512) 42 43 - using composition with indefinite length. ... ECDSA P384 test vectors (SHA512) 43 44 - using composition with wrong tag. [OK] ECDSA P384 test vectors (SHA512) 43 44 - using composition with wrong tag. ... ECDSA P384 test vectors (SHA512) 44 45 - using composition with wrong tag. [OK] ECDSA P384 test vectors (SHA512) 44 45 - using composition with wrong tag. ... ECDSA P384 test vectors (SHA512) 45 46 - using composition with wrong tag. [OK] ECDSA P384 test vectors (SHA512) 45 46 - using composition with wrong tag. ... ECDSA P384 test vectors (SHA512) 46 47 - Replacing sequence with NULL. [OK] ECDSA P384 test vectors (SHA512) 46 47 - Replacing sequence with NULL. ... ECDSA P384 test vectors (SHA512) 47 48 - changing tag value of sequence. [OK] ECDSA P384 test vectors (SHA512) 47 48 - changing tag value of sequence. ... ECDSA P384 test vectors (SHA512) 48 49 - changing tag value of sequence. [OK] ECDSA P384 test vectors (SHA512) 48 49 - changing tag value of sequence. ... ECDSA P384 test vectors (SHA512) 49 50 - changing tag value of sequence. [OK] ECDSA P384 test vectors (SHA512) 49 50 - changing tag value of sequence. ... ECDSA P384 test vectors (SHA512) 50 51 - changing tag value of sequence. [OK] ECDSA P384 test vectors (SHA512) 50 51 - changing tag value of sequence. ... ECDSA P384 test vectors (SHA512) 51 52 - changing tag value of sequence. [OK] ECDSA P384 test vectors (SHA512) 51 52 - changing tag value of sequence. ... ECDSA P384 test vectors (SHA512) 52 53 - dropping value of sequence. [OK] ECDSA P384 test vectors (SHA512) 52 53 - dropping value of sequence. ... ECDSA P384 test vectors (SHA512) 53 54 - using composition for sequence. [OK] ECDSA P384 test vectors (SHA512) 53 54 - using composition for sequence. ... ECDSA P384 test vectors (SHA512) 54 55 - truncated sequence. [OK] ECDSA P384 test vectors (SHA512) 54 55 - truncated sequence. ... ECDSA P384 test vectors (SHA512) 55 56 - truncated sequence. [OK] ECDSA P384 test vectors (SHA512) 55 56 - truncated sequence. ... ECDSA P384 test vectors (SHA512) 56 57 - indefinite length. [OK] ECDSA P384 test vectors (SHA512) 56 57 - indefinite length. ... ECDSA P384 test vectors (SHA512) 57 58 - indefinite length with truncated delimiter. [OK] ECDSA P384 test vectors (SHA512) 57 58 - indefinite length with truncated delimiter. ... ECDSA P384 test vectors (SHA512) 58 59 - indefinite length with additional element. [OK] ECDSA P384 test vectors (SHA512) 58 59 - indefinite length with additional element. ... ECDSA P384 test vectors (SHA512) 59 60 - indefinite length with truncated element. [OK] ECDSA P384 test vectors (SHA512) 59 60 - indefinite length with truncated element. ... ECDSA P384 test vectors (SHA512) 60 61 - indefinite length with garbage. [OK] ECDSA P384 test vectors (SHA512) 60 61 - indefinite length with garbage. ... ECDSA P384 test vectors (SHA512) 61 62 - indefinite length with nonempty EOC. [OK] ECDSA P384 test vectors (SHA512) 61 62 - indefinite length with nonempty EOC. ... ECDSA P384 test vectors (SHA512) 62 63 - prepend empty sequence. [OK] ECDSA P384 test vectors (SHA512) 62 63 - prepend empty sequence. ... ECDSA P384 test vectors (SHA512) 63 64 - append empty sequence. [OK] ECDSA P384 test vectors (SHA512) 63 64 - append empty sequence. ... ECDSA P384 test vectors (SHA512) 64 65 - append garbage with high tag number. [OK] ECDSA P384 test vectors (SHA512) 64 65 - append garbage with high tag number. ... ECDSA P384 test vectors (SHA512) 65 66 - sequence of sequence. [OK] ECDSA P384 test vectors (SHA512) 65 66 - sequence of sequence. ... ECDSA P384 test vectors (SHA512) 66 67 - truncated sequence: removed last 1 elements. [OK] ECDSA P384 test vectors (SHA512) 66 67 - truncated sequence: removed last 1 elements. ... ECDSA P384 test vectors (SHA512) 67 68 - repeating element in sequence. [OK] ECDSA P384 test vectors (SHA512) 67 68 - repeating element in sequence. ... ECDSA P384 test vectors (SHA512) 68 69 - long form encoding of length of integer. [OK] ECDSA P384 test vectors (SHA512) 68 69 - long form encoding of length of integer. ... ECDSA P384 test vectors (SHA512) 69 70 - long form encoding of length of integer. [OK] ECDSA P384 test vectors (SHA512) 69 70 - long form encoding of length of integer. ... ECDSA P384 test vectors (SHA512) 70 71 - length of integer contains leading 0. [OK] ECDSA P384 test vectors (SHA512) 70 71 - length of integer contains leading 0. ... ECDSA P384 test vectors (SHA512) 71 72 - length of integer contains leading 0. [OK] ECDSA P384 test vectors (SHA512) 71 72 - length of integer contains leading 0. ... ECDSA P384 test vectors (SHA512) 72 73 - wrong length of integer. [OK] ECDSA P384 test vectors (SHA512) 72 73 - wrong length of integer. ... ECDSA P384 test vectors (SHA512) 73 74 - wrong length of integer. [OK] ECDSA P384 test vectors (SHA512) 73 74 - wrong length of integer. ... ECDSA P384 test vectors (SHA512) 74 75 - wrong length of integer. [OK] ECDSA P384 test vectors (SHA512) 74 75 - wrong length of integer. ... ECDSA P384 test vectors (SHA512) 75 76 - wrong length of integer. [OK] ECDSA P384 test vectors (SHA512) 75 76 - wrong length of integer. ... ECDSA P384 test vectors (SHA512) 76 77 - uint32 overflow in length of integer. [OK] ECDSA P384 test vectors (SHA512) 76 77 - uint32 overflow in length of integer. ... ECDSA P384 test vectors (SHA512) 77 78 - uint32 overflow in length of integer. [OK] ECDSA P384 test vectors (SHA512) 77 78 - uint32 overflow in length of integer. ... ECDSA P384 test vectors (SHA512) 78 79 - uint64 overflow in length of integer. [OK] ECDSA P384 test vectors (SHA512) 78 79 - uint64 overflow in length of integer. ... ECDSA P384 test vectors (SHA512) 79 80 - uint64 overflow in length of integer. [OK] ECDSA P384 test vectors (SHA512) 79 80 - uint64 overflow in length of integer. ... ECDSA P384 test vectors (SHA512) 80 81 - length of integer = 2**31 - 1. [OK] ECDSA P384 test vectors (SHA512) 80 81 - length of integer = 2**31 - 1. ... ECDSA P384 test vectors (SHA512) 81 82 - length of integer = 2**31 - 1. [OK] ECDSA P384 test vectors (SHA512) 81 82 - length of integer = 2**31 - 1. ... ECDSA P384 test vectors (SHA512) 82 83 - length of integer = 2**32 - 1. [OK] ECDSA P384 test vectors (SHA512) 82 83 - length of integer = 2**32 - 1. ... ECDSA P384 test vectors (SHA512) 83 84 - length of integer = 2**32 - 1. [OK] ECDSA P384 test vectors (SHA512) 83 84 - length of integer = 2**32 - 1. ... ECDSA P384 test vectors (SHA512) 84 85 - length of integer = 2**40 - 1. [OK] ECDSA P384 test vectors (SHA512) 84 85 - length of integer = 2**40 - 1. ... ECDSA P384 test vectors (SHA512) 85 86 - length of integer = 2**40 - 1. [OK] ECDSA P384 test vectors (SHA512) 85 86 - length of integer = 2**40 - 1. ... ECDSA P384 test vectors (SHA512) 86 87 - length of integer = 2**64 - 1. [OK] ECDSA P384 test vectors (SHA512) 86 87 - length of integer = 2**64 - 1. ... ECDSA P384 test vectors (SHA512) 87 88 - length of integer = 2**64 - 1. [OK] ECDSA P384 test vectors (SHA512) 87 88 - length of integer = 2**64 - 1. ... ECDSA P384 test vectors (SHA512) 88 89 - incorrect length of integer. [OK] ECDSA P384 test vectors (SHA512) 88 89 - incorrect length of integer. ... ECDSA P384 test vectors (SHA512) 89 90 - incorrect length of integer. [OK] ECDSA P384 test vectors (SHA512) 89 90 - incorrect length of integer. ... ECDSA P384 test vectors (SHA512) 90 91 - removing integer. [OK] ECDSA P384 test vectors (SHA512) 90 91 - removing integer. ... ECDSA P384 test vectors (SHA512) 91 92 - lonely integer tag. [OK] ECDSA P384 test vectors (SHA512) 91 92 - lonely integer tag. ... ECDSA P384 test vectors (SHA512) 92 93 - lonely integer tag. [OK] ECDSA P384 test vectors (SHA512) 92 93 - lonely integer tag. ... ECDSA P384 test vectors (SHA512) 93 94 - appending 0's to integer. [OK] ECDSA P384 test vectors (SHA512) 93 94 - appending 0's to integer. ... ECDSA P384 test vectors (SHA512) 94 95 - appending 0's to integer. [OK] ECDSA P384 test vectors (SHA512) 94 95 - appending 0's to integer. ... ECDSA P384 test vectors (SHA512) 95 96 - prepending 0's to integer. [OK] ECDSA P384 test vectors (SHA512) 95 96 - prepending 0's to integer. ... ECDSA P384 test vectors (SHA512) 96 97 - prepending 0's to integer. [OK] ECDSA P384 test vectors (SHA512) 96 97 - prepending 0's to integer. ... ECDSA P384 test vectors (SHA512) 97 98 - appending unused 0's to integer. [OK] ECDSA P384 test vectors (SHA512) 97 98 - appending unused 0's to integer. ... ECDSA P384 test vectors (SHA512) 98 99 - appending null value to integer. [OK] ECDSA P384 test vectors (SHA512) 98 99 - appending null value to integer. ... ECDSA P384 test vectors (SHA512) 99 100 - appending null value to integer. [OK] ECDSA P384 test vectors (SHA512) 99 100 - appending null value to integer. ... ECDSA P384 test vectors (SHA512) 100 101 - truncated length of integer. [OK] ECDSA P384 test vectors (SHA512) 100 101 - truncated length of integer. ... ECDSA P384 test vectors (SHA512) 101 102 - truncated length of integer. [OK] ECDSA P384 test vectors (SHA512) 101 102 - truncated length of integer. ... ECDSA P384 test vectors (SHA512) 102 103 - Replacing integer with NULL. [OK] ECDSA P384 test vectors (SHA512) 102 103 - Replacing integer with NULL. ... ECDSA P384 test vectors (SHA512) 103 104 - Replacing integer with NULL. [OK] ECDSA P384 test vectors (SHA512) 103 104 - Replacing integer with NULL. ... ECDSA P384 test vectors (SHA512) 104 105 - changing tag value of integer. [OK] ECDSA P384 test vectors (SHA512) 104 105 - changing tag value of integer. ... ECDSA P384 test vectors (SHA512) 105 106 - changing tag value of integer. [OK] ECDSA P384 test vectors (SHA512) 105 106 - changing tag value of integer. ... ECDSA P384 test vectors (SHA512) 106 107 - changing tag value of integer. [OK] ECDSA P384 test vectors (SHA512) 106 107 - changing tag value of integer. ... ECDSA P384 test vectors (SHA512) 107 108 - changing tag value of integer. [OK] ECDSA P384 test vectors (SHA512) 107 108 - changing tag value of integer. ... ECDSA P384 test vectors (SHA512) 108 109 - changing tag value of integer. [OK] ECDSA P384 test vectors (SHA512) 108 109 - changing tag value of integer. ... ECDSA P384 test vectors (SHA512) 109 110 - changing tag value of integer. [OK] ECDSA P384 test vectors (SHA512) 109 110 - changing tag value of integer. ... ECDSA P384 test vectors (SHA512) 110 111 - changing tag value of integer. [OK] ECDSA P384 test vectors (SHA512) 110 111 - changing tag value of integer. ... ECDSA P384 test vectors (SHA512) 111 112 - changing tag value of integer. [OK] ECDSA P384 test vectors (SHA512) 111 112 - changing tag value of integer. ... ECDSA P384 test vectors (SHA512) 112 113 - changing tag value of integer. [OK] ECDSA P384 test vectors (SHA512) 112 113 - changing tag value of integer. ... ECDSA P384 test vectors (SHA512) 113 114 - changing tag value of integer. [OK] ECDSA P384 test vectors (SHA512) 113 114 - changing tag value of integer. ... ECDSA P384 test vectors (SHA512) 114 115 - dropping value of integer. [OK] ECDSA P384 test vectors (SHA512) 114 115 - dropping value of integer. ... ECDSA P384 test vectors (SHA512) 115 116 - dropping value of integer. [OK] ECDSA P384 test vectors (SHA512) 115 116 - dropping value of integer. ... ECDSA P384 test vectors (SHA512) 116 117 - using composition for integer. [OK] ECDSA P384 test vectors (SHA512) 116 117 - using composition for integer. ... ECDSA P384 test vectors (SHA512) 117 118 - using composition for integer. [OK] ECDSA P384 test vectors (SHA512) 117 118 - using composition for integer. ... ECDSA P384 test vectors (SHA512) 118 119 - modify first byte of integer. [OK] ECDSA P384 test vectors (SHA512) 118 119 - modify first byte of integer. ... ECDSA P384 test vectors (SHA512) 119 120 - modify first byte of integer. [OK] ECDSA P384 test vectors (SHA512) 119 120 - modify first byte of integer. ... ECDSA P384 test vectors (SHA512) 120 121 - modify last byte of integer. [OK] ECDSA P384 test vectors (SHA512) 120 121 - modify last byte of integer. ... ECDSA P384 test vectors (SHA512) 121 122 - modify last byte of integer. [OK] ECDSA P384 test vectors (SHA512) 121 122 - modify last byte of integer. ... ECDSA P384 test vectors (SHA512) 122 123 - truncated integer. [OK] ECDSA P384 test vectors (SHA512) 122 123 - truncated integer. ... ECDSA P384 test vectors (SHA512) 123 124 - truncated integer. [OK] ECDSA P384 test vectors (SHA512) 123 124 - truncated integer. ... ECDSA P384 test vectors (SHA512) 124 125 - leading ff in integer. [OK] ECDSA P384 test vectors (SHA512) 124 125 - leading ff in integer. ... ECDSA P384 test vectors (SHA512) 125 126 - leading ff in integer. [OK] ECDSA P384 test vectors (SHA512) 125 126 - leading ff in integer. ... ECDSA P384 test vectors (SHA512) 126 127 - replaced integer by infinity. [OK] ECDSA P384 test vectors (SHA512) 126 127 - replaced integer by infinity. ... ECDSA P384 test vectors (SHA512) 127 128 - replaced integer by infinity. [OK] ECDSA P384 test vectors (SHA512) 127 128 - replaced integer by infinity. ... ECDSA P384 test vectors (SHA512) 128 129 - replacing integer with zero. [OK] ECDSA P384 test vectors (SHA512) 128 129 - replacing integer with zero. ... ECDSA P384 test vectors (SHA512) 129 130 - replacing integer with zero. [OK] ECDSA P384 test vectors (SHA512) 129 130 - replacing integer with zero. ... ECDSA P384 test vectors (SHA512) 130 131 - Modified r or s, e.g. by adding or subtracting the order of the group. [OK] ECDSA P384 test vectors (SHA512) 130 131 - Modified r or s, e.g. by adding or subtracting the order of the group. ... ECDSA P384 test vectors (SHA512) 131 132 - Modified r or s, e.g. by adding or subtracting the order of the group. [OK] ECDSA P384 test vectors (SHA512) 131 132 - Modified r or s, e.g. by adding or subtracting the order of the group. ... ECDSA P384 test vectors (SHA512) 132 133 - Modified r or s, e.g. by adding or subtracting the order of the group. [OK] ECDSA P384 test vectors (SHA512) 132 133 - Modified r or s, e.g. by adding or subtracting the order of the group. ... ECDSA P384 test vectors (SHA512) 133 134 - Modified r or s, e.g. by adding or subtracting the order of the group. [OK] ECDSA P384 test vectors (SHA512) 133 134 - Modified r or s, e.g. by adding or subtracting the order of the group. ... ECDSA P384 test vectors (SHA512) 134 135 - Modified r or s, e.g. by adding or subtracting the order of the group. [OK] ECDSA P384 test vectors (SHA512) 134 135 - Modified r or s, e.g. by adding or subtracting the order of the group. ... ECDSA P384 test vectors (SHA512) 135 136 - Modified r or s, e.g. by adding or subtracting the order of the group. [OK] ECDSA P384 test vectors (SHA512) 135 136 - Modified r or s, e.g. by adding or subtracting the order of the group. ... ECDSA P384 test vectors (SHA512) 136 137 - Modified r or s, e.g. by adding or subtracting the order of the group. [OK] ECDSA P384 test vectors (SHA512) 136 137 - Modified r or s, e.g. by adding or subtracting the order of the group. ... ECDSA P384 test vectors (SHA512) 137 138 - Modified r or s, e.g. by adding or subtracting the order of the group. [OK] ECDSA P384 test vectors (SHA512) 137 138 - Modified r or s, e.g. by adding or subtracting the order of the group. ... ECDSA P384 test vectors (SHA512) 138 139 - Modified r or s, e.g. by adding or subtracting the order of the group. [OK] ECDSA P384 test vectors (SHA512) 138 139 - Modified r or s, e.g. by adding or subtracting the order of the group. ... ECDSA P384 test vectors (SHA512) 139 140 - Modified r or s, e.g. by adding or subtracting the order of the group. [OK] ECDSA P384 test vectors (SHA512) 139 140 - Modified r or s, e.g. by adding or subtracting the order of the group. ... ECDSA P384 test vectors (SHA512) 140 141 - Modified r or s, e.g. by adding or subtracting the order of the group. [OK] ECDSA P384 test vectors (SHA512) 140 141 - Modified r or s, e.g. by adding or subtracting the order of the group. ... ECDSA P384 test vectors (SHA512) 141 142 - Modified r or s, e.g. by adding or subtracting the order of the group. [OK] ECDSA P384 test vectors (SHA512) 141 142 - Modified r or s, e.g. by adding or subtracting the order of the group. ... ECDSA P384 test vectors (SHA512) 142 143 - Modified r or s, e.g. by adding or subtracting the order of the group. [OK] ECDSA P384 test vectors (SHA512) 142 143 - Modified r or s, e.g. by adding or subtracting the order of the group. ... ECDSA P384 test vectors (SHA512) 143 144 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 143 144 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 144 145 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 144 145 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 145 146 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 145 146 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 146 147 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 146 147 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 147 148 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 147 148 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 148 149 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 148 149 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 149 150 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 149 150 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 150 151 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 150 151 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 151 152 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 151 152 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 152 153 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 152 153 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 153 154 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 153 154 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 154 155 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 154 155 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 155 156 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 155 156 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 156 157 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 156 157 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 157 158 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 157 158 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 158 159 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 158 159 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 159 160 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 159 160 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 160 161 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 160 161 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 161 162 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 161 162 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 162 163 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 162 163 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 163 164 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 163 164 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 164 165 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 164 165 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 165 166 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 165 166 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 166 167 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 166 167 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 167 168 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 167 168 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 168 169 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 168 169 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 169 170 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 169 170 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 170 171 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 170 171 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 171 172 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 171 172 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 172 173 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 172 173 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 173 174 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 173 174 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 174 175 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 174 175 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 175 176 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 175 176 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 176 177 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 176 177 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 177 178 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 177 178 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 178 179 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 178 179 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 179 180 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 179 180 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 180 181 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 180 181 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 181 182 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 181 182 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 182 183 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 182 183 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 183 184 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 183 184 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 184 185 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 184 185 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 185 186 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 185 186 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 186 187 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 186 187 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 187 188 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 187 188 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 188 189 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 188 189 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 189 190 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 189 190 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 190 191 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 190 191 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 191 192 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 191 192 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 192 193 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 192 193 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 193 194 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 193 194 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 194 195 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 194 195 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 195 196 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 195 196 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 196 197 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 196 197 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 197 198 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 197 198 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 198 199 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 198 199 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 199 200 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 199 200 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 200 201 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 200 201 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 201 202 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 201 202 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 202 203 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 202 203 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 203 204 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 203 204 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 204 205 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 204 205 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 205 206 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 205 206 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 206 207 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 206 207 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 207 208 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 207 208 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 208 209 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 208 209 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 209 210 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 209 210 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 210 211 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 210 211 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 211 212 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 211 212 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 212 213 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 212 213 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 213 214 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 213 214 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 214 215 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 214 215 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 215 216 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 215 216 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 216 217 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 216 217 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 217 218 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 217 218 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 218 219 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 218 219 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 219 220 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 219 220 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 220 221 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 220 221 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 221 222 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 221 222 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 222 223 - Signature with special case values for r and s. [OK] ECDSA P384 test vectors (SHA512) 222 223 - Signature with special case values for r and s. ... ECDSA P384 test vectors (SHA512) 223 224 - Signature encoding contains wrong types. [OK] ECDSA P384 test vectors (SHA512) 223 224 - Signature encoding contains wrong types. ... ECDSA P384 test vectors (SHA512) 224 225 - Signature encoding contains wrong types. [OK] ECDSA P384 test vectors (SHA512) 224 225 - Signature encoding contains wrong types. ... ECDSA P384 test vectors (SHA512) 225 226 - Signature encoding contains wrong types. [OK] ECDSA P384 test vectors (SHA512) 225 226 - Signature encoding contains wrong types. ... ECDSA P384 test vectors (SHA512) 226 227 - Signature encoding contains wrong types. [OK] ECDSA P384 test vectors (SHA512) 226 227 - Signature encoding contains wrong types. ... ECDSA P384 test vectors (SHA512) 227 228 - Signature encoding contains wrong types. [OK] ECDSA P384 test vectors (SHA512) 227 228 - Signature encoding contains wrong types. ... ECDSA P384 test vectors (SHA512) 228 229 - Signature encoding contains wrong types. [OK] ECDSA P384 test vectors (SHA512) 228 229 - Signature encoding contains wrong types. ... ECDSA P384 test vectors (SHA512) 229 230 - Edge case for Shamir multiplication. [OK] ECDSA P384 test vectors (SHA512) 229 230 - Edge case for Shamir multiplication. ... ECDSA P384 test vectors (SHA512) 230 231 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 230 231 - special case hash. ... ECDSA P384 test vectors (SHA512) 231 232 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 231 232 - special case hash. ... ECDSA P384 test vectors (SHA512) 232 233 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 232 233 - special case hash. ... ECDSA P384 test vectors (SHA512) 233 234 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 233 234 - special case hash. ... ECDSA P384 test vectors (SHA512) 234 235 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 234 235 - special case hash. ... ECDSA P384 test vectors (SHA512) 235 236 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 235 236 - special case hash. ... ECDSA P384 test vectors (SHA512) 236 237 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 236 237 - special case hash. ... ECDSA P384 test vectors (SHA512) 237 238 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 237 238 - special case hash. ... ECDSA P384 test vectors (SHA512) 238 239 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 238 239 - special case hash. ... ECDSA P384 test vectors (SHA512) 239 240 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 239 240 - special case hash. ... ECDSA P384 test vectors (SHA512) 240 241 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 240 241 - special case hash. ... ECDSA P384 test vectors (SHA512) 241 242 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 241 242 - special case hash. ... ECDSA P384 test vectors (SHA512) 242 243 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 242 243 - special case hash. ... ECDSA P384 test vectors (SHA512) 243 244 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 243 244 - special case hash. ... ECDSA P384 test vectors (SHA512) 244 245 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 244 245 - special case hash. ... ECDSA P384 test vectors (SHA512) 245 246 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 245 246 - special case hash. ... ECDSA P384 test vectors (SHA512) 246 247 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 246 247 - special case hash. ... ECDSA P384 test vectors (SHA512) 247 248 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 247 248 - special case hash. ... ECDSA P384 test vectors (SHA512) 248 249 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 248 249 - special case hash. ... ECDSA P384 test vectors (SHA512) 249 250 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 249 250 - special case hash. ... ECDSA P384 test vectors (SHA512) 250 251 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 250 251 - special case hash. ... ECDSA P384 test vectors (SHA512) 251 252 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 251 252 - special case hash. ... ECDSA P384 test vectors (SHA512) 252 253 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 252 253 - special case hash. ... ECDSA P384 test vectors (SHA512) 253 254 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 253 254 - special case hash. ... ECDSA P384 test vectors (SHA512) 254 255 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 254 255 - special case hash. ... ECDSA P384 test vectors (SHA512) 255 256 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 255 256 - special case hash. ... ECDSA P384 test vectors (SHA512) 256 257 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 256 257 - special case hash. ... ECDSA P384 test vectors (SHA512) 257 258 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 257 258 - special case hash. ... ECDSA P384 test vectors (SHA512) 258 259 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 258 259 - special case hash. ... ECDSA P384 test vectors (SHA512) 259 260 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 259 260 - special case hash. ... ECDSA P384 test vectors (SHA512) 260 261 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 260 261 - special case hash. ... ECDSA P384 test vectors (SHA512) 261 262 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 261 262 - special case hash. ... ECDSA P384 test vectors (SHA512) 262 263 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 262 263 - special case hash. ... ECDSA P384 test vectors (SHA512) 263 264 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 263 264 - special case hash. ... ECDSA P384 test vectors (SHA512) 264 265 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 264 265 - special case hash. ... ECDSA P384 test vectors (SHA512) 265 266 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 265 266 - special case hash. ... ECDSA P384 test vectors (SHA512) 266 267 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 266 267 - special case hash. ... ECDSA P384 test vectors (SHA512) 267 268 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 267 268 - special case hash. ... ECDSA P384 test vectors (SHA512) 268 269 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 268 269 - special case hash. ... ECDSA P384 test vectors (SHA512) 269 270 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 269 270 - special case hash. ... ECDSA P384 test vectors (SHA512) 270 271 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 270 271 - special case hash. ... ECDSA P384 test vectors (SHA512) 271 272 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 271 272 - special case hash. ... ECDSA P384 test vectors (SHA512) 272 273 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 272 273 - special case hash. ... ECDSA P384 test vectors (SHA512) 273 274 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 273 274 - special case hash. ... ECDSA P384 test vectors (SHA512) 274 275 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 274 275 - special case hash. ... ECDSA P384 test vectors (SHA512) 275 276 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 275 276 - special case hash. ... ECDSA P384 test vectors (SHA512) 276 277 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 276 277 - special case hash. ... ECDSA P384 test vectors (SHA512) 277 278 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 277 278 - special case hash. ... ECDSA P384 test vectors (SHA512) 278 279 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 278 279 - special case hash. ... ECDSA P384 test vectors (SHA512) 279 280 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 279 280 - special case hash. ... ECDSA P384 test vectors (SHA512) 280 281 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 280 281 - special case hash. ... ECDSA P384 test vectors (SHA512) 281 282 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 281 282 - special case hash. ... ECDSA P384 test vectors (SHA512) 282 283 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 282 283 - special case hash. ... ECDSA P384 test vectors (SHA512) 283 284 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 283 284 - special case hash. ... ECDSA P384 test vectors (SHA512) 284 285 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 284 285 - special case hash. ... ECDSA P384 test vectors (SHA512) 285 286 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 285 286 - special case hash. ... ECDSA P384 test vectors (SHA512) 286 287 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 286 287 - special case hash. ... ECDSA P384 test vectors (SHA512) 287 288 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 287 288 - special case hash. ... ECDSA P384 test vectors (SHA512) 288 289 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 288 289 - special case hash. ... ECDSA P384 test vectors (SHA512) 289 290 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 289 290 - special case hash. ... ECDSA P384 test vectors (SHA512) 290 291 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 290 291 - special case hash. ... ECDSA P384 test vectors (SHA512) 291 292 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 291 292 - special case hash. ... ECDSA P384 test vectors (SHA512) 292 293 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 292 293 - special case hash. ... ECDSA P384 test vectors (SHA512) 293 294 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 293 294 - special case hash. ... ECDSA P384 test vectors (SHA512) 294 295 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 294 295 - special case hash. ... ECDSA P384 test vectors (SHA512) 295 296 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 295 296 - special case hash. ... ECDSA P384 test vectors (SHA512) 296 297 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 296 297 - special case hash. ... ECDSA P384 test vectors (SHA512) 297 298 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 297 298 - special case hash. ... ECDSA P384 test vectors (SHA512) 298 299 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 298 299 - special case hash. ... ECDSA P384 test vectors (SHA512) 299 300 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 299 300 - special case hash. ... ECDSA P384 test vectors (SHA512) 300 301 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 300 301 - special case hash. ... ECDSA P384 test vectors (SHA512) 301 302 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 301 302 - special case hash. ... ECDSA P384 test vectors (SHA512) 302 303 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 302 303 - special case hash. ... ECDSA P384 test vectors (SHA512) 303 304 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 303 304 - special case hash. ... ECDSA P384 test vectors (SHA512) 304 305 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 304 305 - special case hash. ... ECDSA P384 test vectors (SHA512) 305 306 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 305 306 - special case hash. ... ECDSA P384 test vectors (SHA512) 306 307 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 306 307 - special case hash. ... ECDSA P384 test vectors (SHA512) 307 308 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 307 308 - special case hash. ... ECDSA P384 test vectors (SHA512) 308 309 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 308 309 - special case hash. ... ECDSA P384 test vectors (SHA512) 309 310 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 309 310 - special case hash. ... ECDSA P384 test vectors (SHA512) 310 311 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 310 311 - special case hash. ... ECDSA P384 test vectors (SHA512) 311 312 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 311 312 - special case hash. ... ECDSA P384 test vectors (SHA512) 312 313 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 312 313 - special case hash. ... ECDSA P384 test vectors (SHA512) 313 314 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 313 314 - special case hash. ... ECDSA P384 test vectors (SHA512) 314 315 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 314 315 - special case hash. ... ECDSA P384 test vectors (SHA512) 315 316 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 315 316 - special case hash. ... ECDSA P384 test vectors (SHA512) 316 317 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 316 317 - special case hash. ... ECDSA P384 test vectors (SHA512) 317 318 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 317 318 - special case hash. ... ECDSA P384 test vectors (SHA512) 318 319 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 318 319 - special case hash. ... ECDSA P384 test vectors (SHA512) 319 320 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 319 320 - special case hash. ... ECDSA P384 test vectors (SHA512) 320 321 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 320 321 - special case hash. ... ECDSA P384 test vectors (SHA512) 321 322 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 321 322 - special case hash. ... ECDSA P384 test vectors (SHA512) 322 323 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 322 323 - special case hash. ... ECDSA P384 test vectors (SHA512) 323 324 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 323 324 - special case hash. ... ECDSA P384 test vectors (SHA512) 324 325 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 324 325 - special case hash. ... ECDSA P384 test vectors (SHA512) 325 326 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 325 326 - special case hash. ... ECDSA P384 test vectors (SHA512) 326 327 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 326 327 - special case hash. ... ECDSA P384 test vectors (SHA512) 327 328 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 327 328 - special case hash. ... ECDSA P384 test vectors (SHA512) 328 329 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 328 329 - special case hash. ... ECDSA P384 test vectors (SHA512) 329 330 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 329 330 - special case hash. ... ECDSA P384 test vectors (SHA512) 330 331 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 330 331 - special case hash. ... ECDSA P384 test vectors (SHA512) 331 332 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 331 332 - special case hash. ... ECDSA P384 test vectors (SHA512) 332 333 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 332 333 - special case hash. ... ECDSA P384 test vectors (SHA512) 333 334 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 333 334 - special case hash. ... ECDSA P384 test vectors (SHA512) 334 335 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 334 335 - special case hash. ... ECDSA P384 test vectors (SHA512) 335 336 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 335 336 - special case hash. ... ECDSA P384 test vectors (SHA512) 336 337 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 336 337 - special case hash. ... ECDSA P384 test vectors (SHA512) 337 338 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 337 338 - special case hash. ... ECDSA P384 test vectors (SHA512) 338 339 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 338 339 - special case hash. ... ECDSA P384 test vectors (SHA512) 339 340 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 339 340 - special case hash. ... ECDSA P384 test vectors (SHA512) 340 341 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 340 341 - special case hash. ... ECDSA P384 test vectors (SHA512) 341 342 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 341 342 - special case hash. ... ECDSA P384 test vectors (SHA512) 342 343 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 342 343 - special case hash. ... ECDSA P384 test vectors (SHA512) 343 344 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 343 344 - special case hash. ... ECDSA P384 test vectors (SHA512) 344 345 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 344 345 - special case hash. ... ECDSA P384 test vectors (SHA512) 345 346 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 345 346 - special case hash. ... ECDSA P384 test vectors (SHA512) 346 347 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 346 347 - special case hash. ... ECDSA P384 test vectors (SHA512) 347 348 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 347 348 - special case hash. ... ECDSA P384 test vectors (SHA512) 348 349 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 348 349 - special case hash. ... ECDSA P384 test vectors (SHA512) 349 350 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 349 350 - special case hash. ... ECDSA P384 test vectors (SHA512) 350 351 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 350 351 - special case hash. ... ECDSA P384 test vectors (SHA512) 351 352 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 351 352 - special case hash. ... ECDSA P384 test vectors (SHA512) 352 353 - special case hash. [OK] ECDSA P384 test vectors (SHA512) 352 353 - special case hash. ... ECDSA P384 test vectors (SHA512) 353 354 - Signature generated without truncating the hash. [OK] ECDSA P384 test vectors (SHA512) 353 354 - Signature generated without truncating the hash. ... ECDSA P384 test vectors (SHA512) 354 355 - k*G has a large x-coordinate. [OK] ECDSA P384 test vectors (SHA512) 354 355 - k*G has a large x-coordinate. ... ECDSA P384 test vectors (SHA512) 355 356 - r too large. [OK] ECDSA P384 test vectors (SHA512) 355 356 - r too large. ... ECDSA P384 test vectors (SHA512) 356 357 - r,s are large. [OK] ECDSA P384 test vectors (SHA512) 356 357 - r,s are large. ... ECDSA P384 test vectors (SHA512) 357 358 - r and s^-1 have a large Hamming weight. [OK] ECDSA P384 test vectors (SHA512) 357 358 - r and s^-1 have a large Hamming weight. ... ECDSA P384 test vectors (SHA512) 358 359 - r and s^-1 have a large Hamming weight. [OK] ECDSA P384 test vectors (SHA512) 358 359 - r and s^-1 have a large Hamming weight. ... ECDSA P384 test vectors (SHA512) 359 360 - small r and s. [OK] ECDSA P384 test vectors (SHA512) 359 360 - small r and s. ... ECDSA P384 test vectors (SHA512) 360 361 - small r and s. [OK] ECDSA P384 test vectors (SHA512) 360 361 - small r and s. ... ECDSA P384 test vectors (SHA512) 361 362 - small r and s. [OK] ECDSA P384 test vectors (SHA512) 361 362 - small r and s. ... ECDSA P384 test vectors (SHA512) 362 363 - r is larger than n. [OK] ECDSA P384 test vectors (SHA512) 362 363 - r is larger than n. ... ECDSA P384 test vectors (SHA512) 363 364 - s is larger than n. [OK] ECDSA P384 test vectors (SHA512) 363 364 - s is larger than n. ... ECDSA P384 test vectors (SHA512) 364 365 - small r and s^-1. [OK] ECDSA P384 test vectors (SHA512) 364 365 - small r and s^-1. ... ECDSA P384 test vectors (SHA512) 365 366 - smallish r and s^-1. [OK] ECDSA P384 test vectors (SHA512) 365 366 - smallish r and s^-1. ... ECDSA P384 test vectors (SHA512) 366 367 - 100-bit r and small s^-1. [OK] ECDSA P384 test vectors (SHA512) 366 367 - 100-bit r and small s^-1. ... ECDSA P384 test vectors (SHA512) 367 368 - small r and 100 bit s^-1. [OK] ECDSA P384 test vectors (SHA512) 367 368 - small r and 100 bit s^-1. ... ECDSA P384 test vectors (SHA512) 368 369 - 100-bit r and s^-1. [OK] ECDSA P384 test vectors (SHA512) 368 369 - 100-bit r and s^-1. ... ECDSA P384 test vectors (SHA512) 369 370 - r and s^-1 are close to n. [OK] ECDSA P384 test vectors (SHA512) 369 370 - r and s^-1 are close to n. ... ECDSA P384 test vectors (SHA512) 370 371 - s == 1. [OK] ECDSA P384 test vectors (SHA512) 370 371 - s == 1. ... ECDSA P384 test vectors (SHA512) 371 372 - s == 0. [OK] ECDSA P384 test vectors (SHA512) 371 372 - s == 0. ... ECDSA P384 test vectors (SHA512) 372 373 - point at infinity during verify. [OK] ECDSA P384 test vectors (SHA512) 372 373 - point at infinity during verify. ... ECDSA P384 test vectors (SHA512) 373 374 - edge case for signature malleability. [OK] ECDSA P384 test vectors (SHA512) 373 374 - edge case for signature malleability. ... ECDSA P384 test vectors (SHA512) 374 375 - edge case for signature malleability. [OK] ECDSA P384 test vectors (SHA512) 374 375 - edge case for signature malleability. ... ECDSA P384 test vectors (SHA512) 375 376 - u1 == 1. [OK] ECDSA P384 test vectors (SHA512) 375 376 - u1 == 1. ... ECDSA P384 test vectors (SHA512) 376 377 - u1 == n - 1. [OK] ECDSA P384 test vectors (SHA512) 376 377 - u1 == n - 1. ... ECDSA P384 test vectors (SHA512) 377 378 - u2 == 1. [OK] ECDSA P384 test vectors (SHA512) 377 378 - u2 == 1. ... ECDSA P384 test vectors (SHA512) 378 379 - u2 == n - 1. [OK] ECDSA P384 test vectors (SHA512) 378 379 - u2 == n - 1. ... ECDSA P384 test vectors (SHA512) 379 380 - edge case for u1. [OK] ECDSA P384 test vectors (SHA512) 379 380 - edge case for u1. ... ECDSA P384 test vectors (SHA512) 380 381 - edge case for u1. [OK] ECDSA P384 test vectors (SHA512) 380 381 - edge case for u1. ... ECDSA P384 test vectors (SHA512) 381 382 - edge case for u1. [OK] ECDSA P384 test vectors (SHA512) 381 382 - edge case for u1. ... ECDSA P384 test vectors (SHA512) 382 383 - edge case for u1. [OK] ECDSA P384 test vectors (SHA512) 382 383 - edge case for u1. ... ECDSA P384 test vectors (SHA512) 383 384 - edge case for u1. [OK] ECDSA P384 test vectors (SHA512) 383 384 - edge case for u1. ... ECDSA P384 test vectors (SHA512) 384 385 - edge case for u1. [OK] ECDSA P384 test vectors (SHA512) 384 385 - edge case for u1. ... ECDSA P384 test vectors (SHA512) 385 386 - edge case for u1. [OK] ECDSA P384 test vectors (SHA512) 385 386 - edge case for u1. ... ECDSA P384 test vectors (SHA512) 386 387 - edge case for u1. [OK] ECDSA P384 test vectors (SHA512) 386 387 - edge case for u1. ... ECDSA P384 test vectors (SHA512) 387 388 - edge case for u1. [OK] ECDSA P384 test vectors (SHA512) 387 388 - edge case for u1. ... ECDSA P384 test vectors (SHA512) 388 389 - edge case for u1. [OK] ECDSA P384 test vectors (SHA512) 388 389 - edge case for u1. ... ECDSA P384 test vectors (SHA512) 389 390 - edge case for u1. [OK] ECDSA P384 test vectors (SHA512) 389 390 - edge case for u1. ... ECDSA P384 test vectors (SHA512) 390 391 - edge case for u1. [OK] ECDSA P384 test vectors (SHA512) 390 391 - edge case for u1. ... ECDSA P384 test vectors (SHA512) 391 392 - edge case for u2. [OK] ECDSA P384 test vectors (SHA512) 391 392 - edge case for u2. ... ECDSA P384 test vectors (SHA512) 392 393 - edge case for u2. [OK] ECDSA P384 test vectors (SHA512) 392 393 - edge case for u2. ... ECDSA P384 test vectors (SHA512) 393 394 - edge case for u2. [OK] ECDSA P384 test vectors (SHA512) 393 394 - edge case for u2. ... ECDSA P384 test vectors (SHA512) 394 395 - edge case for u2. [OK] ECDSA P384 test vectors (SHA512) 394 395 - edge case for u2. ... ECDSA P384 test vectors (SHA512) 395 396 - edge case for u2. [OK] ECDSA P384 test vectors (SHA512) 395 396 - edge case for u2. ... ECDSA P384 test vectors (SHA512) 396 397 - edge case for u2. [OK] ECDSA P384 test vectors (SHA512) 396 397 - edge case for u2. ... ECDSA P384 test vectors (SHA512) 397 398 - edge case for u2. [OK] ECDSA P384 test vectors (SHA512) 397 398 - edge case for u2. ... ECDSA P384 test vectors (SHA512) 398 399 - edge case for u2. [OK] ECDSA P384 test vectors (SHA512) 398 399 - edge case for u2. ... ECDSA P384 test vectors (SHA512) 399 400 - edge case for u2. [OK] ECDSA P384 test vectors (SHA512) 399 400 - edge case for u2. ... ECDSA P384 test vectors (SHA512) 400 401 - edge case for u2. [OK] ECDSA P384 test vectors (SHA512) 400 401 - edge case for u2. ... ECDSA P384 test vectors (SHA512) 401 402 - edge case for u2. [OK] ECDSA P384 test vectors (SHA512) 401 402 - edge case for u2. ... ECDSA P384 test vectors (SHA512) 402 403 - edge case for u2. [OK] ECDSA P384 test vectors (SHA512) 402 403 - edge case for u2. ... ECDSA P384 test vectors (SHA512) 403 404 - point duplication during verification. [OK] ECDSA P384 test vectors (SHA512) 403 404 - point duplication during verification. ... ECDSA P384 test vectors (SHA512) 404 405 - duplication bug. [OK] ECDSA P384 test vectors (SHA512) 404 405 - duplication bug. ... ECDSA P384 test vectors (SHA512) 405 406 - point with x-coordinate 0. [OK] ECDSA P384 test vectors (SHA512) 405 406 - point with x-coordinate 0. ... ECDSA P384 test vectors (SHA512) 406 407 - point with x-coordinate 0. [OK] ECDSA P384 test vectors (SHA512) 406 407 - point with x-coordinate 0. ... ECDSA P384 test vectors (SHA512) 407 408 - comparison with point at infinity . [OK] ECDSA P384 test vectors (SHA512) 407 408 - comparison with point at infinity . ... ECDSA P384 test vectors (SHA512) 408 409 - extreme value for k and edgecase s. [OK] ECDSA P384 test vectors (SHA512) 408 409 - extreme value for k and edgecase s. ... ECDSA P384 test vectors (SHA512) 409 410 - extreme value for k and s^-1. [OK] ECDSA P384 test vectors (SHA512) 409 410 - extreme value for k and s^-1. ... ECDSA P384 test vectors (SHA512) 410 411 - extreme value for k and s^-1. [OK] ECDSA P384 test vectors (SHA512) 410 411 - extreme value for k and s^-1. ... ECDSA P384 test vectors (SHA512) 411 412 - extreme value for k and s^-1. [OK] ECDSA P384 test vectors (SHA512) 411 412 - extreme value for k and s^-1. ... ECDSA P384 test vectors (SHA512) 412 413 - extreme value for k and s^-1. [OK] ECDSA P384 test vectors (SHA512) 412 413 - extreme value for k and s^-1. ... ECDSA P384 test vectors (SHA512) 413 414 - extreme value for k. [OK] ECDSA P384 test vectors (SHA512) 413 414 - extreme value for k. ... ECDSA P384 test vectors (SHA512) 414 415 - extreme value for k and edgecase s. [OK] ECDSA P384 test vectors (SHA512) 414 415 - extreme value for k and edgecase s. ... ECDSA P384 test vectors (SHA512) 415 416 - extreme value for k and s^-1. [OK] ECDSA P384 test vectors (SHA512) 415 416 - extreme value for k and s^-1. ... ECDSA P384 test vectors (SHA512) 416 417 - extreme value for k and s^-1. [OK] ECDSA P384 test vectors (SHA512) 416 417 - extreme value for k and s^-1. ... ECDSA P384 test vectors (SHA512) 417 418 - extreme value for k and s^-1. [OK] ECDSA P384 test vectors (SHA512) 417 418 - extreme value for k and s^-1. ... ECDSA P384 test vectors (SHA512) 418 419 - extreme value for k and s^-1. [OK] ECDSA P384 test vectors (SHA512) 418 419 - extreme value for k and s^-1. ... ECDSA P384 test vectors (SHA512) 419 420 - extreme value for k. [OK] ECDSA P384 test vectors (SHA512) 419 420 - extreme value for k. ... ECDSA P384 test vectors (SHA512) 420 421 - testing point duplication. [OK] ECDSA P384 test vectors (SHA512) 420 421 - testing point duplication. ... ECDSA P384 test vectors (SHA512) 421 422 - testing point duplication. [OK] ECDSA P384 test vectors (SHA512) 421 422 - testing point duplication. ... ECDSA P384 test vectors (SHA512) 422 423 - testing point duplication. [OK] ECDSA P384 test vectors (SHA512) 422 423 - testing point duplication. ... ECDSA P384 test vectors (SHA512) 423 424 - testing point duplication. [OK] ECDSA P384 test vectors (SHA512) 423 424 - testing point duplication. ... ECDSA P384 test vectors (SHA512) 424 425 - pseudorandom signature. [OK] ECDSA P384 test vectors (SHA512) 424 425 - pseudorandom signature. ... ECDSA P384 test vectors (SHA512) 425 426 - pseudorandom signature. [OK] ECDSA P384 test vectors (SHA512) 425 426 - pseudorandom signature. ... ECDSA P384 test vectors (SHA512) 426 427 - pseudorandom signature. [OK] ECDSA P384 test vectors (SHA512) 426 427 - pseudorandom signature. ... ECDSA P384 test vectors (SHA512) 427 428 - pseudorandom signature. [OK] ECDSA P384 test vectors (SHA512) 427 428 - pseudorandom signature. ... ECDSA P384 test vectors (SHA512) 428 429 - x-coordinate of the public key is large. [OK] ECDSA P384 test vectors (SHA512) 428 429 - x-coordinate of the public key is large. ... ECDSA P384 test vectors (SHA512) 429 430 - x-coordinate of the public key is large. [OK] ECDSA P384 test vectors (SHA512) 429 430 - x-coordinate of the public key is large. ... ECDSA P384 test vectors (SHA512) 430 431 - x-coordinate of the public key is large. [OK] ECDSA P384 test vectors (SHA512) 430 431 - x-coordinate of the public key is large. ... ECDSA P384 test vectors (SHA512) 431 432 - y-coordinate of the public key has many trailing 0's. [OK] ECDSA P384 test vectors (SHA512) 431 432 - y-coordinate of the public key has many trailing 0's. ... ECDSA P384 test vectors (SHA512) 432 433 - y-coordinate of the public key has many trailing 0's. [OK] ECDSA P384 test vectors (SHA512) 432 433 - y-coordinate of the public key has many trailing 0's. ... ECDSA P384 test vectors (SHA512) 433 434 - y-coordinate of the public key has many trailing 0's. [OK] ECDSA P384 test vectors (SHA512) 433 434 - y-coordinate of the public key has many trailing 0's. ... ECDSA P384 test vectors (SHA512) 434 435 - x-coordinate of the public key has many trailing 0's. [OK] ECDSA P384 test vectors (SHA512) 434 435 - x-coordinate of the public key has many trailing 0's. ... ECDSA P384 test vectors (SHA512) 435 436 - x-coordinate of the public key has many trailing 0's. [OK] ECDSA P384 test vectors (SHA512) 435 436 - x-coordinate of the public key has many trailing 0's. ... ECDSA P384 test vectors (SHA512) 436 437 - x-coordinate of the public key has many trailing 0's. [OK] ECDSA P384 test vectors (SHA512) 436 437 - x-coordinate of the public key has many trailing 0's. ... ECDSA P384 test vectors (SHA512) 437 438 - x-coordinate of the public key is small. [OK] ECDSA P384 test vectors (SHA512) 437 438 - x-coordinate of the public key is small. ... ECDSA P384 test vectors (SHA512) 438 439 - x-coordinate of the public key is small. [OK] ECDSA P384 test vectors (SHA512) 438 439 - x-coordinate of the public key is small. ... ECDSA P384 test vectors (SHA512) 439 440 - x-coordinate of the public key is small. [OK] ECDSA P384 test vectors (SHA512) 439 440 - x-coordinate of the public key is small. ... ECDSA P384 test vectors (SHA512) 440 441 - y-coordinate of the public key is small. [OK] ECDSA P384 test vectors (SHA512) 440 441 - y-coordinate of the public key is small. ... ECDSA P384 test vectors (SHA512) 441 442 - y-coordinate of the public key is small. [OK] ECDSA P384 test vectors (SHA512) 441 442 - y-coordinate of the public key is small. ... ECDSA P384 test vectors (SHA512) 442 443 - y-coordinate of the public key is small. [OK] ECDSA P384 test vectors (SHA512) 442 443 - y-coordinate of the public key is small. ... ECDSA P384 test vectors (SHA512) 443 444 - y-coordinate of the public key is large. [OK] ECDSA P384 test vectors (SHA512) 443 444 - y-coordinate of the public key is large. ... ECDSA P384 test vectors (SHA512) 444 445 - y-coordinate of the public key is large. [OK] ECDSA P384 test vectors (SHA512) 444 445 - y-coordinate of the public key is large. ... ECDSA P384 test vectors (SHA512) 445 446 - y-coordinate of the public key is large. [OK] ECDSA P384 test vectors (SHA512) 445 446 - y-coordinate of the public key is large. ... ECDH P521 test vectors 0 1 - normal case. [OK] ECDH P521 test vectors 0 1 - normal case. ... ECDH P521 test vectors 1 2 - compressed public key. [OK] ECDH P521 test vectors 1 2 - compressed public key. ... ECDH P521 test vectors 2 3 - edge case for shared secret. [OK] ECDH P521 test vectors 2 3 - edge case for shared secret. ... ECDH P521 test vectors 3 4 - edge case for shared secret. [OK] ECDH P521 test vectors 3 4 - edge case for shared secret. ... ECDH P521 test vectors 4 5 - edge case for shared secret. [OK] ECDH P521 test vectors 4 5 - edge case for shared secret. ... ECDH P521 test vectors 5 6 - edge case for shared secret. [OK] ECDH P521 test vectors 5 6 - edge case for shared secret. ... ECDH P521 test vectors 6 7 - edge case for shared secret. [OK] ECDH P521 test vectors 6 7 - edge case for shared secret. ... ECDH P521 test vectors 7 8 - edge case for shared secret. [OK] ECDH P521 test vectors 7 8 - edge case for shared secret. ... ECDH P521 test vectors 8 9 - edge case for shared secret. [OK] ECDH P521 test vectors 8 9 - edge case for shared secret. ... ECDH P521 test vectors 9 10 - edge case for shared secret. [OK] ECDH P521 test vectors 9 10 - edge case for shared secret. ... ECDH P521 test vectors 10 11 - edge case for shared secret. [OK] ECDH P521 test vectors 10 11 - edge case for shared secret. ... ECDH P521 test vectors 11 12 - edge case for shared secret. [OK] ECDH P521 test vectors 11 12 - edge case for shared secret. ... ECDH P521 test vectors 12 13 - edge case for shared secret. [OK] ECDH P521 test vectors 12 13 - edge case for shared secret. ... ECDH P521 test vectors 13 14 - edge case for shared secret. [OK] ECDH P521 test vectors 13 14 - edge case for shared secret. ... ECDH P521 test vectors 14 15 - edge case for shared secret. [OK] ECDH P521 test vectors 14 15 - edge case for shared secret. ... ECDH P521 test vectors 15 16 - edge case for shared secret. [OK] ECDH P521 test vectors 15 16 - edge case for shared secret. ... ECDH P521 test vectors 16 17 - edge case for shared secret. [OK] ECDH P521 test vectors 16 17 - edge case for shared secret. ... ECDH P521 test vectors 17 18 - edge case for shared secret. [OK] ECDH P521 test vectors 17 18 - edge case for shared secret. ... ECDH P521 test vectors 18 19 - edge case for shared secret. [OK] ECDH P521 test vectors 18 19 - edge case for shared secret. ... ECDH P521 test vectors 19 20 - edge cases for ephemeral key. [OK] ECDH P521 test vectors 19 20 - edge cases for ephemeral key. ... ECDH P521 test vectors 20 21 - edge cases for ephemeral key. [OK] ECDH P521 test vectors 20 21 - edge cases for ephemeral key. ... ECDH P521 test vectors 21 22 - edge cases for ephemeral key. [OK] ECDH P521 test vectors 21 22 - edge cases for ephemeral key. ... ECDH P521 test vectors 22 23 - edge cases for ephemeral key. [OK] ECDH P521 test vectors 22 23 - edge cases for ephemeral key. ... ECDH P521 test vectors 23 24 - edge cases for ephemeral key. [OK] ECDH P521 test vectors 23 24 - edge cases for ephemeral key. ... ECDH P521 test vectors 24 25 - edge cases for ephemeral key. [OK] ECDH P521 test vectors 24 25 - edge cases for ephemeral key. ... ECDH P521 test vectors 25 26 - edge cases for ephemeral key. [OK] ECDH P521 test vectors 25 26 - edge cases for ephemeral key. ... ECDH P521 test vectors 26 27 - edge cases for ephemeral key. [OK] ECDH P521 test vectors 26 27 - edge cases for ephemeral key. ... ECDH P521 test vectors 27 28 - edge cases for ephemeral key. [OK] ECDH P521 test vectors 27 28 - edge cases for ephemeral key. ... ECDH P521 test vectors 28 29 - edge cases for ephemeral key. [OK] ECDH P521 test vectors 28 29 - edge cases for ephemeral key. ... ECDH P521 test vectors 29 30 - edge cases for ephemeral key. [OK] ECDH P521 test vectors 29 30 - edge cases for ephemeral key. ... ECDH P521 test vectors 30 31 - edge cases for ephemeral key. [OK] ECDH P521 test vectors 30 31 - edge cases for ephemeral key. ... ECDH P521 test vectors 31 32 - edge cases for ephemeral key. [OK] ECDH P521 test vectors 31 32 - edge cases for ephemeral key. ... ECDH P521 test vectors 32 33 - edge cases for ephemeral key. [OK] ECDH P521 test vectors 32 33 - edge cases for ephemeral key. ... ECDH P521 test vectors 33 34 - edge cases for ephemeral key. [OK] ECDH P521 test vectors 33 34 - edge cases for ephemeral key. ... ECDH P521 test vectors 34 35 - edge cases for ephemeral key. [OK] ECDH P521 test vectors 34 35 - edge cases for ephemeral key. ... ECDH P521 test vectors 35 36 - edge cases for ephemeral key. [OK] ECDH P521 test vectors 35 36 - edge cases for ephemeral key. ... ECDH P521 test vectors 36 37 - edge case for Jacobian and projective coordinates. [OK] ECDH P521 test vectors 36 37 - edge case for Jacobian and projective coordinates. ... ECDH P521 test vectors 37 38 - edge case for Jacobian and projective coordinates. [OK] ECDH P521 test vectors 37 38 - edge case for Jacobian and projective coordinates. ... ECDH P521 test vectors 38 39 - edge case for Jacobian and projective coordinates. [OK] ECDH P521 test vectors 38 39 - edge case for Jacobian and projective coordinates. ... ECDH P521 test vectors 39 40 - edge case for Jacobian and projective coordinates. [OK] ECDH P521 test vectors 39 40 - edge case for Jacobian and projective coordinates. ... ECDH P521 test vectors 40 41 - edge case for Jacobian and projective coordinates. [OK] ECDH P521 test vectors 40 41 - edge case for Jacobian and projective coordinates. ... ECDH P521 test vectors 41 42 - edge case for Jacobian and projective coordinates. [OK] ECDH P521 test vectors 41 42 - edge case for Jacobian and projective coordinates. ... ECDH P521 test vectors 42 43 - edge case for Jacobian and projective coordinates in left to right addition chain. [OK] ECDH P521 test vectors 42 43 - edge case for Jacobian and projective coordinates in left to right addition chain. ... ECDH P521 test vectors 43 44 - edge case for Jacobian and projective coordinates in left to right addition chain. [OK] ECDH P521 test vectors 43 44 - edge case for Jacobian and projective coordinates in left to right addition chain. ... ECDH P521 test vectors 44 45 - edge case for Jacobian and projective coordinates in left to right addition chain. [OK] ECDH P521 test vectors 44 45 - edge case for Jacobian and projective coordinates in left to right addition chain. ... ECDH P521 test vectors 45 46 - edge case for Jacobian and projective coordinates in left to right addition chain. [OK] ECDH P521 test vectors 45 46 - edge case for Jacobian and projective coordinates in left to right addition chain. ... ECDH P521 test vectors 46 47 - edge case for Jacobian and projective coordinates in left to right addition chain. [OK] ECDH P521 test vectors 46 47 - edge case for Jacobian and projective coordinates in left to right addition chain. ... ECDH P521 test vectors 47 48 - edge case for Jacobian and projective coordinates in left to right addition chain. [OK] ECDH P521 test vectors 47 48 - edge case for Jacobian and projective coordinates in left to right addition chain. ... ECDH P521 test vectors 48 49 - edge case for Jacobian and projective coordinates in left to right addition chain. [OK] ECDH P521 test vectors 48 49 - edge case for Jacobian and projective coordinates in left to right addition chain. ... ECDH P521 test vectors 49 50 - edge case for Jacobian and projective coordinates in left to right addition chain. [OK] ECDH P521 test vectors 49 50 - edge case for Jacobian and projective coordinates in left to right addition chain. ... ECDH P521 test vectors 50 51 - edge case for Jacobian and projective coordinates in left to right addition chain. [OK] ECDH P521 test vectors 50 51 - edge case for Jacobian and projective coordinates in left to right addition chain. ... ECDH P521 test vectors 51 52 - edge case for Jacobian and projective coordinates in left to right addition chain. [OK] ECDH P521 test vectors 51 52 - edge case for Jacobian and projective coordinates in left to right addition chain. ... ECDH P521 test vectors 52 53 - edge case for Jacobian and projective coordinates in left to right addition chain. [OK] ECDH P521 test vectors 52 53 - edge case for Jacobian and projective coordinates in left to right addition chain. ... ECDH P521 test vectors 53 54 - edge case for Jacobian and projective coordinates in left to right addition chain. [OK] ECDH P521 test vectors 53 54 - edge case for Jacobian and projective coordinates in left to right addition chain. ... ECDH P521 test vectors 54 55 - edge case for Jacobian and projective coordinates in left to right addition chain. [OK] ECDH P521 test vectors 54 55 - edge case for Jacobian and projective coordinates in left to right addition chain. ... ECDH P521 test vectors 55 56 - edge case for Jacobian and projective coordinates in left to right addition chain. [OK] ECDH P521 test vectors 55 56 - edge case for Jacobian and projective coordinates in left to right addition chain. ... ECDH P521 test vectors 56 57 - edge case for Jacobian and projective coordinates in left to right addition chain. [OK] ECDH P521 test vectors 56 57 - edge case for Jacobian and projective coordinates in left to right addition chain. ... ECDH P521 test vectors 57 58 - edge case for Jacobian and projective coordinates in left to right addition chain. [OK] ECDH P521 test vectors 57 58 - edge case for Jacobian and projective coordinates in left to right addition chain. ... ECDH P521 test vectors 58 59 - edge case for Jacobian and projective coordinates in left to right addition chain. [OK] ECDH P521 test vectors 58 59 - edge case for Jacobian and projective coordinates in left to right addition chain. ... ECDH P521 test vectors 59 60 - edge case for Jacobian and projective coordinates in left to right addition chain. [OK] ECDH P521 test vectors 59 60 - edge case for Jacobian and projective coordinates in left to right addition chain. ... ECDH P521 test vectors 60 61 - edge case for Jacobian and projective coordinates in left to right addition chain. [OK] ECDH P521 test vectors 60 61 - edge case for Jacobian and projective coordinates in left to right addition chain. ... ECDH P521 test vectors 61 62 - edge case for Jacobian and projective coordinates in left to right addition chain. [OK] ECDH P521 test vectors 61 62 - edge case for Jacobian and projective coordinates in left to right addition chain. ... ECDH P521 test vectors 62 63 - edge case for Jacobian and projective coordinates in left to right addition chain. [OK] ECDH P521 test vectors 62 63 - edge case for Jacobian and projective coordinates in left to right addition chain. ... ECDH P521 test vectors 63 64 - edge case for Jacobian and projective coordinates in left to right addition chain. [OK] ECDH P521 test vectors 63 64 - edge case for Jacobian and projective coordinates in left to right addition chain. ... ECDH P521 test vectors 64 65 - edge case for Jacobian and projective coordinates in left to right addition chain. [OK] ECDH P521 test vectors 64 65 - edge case for Jacobian and projective coordinates in left to right addition chain. ... ECDH P521 test vectors 65 66 - edge case for Jacobian and projective coordinates in left to right addition chain. [OK] ECDH P521 test vectors 65 66 - edge case for Jacobian and projective coordinates in left to right addition chain. ... ECDH P521 test vectors 66 67 - edge case for Jacobian and projective coordinates in left to right addition chain. [OK] ECDH P521 test vectors 66 67 - edge case for Jacobian and projective coordinates in left to right addition chain. ... ECDH P521 test vectors 67 68 - edge case for Jacobian and projective coordinates in left to right addition chain. [OK] ECDH P521 test vectors 67 68 - edge case for Jacobian and projective coordinates in left to right addition chain. ... ECDH P521 test vectors 68 69 - edge case for Jacobian and projective coordinates in left to right addition chain. [OK] ECDH P521 test vectors 68 69 - edge case for Jacobian and projective coordinates in left to right addition chain. ... ECDH P521 test vectors 69 70 - edge case for Jacobian and projective coordinates in left to right addition chain. [OK] ECDH P521 test vectors 69 70 - edge case for Jacobian and projective coordinates in left to right addition chain. ... ECDH P521 test vectors 70 71 - edge case for Jacobian and projective coordinates in left to right addition chain. [OK] ECDH P521 test vectors 70 71 - edge case for Jacobian and projective coordinates in left to right addition chain. ... ECDH P521 test vectors 71 72 - edge case for Jacobian and projective coordinates in left to right addition chain. [OK] ECDH P521 test vectors 71 72 - edge case for Jacobian and projective coordinates in left to right addition chain. ... ECDH P521 test vectors 72 73 - edge case for Jacobian and projective coordinates in left to right addition chain. [OK] ECDH P521 test vectors 72 73 - edge case for Jacobian and projective coordinates in left to right addition chain. ... ECDH P521 test vectors 73 74 - edge case for Jacobian and projective coordinates in left to right addition chain. [OK] ECDH P521 test vectors 73 74 - edge case for Jacobian and projective coordinates in left to right addition chain. ... ECDH P521 test vectors 74 75 - edge case for Jacobian and projective coordinates in left to right addition chain. [OK] ECDH P521 test vectors 74 75 - edge case for Jacobian and projective coordinates in left to right addition chain. ... ECDH P521 test vectors 75 76 - edge case for Jacobian and projective coordinates in left to right addition chain. [OK] ECDH P521 test vectors 75 76 - edge case for Jacobian and projective coordinates in left to right addition chain. ... ECDH P521 test vectors 76 77 - edge case for Jacobian and projective coordinates in left to right addition chain. [OK] ECDH P521 test vectors 76 77 - edge case for Jacobian and projective coordinates in left to right addition chain. ... ECDH P521 test vectors 77 78 - edge case for Jacobian and projective coordinates in left to right addition chain. [OK] ECDH P521 test vectors 77 78 - edge case for Jacobian and projective coordinates in left to right addition chain. ... ECDH P521 test vectors 78 79 - edge case for Jacobian and projective coordinates in left to right addition chain. [OK] ECDH P521 test vectors 78 79 - edge case for Jacobian and projective coordinates in left to right addition chain. ... ECDH P521 test vectors 79 80 - edge case for Jacobian and projective coordinates in left to right addition chain. [OK] ECDH P521 test vectors 79 80 - edge case for Jacobian and projective coordinates in left to right addition chain. ... ECDH P521 test vectors 80 81 - edge case for Jacobian and projective coordinates in left to right addition chain. [OK] ECDH P521 test vectors 80 81 - edge case for Jacobian and projective coordinates in left to right addition chain. ... ECDH P521 test vectors 81 82 - edge case for Jacobian and projective coordinates in left to right addition chain. [OK] ECDH P521 test vectors 81 82 - edge case for Jacobian and projective coordinates in left to right addition chain. ... ECDH P521 test vectors 82 83 - edge case for Jacobian and projective coordinates in left to right addition chain. [OK] ECDH P521 test vectors 82 83 - edge case for Jacobian and projective coordinates in left to right addition chain. ... ECDH P521 test vectors 83 84 - edge case for Jacobian and projective coordinates in left to right addition chain. [OK] ECDH P521 test vectors 83 84 - edge case for Jacobian and projective coordinates in left to right addition chain. ... ECDH P521 test vectors 84 85 - edge case for Jacobian and projective coordinates in left to right addition chain. [OK] ECDH P521 test vectors 84 85 - edge case for Jacobian and projective coordinates in left to right addition chain. ... ECDH P521 test vectors 85 86 - edge case for Jacobian and projective coordinates in left to right addition chain. [OK] ECDH P521 test vectors 85 86 - edge case for Jacobian and projective coordinates in left to right addition chain. ... ECDH P521 test vectors 86 87 - edge case for Jacobian and projective coordinates in left to right addition chain. [OK] ECDH P521 test vectors 86 87 - edge case for Jacobian and projective coordinates in left to right addition chain. ... ECDH P521 test vectors 87 88 - edge case for Jacobian and projective coordinates in left to right addition chain. [OK] ECDH P521 test vectors 87 88 - edge case for Jacobian and projective coordinates in left to right addition chain. ... ECDH P521 test vectors 88 89 - edge case for Jacobian and projective coordinates in left to right addition chain. [OK] ECDH P521 test vectors 88 89 - edge case for Jacobian and projective coordinates in left to right addition chain. ... ECDH P521 test vectors 89 90 - edge case for Jacobian and projective coordinates in left to right addition chain. [OK] ECDH P521 test vectors 89 90 - edge case for Jacobian and projective coordinates in left to right addition chain. ... ECDH P521 test vectors 90 91 - edge case for Jacobian and projective coordinates in left to right addition chain. [OK] ECDH P521 test vectors 90 91 - edge case for Jacobian and projective coordinates in left to right addition chain. ... ECDH P521 test vectors 91 92 - edge case for Jacobian and projective coordinates in left to right addition chain. [OK] ECDH P521 test vectors 91 92 - edge case for Jacobian and projective coordinates in left to right addition chain. ... ECDH P521 test vectors 92 93 - edge case for Jacobian and projective coordinates in precomputation or right to left addition chain. [OK] ECDH P521 test vectors 92 93 - edge case for Jacobian and projective coordinates in precomputation or right to left addition chain. ... ECDH P521 test vectors 93 94 - edge case for Jacobian and projective coordinates in precomputation or right to left addition chain. [OK] ECDH P521 test vectors 93 94 - edge case for Jacobian and projective coordinates in precomputation or right to left addition chain. ... ECDH P521 test vectors 94 95 - edge case for Jacobian and projective coordinates in precomputation or right to left addition chain. [OK] ECDH P521 test vectors 94 95 - edge case for Jacobian and projective coordinates in precomputation or right to left addition chain. ... ECDH P521 test vectors 95 96 - edge case for Jacobian and projective coordinates in precomputation or right to left addition chain. [OK] ECDH P521 test vectors 95 96 - edge case for Jacobian and projective coordinates in precomputation or right to left addition chain. ... ECDH P521 test vectors 96 97 - edge case for Jacobian and projective coordinates in precomputation or right to left addition chain. [OK] ECDH P521 test vectors 96 97 - edge case for Jacobian and projective coordinates in precomputation or right to left addition chain. ... ECDH P521 test vectors 97 98 - edge case for Jacobian and projective coordinates in precomputation or right to left addition chain. [OK] ECDH P521 test vectors 97 98 - edge case for Jacobian and projective coordinates in precomputation or right to left addition chain. ... ECDH P521 test vectors 98 99 - edge case for Jacobian and projective coordinates in precomputation or right to left addition chain. [OK] ECDH P521 test vectors 98 99 - edge case for Jacobian and projective coordinates in precomputation or right to left addition chain. ... ECDH P521 test vectors 99 100 - edge case for Jacobian and projective coordinates in precomputation or right to left addition chain. [OK] ECDH P521 test vectors 99 100 - edge case for Jacobian and projective coordinates in precomputation or right to left addition chain. ... ECDH P521 test vectors 100 101 - edge case for Jacobian and projective coordinates in precomputation or right to left addition chain. [OK] ECDH P521 test vectors 100 101 - edge case for Jacobian and projective coordinates in precomputation or right to left addition chain. ... ECDH P521 test vectors 101 102 - edge case for Jacobian and projective coordinates in precomputation or right to left addition chain. [OK] ECDH P521 test vectors 101 102 - edge case for Jacobian and projective coordinates in precomputation or right to left addition chain. ... ECDH P521 test vectors 102 103 - edge case for Jacobian and projective coordinates in precomputation or right to left addition chain. [OK] ECDH P521 test vectors 102 103 - edge case for Jacobian and projective coordinates in precomputation or right to left addition chain. ... ECDH P521 test vectors 103 104 - edge case for Jacobian and projective coordinates in precomputation or right to left addition chain. [OK] ECDH P521 test vectors 103 104 - edge case for Jacobian and projective coordinates in precomputation or right to left addition chain. ... ECDH P521 test vectors 104 105 - edge case for Jacobian and projective coordinates in right to left addition chain. [OK] ECDH P521 test vectors 104 105 - edge case for Jacobian and projective coordinates in right to left addition chain. ... ECDH P521 test vectors 105 106 - edge case for Jacobian and projective coordinates in right to left addition chain. [OK] ECDH P521 test vectors 105 106 - edge case for Jacobian and projective coordinates in right to left addition chain. ... ECDH P521 test vectors 106 107 - edge case for Jacobian and projective coordinates in right to left addition chain. [OK] ECDH P521 test vectors 106 107 - edge case for Jacobian and projective coordinates in right to left addition chain. ... ECDH P521 test vectors 107 108 - edge case for Jacobian and projective coordinates in right to left addition chain. [OK] ECDH P521 test vectors 107 108 - edge case for Jacobian and projective coordinates in right to left addition chain. ... ECDH P521 test vectors 108 109 - edge case for Jacobian and projective coordinates in right to left addition chain. [OK] ECDH P521 test vectors 108 109 - edge case for Jacobian and projective coordinates in right to left addition chain. ... ECDH P521 test vectors 109 110 - edge case for Jacobian and projective coordinates in right to left addition chain. [OK] ECDH P521 test vectors 109 110 - edge case for Jacobian and projective coordinates in right to left addition chain. ... ECDH P521 test vectors 110 111 - edge case for Jacobian and projective coordinates in right to left addition chain. [OK] ECDH P521 test vectors 110 111 - edge case for Jacobian and projective coordinates in right to left addition chain. ... ECDH P521 test vectors 111 112 - edge case for Jacobian and projective coordinates in right to left addition chain. [OK] ECDH P521 test vectors 111 112 - edge case for Jacobian and projective coordinates in right to left addition chain. ... ECDH P521 test vectors 112 113 - edge case for Jacobian and projective coordinates in right to left addition chain. [OK] ECDH P521 test vectors 112 113 - edge case for Jacobian and projective coordinates in right to left addition chain. ... ECDH P521 test vectors 113 114 - edge case for Jacobian and projective coordinates in right to left addition chain. [OK] ECDH P521 test vectors 113 114 - edge case for Jacobian and projective coordinates in right to left addition chain. ... ECDH P521 test vectors 114 115 - point with coordinate x = 0. [OK] ECDH P521 test vectors 114 115 - point with coordinate x = 0. ... ECDH P521 test vectors 115 116 - point with coordinate x = 0. [OK] ECDH P521 test vectors 115 116 - point with coordinate x = 0. ... ECDH P521 test vectors 116 117 - point with coordinate x = 0. [OK] ECDH P521 test vectors 116 117 - point with coordinate x = 0. ... ECDH P521 test vectors 117 118 - point with coordinate x = 0 in left to right addition chain. [OK] ECDH P521 test vectors 117 118 - point with coordinate x = 0 in left to right addition chain. ... ECDH P521 test vectors 118 119 - point with coordinate x = 0 in left to right addition chain. [OK] ECDH P521 test vectors 118 119 - point with coordinate x = 0 in left to right addition chain. ... ECDH P521 test vectors 119 120 - point with coordinate x = 0 in left to right addition chain. [OK] ECDH P521 test vectors 119 120 - point with coordinate x = 0 in left to right addition chain. ... ECDH P521 test vectors 120 121 - point with coordinate x = 0 in left to right addition chain. [OK] ECDH P521 test vectors 120 121 - point with coordinate x = 0 in left to right addition chain. ... ECDH P521 test vectors 121 122 - point with coordinate x = 0 in left to right addition chain. [OK] ECDH P521 test vectors 121 122 - point with coordinate x = 0 in left to right addition chain. ... ECDH P521 test vectors 122 123 - point with coordinate x = 0 in left to right addition chain. [OK] ECDH P521 test vectors 122 123 - point with coordinate x = 0 in left to right addition chain. ... ECDH P521 test vectors 123 124 - point with coordinate x = 0 in left to right addition chain. [OK] ECDH P521 test vectors 123 124 - point with coordinate x = 0 in left to right addition chain. ... ECDH P521 test vectors 124 125 - point with coordinate x = 0 in left to right addition chain. [OK] ECDH P521 test vectors 124 125 - point with coordinate x = 0 in left to right addition chain. ... ECDH P521 test vectors 125 126 - point with coordinate x = 0 in left to right addition chain. [OK] ECDH P521 test vectors 125 126 - point with coordinate x = 0 in left to right addition chain. ... ECDH P521 test vectors 126 127 - point with coordinate x = 0 in left to right addition chain. [OK] ECDH P521 test vectors 126 127 - point with coordinate x = 0 in left to right addition chain. ... ECDH P521 test vectors 127 128 - point with coordinate x = 0 in left to right addition chain. [OK] ECDH P521 test vectors 127 128 - point with coordinate x = 0 in left to right addition chain. ... ECDH P521 test vectors 128 129 - point with coordinate x = 0 in left to right addition chain. [OK] ECDH P521 test vectors 128 129 - point with coordinate x = 0 in left to right addition chain. ... ECDH P521 test vectors 129 130 - point with coordinate x = 0 in left to right addition chain. [OK] ECDH P521 test vectors 129 130 - point with coordinate x = 0 in left to right addition chain. ... ECDH P521 test vectors 130 131 - point with coordinate x = 0 in left to right addition chain. [OK] ECDH P521 test vectors 130 131 - point with coordinate x = 0 in left to right addition chain. ... ECDH P521 test vectors 131 132 - point with coordinate x = 0 in left to right addition chain. [OK] ECDH P521 test vectors 131 132 - point with coordinate x = 0 in left to right addition chain. ... ECDH P521 test vectors 132 133 - point with coordinate x = 0 in left to right addition chain. [OK] ECDH P521 test vectors 132 133 - point with coordinate x = 0 in left to right addition chain. ... ECDH P521 test vectors 133 134 - point with coordinate x = 0 in left to right addition chain. [OK] ECDH P521 test vectors 133 134 - point with coordinate x = 0 in left to right addition chain. ... ECDH P521 test vectors 134 135 - point with coordinate x = 0 in left to right addition chain. [OK] ECDH P521 test vectors 134 135 - point with coordinate x = 0 in left to right addition chain. ... ECDH P521 test vectors 135 136 - point with coordinate x = 0 in left to right addition chain. [OK] ECDH P521 test vectors 135 136 - point with coordinate x = 0 in left to right addition chain. ... ECDH P521 test vectors 136 137 - point with coordinate x = 0 in left to right addition chain. [OK] ECDH P521 test vectors 136 137 - point with coordinate x = 0 in left to right addition chain. ... ECDH P521 test vectors 137 138 - point with coordinate x = 0 in left to right addition chain. [OK] ECDH P521 test vectors 137 138 - point with coordinate x = 0 in left to right addition chain. ... ECDH P521 test vectors 138 139 - point with coordinate x = 0 in left to right addition chain. [OK] ECDH P521 test vectors 138 139 - point with coordinate x = 0 in left to right addition chain. ... ECDH P521 test vectors 139 140 - point with coordinate x = 0 in left to right addition chain. [OK] ECDH P521 test vectors 139 140 - point with coordinate x = 0 in left to right addition chain. ... ECDH P521 test vectors 140 141 - point with coordinate x = 0 in left to right addition chain. [OK] ECDH P521 test vectors 140 141 - point with coordinate x = 0 in left to right addition chain. ... ECDH P521 test vectors 141 142 - point with coordinate x = 0 in left to right addition chain. [OK] ECDH P521 test vectors 141 142 - point with coordinate x = 0 in left to right addition chain. ... ECDH P521 test vectors 142 143 - point with coordinate x = 0 in precomputation or right to left addition chain. [OK] ECDH P521 test vectors 142 143 - point with coordinate x = 0 in precomputation or right to left addition chain. ... ECDH P521 test vectors 143 144 - point with coordinate x = 0 in precomputation or right to left addition chain. [OK] ECDH P521 test vectors 143 144 - point with coordinate x = 0 in precomputation or right to left addition chain. ... ECDH P521 test vectors 144 145 - point with coordinate x = 0 in precomputation or right to left addition chain. [OK] ECDH P521 test vectors 144 145 - point with coordinate x = 0 in precomputation or right to left addition chain. ... ECDH P521 test vectors 145 146 - point with coordinate x = 0 in precomputation or right to left addition chain. [OK] ECDH P521 test vectors 145 146 - point with coordinate x = 0 in precomputation or right to left addition chain. ... ECDH P521 test vectors 146 147 - point with coordinate x = 0 in precomputation or right to left addition chain. [OK] ECDH P521 test vectors 146 147 - point with coordinate x = 0 in precomputation or right to left addition chain. ... ECDH P521 test vectors 147 148 - point with coordinate x = 0 in precomputation or right to left addition chain. [OK] ECDH P521 test vectors 147 148 - point with coordinate x = 0 in precomputation or right to left addition chain. ... ECDH P521 test vectors 148 149 - point with coordinate x = 0 in right to left addition chain. [OK] ECDH P521 test vectors 148 149 - point with coordinate x = 0 in right to left addition chain. ... ECDH P521 test vectors 149 150 - point with coordinate x = 0 in right to left addition chain. [OK] ECDH P521 test vectors 149 150 - point with coordinate x = 0 in right to left addition chain. ... ECDH P521 test vectors 150 151 - point with coordinate x = 0 in right to left addition chain. [OK] ECDH P521 test vectors 150 151 - point with coordinate x = 0 in right to left addition chain. ... ECDH P521 test vectors 151 152 - point with coordinate x = 0 in right to left addition chain. [OK] ECDH P521 test vectors 151 152 - point with coordinate x = 0 in right to left addition chain. ... ECDH P521 test vectors 152 153 - point with coordinate x = 0 in right to left addition chain. [OK] ECDH P521 test vectors 152 153 - point with coordinate x = 0 in right to left addition chain. ... ECDH P521 test vectors 153 154 - point with coordinate y = 1. [OK] ECDH P521 test vectors 153 154 - point with coordinate y = 1. ... ECDH P521 test vectors 154 155 - point with coordinate y = 1. [OK] ECDH P521 test vectors 154 155 - point with coordinate y = 1. ... ECDH P521 test vectors 155 156 - point with coordinate y = 1. [OK] ECDH P521 test vectors 155 156 - point with coordinate y = 1. ... ECDH P521 test vectors 156 157 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P521 test vectors 156 157 - point with coordinate y = 1 in left to right addition chain. ... ECDH P521 test vectors 157 158 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P521 test vectors 157 158 - point with coordinate y = 1 in left to right addition chain. ... ECDH P521 test vectors 158 159 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P521 test vectors 158 159 - point with coordinate y = 1 in left to right addition chain. ... ECDH P521 test vectors 159 160 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P521 test vectors 159 160 - point with coordinate y = 1 in left to right addition chain. ... ECDH P521 test vectors 160 161 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P521 test vectors 160 161 - point with coordinate y = 1 in left to right addition chain. ... ECDH P521 test vectors 161 162 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P521 test vectors 161 162 - point with coordinate y = 1 in left to right addition chain. ... ECDH P521 test vectors 162 163 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P521 test vectors 162 163 - point with coordinate y = 1 in left to right addition chain. ... ECDH P521 test vectors 163 164 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P521 test vectors 163 164 - point with coordinate y = 1 in left to right addition chain. ... ECDH P521 test vectors 164 165 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P521 test vectors 164 165 - point with coordinate y = 1 in left to right addition chain. ... ECDH P521 test vectors 165 166 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P521 test vectors 165 166 - point with coordinate y = 1 in left to right addition chain. ... ECDH P521 test vectors 166 167 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P521 test vectors 166 167 - point with coordinate y = 1 in left to right addition chain. ... ECDH P521 test vectors 167 168 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P521 test vectors 167 168 - point with coordinate y = 1 in left to right addition chain. ... ECDH P521 test vectors 168 169 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P521 test vectors 168 169 - point with coordinate y = 1 in left to right addition chain. ... ECDH P521 test vectors 169 170 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P521 test vectors 169 170 - point with coordinate y = 1 in left to right addition chain. ... ECDH P521 test vectors 170 171 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P521 test vectors 170 171 - point with coordinate y = 1 in left to right addition chain. ... ECDH P521 test vectors 171 172 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P521 test vectors 171 172 - point with coordinate y = 1 in left to right addition chain. ... ECDH P521 test vectors 172 173 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P521 test vectors 172 173 - point with coordinate y = 1 in left to right addition chain. ... ECDH P521 test vectors 173 174 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P521 test vectors 173 174 - point with coordinate y = 1 in left to right addition chain. ... ECDH P521 test vectors 174 175 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P521 test vectors 174 175 - point with coordinate y = 1 in left to right addition chain. ... ECDH P521 test vectors 175 176 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P521 test vectors 175 176 - point with coordinate y = 1 in left to right addition chain. ... ECDH P521 test vectors 176 177 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P521 test vectors 176 177 - point with coordinate y = 1 in left to right addition chain. ... ECDH P521 test vectors 177 178 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P521 test vectors 177 178 - point with coordinate y = 1 in left to right addition chain. ... ECDH P521 test vectors 178 179 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P521 test vectors 178 179 - point with coordinate y = 1 in left to right addition chain. ... ECDH P521 test vectors 179 180 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P521 test vectors 179 180 - point with coordinate y = 1 in left to right addition chain. ... ECDH P521 test vectors 180 181 - point with coordinate y = 1 in left to right addition chain. [OK] ECDH P521 test vectors 180 181 - point with coordinate y = 1 in left to right addition chain. ... ECDH P521 test vectors 181 182 - point with coordinate y = 1 in precomputation or right to left addition chain. [OK] ECDH P521 test vectors 181 182 - point with coordinate y = 1 in precomputation or right to left addition chain. ... ECDH P521 test vectors 182 183 - point with coordinate y = 1 in precomputation or right to left addition chain. [OK] ECDH P521 test vectors 182 183 - point with coordinate y = 1 in precomputation or right to left addition chain. ... ECDH P521 test vectors 183 184 - point with coordinate y = 1 in precomputation or right to left addition chain. [OK] ECDH P521 test vectors 183 184 - point with coordinate y = 1 in precomputation or right to left addition chain. ... ECDH P521 test vectors 184 185 - point with coordinate y = 1 in precomputation or right to left addition chain. [OK] ECDH P521 test vectors 184 185 - point with coordinate y = 1 in precomputation or right to left addition chain. ... ECDH P521 test vectors 185 186 - point with coordinate y = 1 in precomputation or right to left addition chain. [OK] ECDH P521 test vectors 185 186 - point with coordinate y = 1 in precomputation or right to left addition chain. ... ECDH P521 test vectors 186 187 - point with coordinate y = 1 in precomputation or right to left addition chain. [OK] ECDH P521 test vectors 186 187 - point with coordinate y = 1 in precomputation or right to left addition chain. ... ECDH P521 test vectors 187 188 - point with coordinate y = 1 in right to left addition chain. [OK] ECDH P521 test vectors 187 188 - point with coordinate y = 1 in right to left addition chain. ... ECDH P521 test vectors 188 189 - point with coordinate y = 1 in right to left addition chain. [OK] ECDH P521 test vectors 188 189 - point with coordinate y = 1 in right to left addition chain. ... ECDH P521 test vectors 189 190 - point with coordinate y = 1 in right to left addition chain. [OK] ECDH P521 test vectors 189 190 - point with coordinate y = 1 in right to left addition chain. ... ECDH P521 test vectors 190 191 - point with coordinate y = 1 in right to left addition chain. [OK] ECDH P521 test vectors 190 191 - point with coordinate y = 1 in right to left addition chain. ... ECDH P521 test vectors 191 192 - point with coordinate y = 1 in right to left addition chain. [OK] ECDH P521 test vectors 191 192 - point with coordinate y = 1 in right to left addition chain. ... ECDH P521 test vectors 192 193 - edge case private key. [OK] ECDH P521 test vectors 192 193 - edge case private key. ... ECDH P521 test vectors 193 194 - edge case private key. [OK] ECDH P521 test vectors 193 194 - edge case private key. ... ECDH P521 test vectors 194 195 - edge case private key. [OK] ECDH P521 test vectors 194 195 - edge case private key. ... ECDH P521 test vectors 195 196 - edge case private key. [OK] ECDH P521 test vectors 195 196 - edge case private key. ... ECDH P521 test vectors 196 197 - edge case private key. [OK] ECDH P521 test vectors 196 197 - edge case private key. ... ECDH P521 test vectors 197 198 - edge case private key. [OK] ECDH P521 test vectors 197 198 - edge case private key. ... ECDH P521 test vectors 198 199 - edge case private key. [OK] ECDH P521 test vectors 198 199 - edge case private key. ... ECDH P521 test vectors 199 200 - edge case private key. [OK] ECDH P521 test vectors 199 200 - edge case private key. ... ECDH P521 test vectors 200 201 - edge case private key. [OK] ECDH P521 test vectors 200 201 - edge case private key. ... ECDH P521 test vectors 201 202 - edge case private key. [OK] ECDH P521 test vectors 201 202 - edge case private key. ... ECDH P521 test vectors 202 203 - edge case private key. [OK] ECDH P521 test vectors 202 203 - edge case private key. ... ECDH P521 test vectors 203 204 - edge case private key. [OK] ECDH P521 test vectors 203 204 - edge case private key. ... ECDH P521 test vectors 204 205 - edge case private key. [OK] ECDH P521 test vectors 204 205 - edge case private key. ... ECDH P521 test vectors 205 206 - edge case private key. [OK] ECDH P521 test vectors 205 206 - edge case private key. ... ECDH P521 test vectors 206 207 - edge case private key. [OK] ECDH P521 test vectors 206 207 - edge case private key. ... ECDH P521 test vectors 207 208 - edge case private key. [OK] ECDH P521 test vectors 207 208 - edge case private key. ... ECDH P521 test vectors 208 209 - CVE-2017-10176: Issue with elliptic curve addition. [OK] ECDH P521 test vectors 208 209 - CVE-2017-10176: Issue with elliptic curve addition. ... ECDH P521 test vectors 209 210 - point is not on curve. [OK] ECDH P521 test vectors 209 210 - point is not on curve. ... ECDH P521 test vectors 210 211 - point is not on curve. [OK] ECDH P521 test vectors 210 211 - point is not on curve. ... ECDH P521 test vectors 211 212 - point is not on curve. [OK] ECDH P521 test vectors 211 212 - point is not on curve. ... ECDH P521 test vectors 212 213 - point is not on curve. [OK] ECDH P521 test vectors 212 213 - point is not on curve. ... ECDH P521 test vectors 213 214 - point is not on curve. [OK] ECDH P521 test vectors 213 214 - point is not on curve. ... ECDH P521 test vectors 214 215 - point is not on curve. [OK] ECDH P521 test vectors 214 215 - point is not on curve. ... ECDH P521 test vectors 215 216 - point is not on curve. [OK] ECDH P521 test vectors 215 216 - point is not on curve. ... ECDH P521 test vectors 216 217 - point is not on curve. [OK] ECDH P521 test vectors 216 217 - point is not on curve. ... ECDH P521 test vectors 217 218 - point is not on curve. [OK] ECDH P521 test vectors 217 218 - point is not on curve. ... ECDH P521 test vectors 218 219 - point is not on curve. [OK] ECDH P521 test vectors 218 219 - point is not on curve. ... ECDH P521 test vectors 219 220 - point is not on curve. [OK] ECDH P521 test vectors 219 220 - point is not on curve. ... ECDH P521 test vectors 220 221 - point is not on curve. [OK] ECDH P521 test vectors 220 221 - point is not on curve. ... ECDH P521 test vectors 221 222 - point is not on curve. [OK] ECDH P521 test vectors 221 222 - point is not on curve. ... ECDH P521 test vectors 222 223 - point is not on curve. [OK] ECDH P521 test vectors 222 223 - point is not on curve. ... ECDH P521 test vectors 223 224 - point is not on curve. [OK] ECDH P521 test vectors 223 224 - point is not on curve. ... ECDH P521 test vectors 224 225 - point is not on curve. [OK] ECDH P521 test vectors 224 225 - point is not on curve. ... ECDH P521 test vectors 225 226 - . [OK] ECDH P521 test vectors 225 226 - . ... ECDH P521 test vectors 226 227 - public point not on curve. [OK] ECDH P521 test vectors 226 227 - public point not on curve. ... ECDH P521 test vectors 227 228 - public point = (0,0). [OK] ECDH P521 test vectors 227 228 - public point = (0,0). ... ECDH P521 test vectors 228 241 - using secp224r1. [OK] ECDH P521 test vectors 228 241 - using secp224r1. ... ECDH P521 test vectors 229 242 - using secp256r1. [OK] ECDH P521 test vectors 229 242 - using secp256r1. ... ECDH P521 test vectors 230 243 - using secp256k1. [OK] ECDH P521 test vectors 230 243 - using secp256k1. ... ECDH P521 test vectors 231 246 - Public key uses wrong curve: secp224r1. [OK] ECDH P521 test vectors 231 246 - Public key uses wrong curve: secp224r1. ... ECDH P521 test vectors 232 247 - Public key uses wrong curve: secp256r1. [OK] ECDH P521 test vectors 232 247 - Public key uses wrong curve: secp256r1. ... ECDH P521 test vectors 233 248 - Public key uses wrong curve: secp384r1. [OK] ECDH P521 test vectors 233 248 - Public key uses wrong curve: secp384r1. ... ECDH P521 test vectors 234 249 - Public key uses wrong curve: secp256k1. [OK] ECDH P521 test vectors 234 249 - Public key uses wrong curve: secp256k1. ... ECDH P521 test vectors 235 250 - Public key uses wrong curve: secp224k1. [OK] ECDH P521 test vectors 235 250 - Public key uses wrong curve: secp224k1. ... ECDH P521 test vectors 236 251 - Public key uses wrong curve: brainpoolP224r1. [OK] ECDH P521 test vectors 236 251 - Public key uses wrong curve: brainpoolP224r1. ... ECDH P521 test vectors 237 252 - Public key uses wrong curve: brainpoolP256r1. [OK] ECDH P521 test vectors 237 252 - Public key uses wrong curve: brainpoolP256r1. ... ECDH P521 test vectors 238 253 - Public key uses wrong curve: brainpoolP320r1. [OK] ECDH P521 test vectors 238 253 - Public key uses wrong curve: brainpoolP320r1. ... ECDH P521 test vectors 239 254 - Public key uses wrong curve: brainpoolP384r1. [OK] ECDH P521 test vectors 239 254 - Public key uses wrong curve: brainpoolP384r1. ... ECDH P521 test vectors 240 255 - Public key uses wrong curve: brainpoolP512r1. [OK] ECDH P521 test vectors 240 255 - Public key uses wrong curve: brainpoolP512r1. ... ECDH P521 test vectors 241 256 - Public key uses wrong curve: brainpoolP224t1. [OK] ECDH P521 test vectors 241 256 - Public key uses wrong curve: brainpoolP224t1. ... ECDH P521 test vectors 242 257 - Public key uses wrong curve: brainpoolP256t1. [OK] ECDH P521 test vectors 242 257 - Public key uses wrong curve: brainpoolP256t1. ... ECDH P521 test vectors 243 258 - Public key uses wrong curve: brainpoolP320t1. [OK] ECDH P521 test vectors 243 258 - Public key uses wrong curve: brainpoolP320t1. ... ECDH P521 test vectors 244 259 - Public key uses wrong curve: brainpoolP384t1. [OK] ECDH P521 test vectors 244 259 - Public key uses wrong curve: brainpoolP384t1. ... ECDH P521 test vectors 245 260 - Public key uses wrong curve: brainpoolP512t1. [OK] ECDH P521 test vectors 245 260 - Public key uses wrong curve: brainpoolP512t1. ... ECDH P521 test vectors 246 261 - invalid public key. [OK] ECDH P521 test vectors 246 261 - invalid public key. ... ECDH P521 test vectors 247 262 - public key is a low order point on twist. [OK] ECDH P521 test vectors 247 262 - public key is a low order point on twist. ... ECDH P521 test vectors 248 263 - public key is a low order point on twist. [OK] ECDH P521 test vectors 248 263 - public key is a low order point on twist. ... ECDH P521 test vectors 249 264 - public key is a low order point on twist. [OK] ECDH P521 test vectors 249 264 - public key is a low order point on twist. ... ECDH P521 test vectors 250 265 - public key is a low order point on twist. [OK] ECDH P521 test vectors 250 265 - public key is a low order point on twist. ... ECDH P521 test vectors 251 266 - public key is a low order point on twist. [OK] ECDH P521 test vectors 251 266 - public key is a low order point on twist. ... ECDH P521 test vectors 252 267 - public key is a low order point on twist. [OK] ECDH P521 test vectors 252 267 - public key is a low order point on twist. ... ECDH P521 test vectors 253 268 - public key is a low order point on twist. [OK] ECDH P521 test vectors 253 268 - public key is a low order point on twist. ... ECDH P521 test vectors 254 269 - public key is a low order point on twist. [OK] ECDH P521 test vectors 254 269 - public key is a low order point on twist. ... ECDH P521 test vectors 255 270 - public key is a low order point on twist. [OK] ECDH P521 test vectors 255 270 - public key is a low order point on twist. ... ECDH P521 test vectors 256 271 - public key is a low order point on twist. [OK] ECDH P521 test vectors 256 271 - public key is a low order point on twist. ... ECDSA P521 test vectors (SHA512) 0 1 - signature malleability. [OK] ECDSA P521 test vectors (SHA512) 0 1 - signature malleability. ... ECDSA P521 test vectors (SHA512) 1 2 - valid. [OK] ECDSA P521 test vectors (SHA512) 1 2 - valid. ... ECDSA P521 test vectors (SHA512) 2 3 - length of sequence contains leading 0. [OK] ECDSA P521 test vectors (SHA512) 2 3 - length of sequence contains leading 0. ... ECDSA P521 test vectors (SHA512) 3 4 - wrong length of sequence. [OK] ECDSA P521 test vectors (SHA512) 3 4 - wrong length of sequence. ... ECDSA P521 test vectors (SHA512) 4 5 - wrong length of sequence. [OK] ECDSA P521 test vectors (SHA512) 4 5 - wrong length of sequence. ... ECDSA P521 test vectors (SHA512) 5 6 - uint32 overflow in length of sequence. [OK] ECDSA P521 test vectors (SHA512) 5 6 - uint32 overflow in length of sequence. ... ECDSA P521 test vectors (SHA512) 6 7 - uint64 overflow in length of sequence. [OK] ECDSA P521 test vectors (SHA512) 6 7 - uint64 overflow in length of sequence. ... ECDSA P521 test vectors (SHA512) 7 8 - length of sequence = 2**31 - 1. [OK] ECDSA P521 test vectors (SHA512) 7 8 - length of sequence = 2**31 - 1. ... ECDSA P521 test vectors (SHA512) 8 9 - length of sequence = 2**32 - 1. [OK] ECDSA P521 test vectors (SHA512) 8 9 - length of sequence = 2**32 - 1. ... ECDSA P521 test vectors (SHA512) 9 10 - length of sequence = 2**40 - 1. [OK] ECDSA P521 test vectors (SHA512) 9 10 - length of sequence = 2**40 - 1. ... ECDSA P521 test vectors (SHA512) 10 11 - length of sequence = 2**64 - 1. [OK] ECDSA P521 test vectors (SHA512) 10 11 - length of sequence = 2**64 - 1. ... ECDSA P521 test vectors (SHA512) 11 12 - incorrect length of sequence. [OK] ECDSA P521 test vectors (SHA512) 11 12 - incorrect length of sequence. ... ECDSA P521 test vectors (SHA512) 12 13 - indefinite length without termination. [OK] ECDSA P521 test vectors (SHA512) 12 13 - indefinite length without termination. ... ECDSA P521 test vectors (SHA512) 13 14 - indefinite length without termination. [OK] ECDSA P521 test vectors (SHA512) 13 14 - indefinite length without termination. ... ECDSA P521 test vectors (SHA512) 14 15 - indefinite length without termination. [OK] ECDSA P521 test vectors (SHA512) 14 15 - indefinite length without termination. ... ECDSA P521 test vectors (SHA512) 15 16 - removing sequence. [OK] ECDSA P521 test vectors (SHA512) 15 16 - removing sequence. ... ECDSA P521 test vectors (SHA512) 16 17 - lonely sequence tag. [OK] ECDSA P521 test vectors (SHA512) 16 17 - lonely sequence tag. ... ECDSA P521 test vectors (SHA512) 17 18 - appending 0's to sequence. [OK] ECDSA P521 test vectors (SHA512) 17 18 - appending 0's to sequence. ... ECDSA P521 test vectors (SHA512) 18 19 - prepending 0's to sequence. [OK] ECDSA P521 test vectors (SHA512) 18 19 - prepending 0's to sequence. ... ECDSA P521 test vectors (SHA512) 19 20 - appending unused 0's to sequence. [OK] ECDSA P521 test vectors (SHA512) 19 20 - appending unused 0's to sequence. ... ECDSA P521 test vectors (SHA512) 20 21 - appending null value to sequence. [OK] ECDSA P521 test vectors (SHA512) 20 21 - appending null value to sequence. ... ECDSA P521 test vectors (SHA512) 21 22 - including garbage. [OK] ECDSA P521 test vectors (SHA512) 21 22 - including garbage. ... ECDSA P521 test vectors (SHA512) 22 23 - including garbage. [OK] ECDSA P521 test vectors (SHA512) 22 23 - including garbage. ... ECDSA P521 test vectors (SHA512) 23 24 - including garbage. [OK] ECDSA P521 test vectors (SHA512) 23 24 - including garbage. ... ECDSA P521 test vectors (SHA512) 24 25 - including garbage. [OK] ECDSA P521 test vectors (SHA512) 24 25 - including garbage. ... ECDSA P521 test vectors (SHA512) 25 26 - including garbage. [OK] ECDSA P521 test vectors (SHA512) 25 26 - including garbage. ... ECDSA P521 test vectors (SHA512) 26 27 - including garbage. [OK] ECDSA P521 test vectors (SHA512) 26 27 - including garbage. ... ECDSA P521 test vectors (SHA512) 27 28 - including garbage. [OK] ECDSA P521 test vectors (SHA512) 27 28 - including garbage. ... ECDSA P521 test vectors (SHA512) 28 29 - including garbage. [OK] ECDSA P521 test vectors (SHA512) 28 29 - including garbage. ... ECDSA P521 test vectors (SHA512) 29 30 - including garbage. [OK] ECDSA P521 test vectors (SHA512) 29 30 - including garbage. ... ECDSA P521 test vectors (SHA512) 30 31 - including undefined tags. [OK] ECDSA P521 test vectors (SHA512) 30 31 - including undefined tags. ... ECDSA P521 test vectors (SHA512) 31 32 - including undefined tags. [OK] ECDSA P521 test vectors (SHA512) 31 32 - including undefined tags. ... ECDSA P521 test vectors (SHA512) 32 33 - including undefined tags. [OK] ECDSA P521 test vectors (SHA512) 32 33 - including undefined tags. ... ECDSA P521 test vectors (SHA512) 33 34 - including undefined tags. [OK] ECDSA P521 test vectors (SHA512) 33 34 - including undefined tags. ... ECDSA P521 test vectors (SHA512) 34 35 - including undefined tags. [OK] ECDSA P521 test vectors (SHA512) 34 35 - including undefined tags. ... ECDSA P521 test vectors (SHA512) 35 36 - including undefined tags. [OK] ECDSA P521 test vectors (SHA512) 35 36 - including undefined tags. ... ECDSA P521 test vectors (SHA512) 36 37 - truncated length of sequence. [OK] ECDSA P521 test vectors (SHA512) 36 37 - truncated length of sequence. ... ECDSA P521 test vectors (SHA512) 37 38 - using composition with indefinite length. [OK] ECDSA P521 test vectors (SHA512) 37 38 - using composition with indefinite length. ... ECDSA P521 test vectors (SHA512) 38 39 - using composition with indefinite length. [OK] ECDSA P521 test vectors (SHA512) 38 39 - using composition with indefinite length. ... ECDSA P521 test vectors (SHA512) 39 40 - using composition with indefinite length. [OK] ECDSA P521 test vectors (SHA512) 39 40 - using composition with indefinite length. ... ECDSA P521 test vectors (SHA512) 40 41 - using composition with wrong tag. [OK] ECDSA P521 test vectors (SHA512) 40 41 - using composition with wrong tag. ... ECDSA P521 test vectors (SHA512) 41 42 - using composition with wrong tag. [OK] ECDSA P521 test vectors (SHA512) 41 42 - using composition with wrong tag. ... ECDSA P521 test vectors (SHA512) 42 43 - using composition with wrong tag. [OK] ECDSA P521 test vectors (SHA512) 42 43 - using composition with wrong tag. ... ECDSA P521 test vectors (SHA512) 43 44 - Replacing sequence with NULL. [OK] ECDSA P521 test vectors (SHA512) 43 44 - Replacing sequence with NULL. ... ECDSA P521 test vectors (SHA512) 44 45 - changing tag value of sequence. [OK] ECDSA P521 test vectors (SHA512) 44 45 - changing tag value of sequence. ... ECDSA P521 test vectors (SHA512) 45 46 - changing tag value of sequence. [OK] ECDSA P521 test vectors (SHA512) 45 46 - changing tag value of sequence. ... ECDSA P521 test vectors (SHA512) 46 47 - changing tag value of sequence. [OK] ECDSA P521 test vectors (SHA512) 46 47 - changing tag value of sequence. ... ECDSA P521 test vectors (SHA512) 47 48 - changing tag value of sequence. [OK] ECDSA P521 test vectors (SHA512) 47 48 - changing tag value of sequence. ... ECDSA P521 test vectors (SHA512) 48 49 - changing tag value of sequence. [OK] ECDSA P521 test vectors (SHA512) 48 49 - changing tag value of sequence. ... ECDSA P521 test vectors (SHA512) 49 50 - dropping value of sequence. [OK] ECDSA P521 test vectors (SHA512) 49 50 - dropping value of sequence. ... ECDSA P521 test vectors (SHA512) 50 51 - using composition for sequence. [OK] ECDSA P521 test vectors (SHA512) 50 51 - using composition for sequence. ... ECDSA P521 test vectors (SHA512) 51 52 - truncated sequence. [OK] ECDSA P521 test vectors (SHA512) 51 52 - truncated sequence. ... ECDSA P521 test vectors (SHA512) 52 53 - truncated sequence. [OK] ECDSA P521 test vectors (SHA512) 52 53 - truncated sequence. ... ECDSA P521 test vectors (SHA512) 53 54 - indefinite length. [OK] ECDSA P521 test vectors (SHA512) 53 54 - indefinite length. ... ECDSA P521 test vectors (SHA512) 54 55 - indefinite length with truncated delimiter. [OK] ECDSA P521 test vectors (SHA512) 54 55 - indefinite length with truncated delimiter. ... ECDSA P521 test vectors (SHA512) 55 56 - indefinite length with additional element. [OK] ECDSA P521 test vectors (SHA512) 55 56 - indefinite length with additional element. ... ECDSA P521 test vectors (SHA512) 56 57 - indefinite length with truncated element. [OK] ECDSA P521 test vectors (SHA512) 56 57 - indefinite length with truncated element. ... ECDSA P521 test vectors (SHA512) 57 58 - indefinite length with garbage. [OK] ECDSA P521 test vectors (SHA512) 57 58 - indefinite length with garbage. ... ECDSA P521 test vectors (SHA512) 58 59 - indefinite length with nonempty EOC. [OK] ECDSA P521 test vectors (SHA512) 58 59 - indefinite length with nonempty EOC. ... ECDSA P521 test vectors (SHA512) 59 60 - prepend empty sequence. [OK] ECDSA P521 test vectors (SHA512) 59 60 - prepend empty sequence. ... ECDSA P521 test vectors (SHA512) 60 61 - append empty sequence. [OK] ECDSA P521 test vectors (SHA512) 60 61 - append empty sequence. ... ECDSA P521 test vectors (SHA512) 61 62 - append garbage with high tag number. [OK] ECDSA P521 test vectors (SHA512) 61 62 - append garbage with high tag number. ... ECDSA P521 test vectors (SHA512) 62 63 - sequence of sequence. [OK] ECDSA P521 test vectors (SHA512) 62 63 - sequence of sequence. ... ECDSA P521 test vectors (SHA512) 63 64 - truncated sequence: removed last 1 elements. [OK] ECDSA P521 test vectors (SHA512) 63 64 - truncated sequence: removed last 1 elements. ... ECDSA P521 test vectors (SHA512) 64 65 - repeating element in sequence. [OK] ECDSA P521 test vectors (SHA512) 64 65 - repeating element in sequence. ... ECDSA P521 test vectors (SHA512) 65 66 - long form encoding of length of integer. [OK] ECDSA P521 test vectors (SHA512) 65 66 - long form encoding of length of integer. ... ECDSA P521 test vectors (SHA512) 66 67 - long form encoding of length of integer. [OK] ECDSA P521 test vectors (SHA512) 66 67 - long form encoding of length of integer. ... ECDSA P521 test vectors (SHA512) 67 68 - length of integer contains leading 0. [OK] ECDSA P521 test vectors (SHA512) 67 68 - length of integer contains leading 0. ... ECDSA P521 test vectors (SHA512) 68 69 - length of integer contains leading 0. [OK] ECDSA P521 test vectors (SHA512) 68 69 - length of integer contains leading 0. ... ECDSA P521 test vectors (SHA512) 69 70 - wrong length of integer. [OK] ECDSA P521 test vectors (SHA512) 69 70 - wrong length of integer. ... ECDSA P521 test vectors (SHA512) 70 71 - wrong length of integer. [OK] ECDSA P521 test vectors (SHA512) 70 71 - wrong length of integer. ... ECDSA P521 test vectors (SHA512) 71 72 - wrong length of integer. [OK] ECDSA P521 test vectors (SHA512) 71 72 - wrong length of integer. ... ECDSA P521 test vectors (SHA512) 72 73 - wrong length of integer. [OK] ECDSA P521 test vectors (SHA512) 72 73 - wrong length of integer. ... ECDSA P521 test vectors (SHA512) 73 74 - uint32 overflow in length of integer. [OK] ECDSA P521 test vectors (SHA512) 73 74 - uint32 overflow in length of integer. ... ECDSA P521 test vectors (SHA512) 74 75 - uint32 overflow in length of integer. [OK] ECDSA P521 test vectors (SHA512) 74 75 - uint32 overflow in length of integer. ... ECDSA P521 test vectors (SHA512) 75 76 - uint64 overflow in length of integer. [OK] ECDSA P521 test vectors (SHA512) 75 76 - uint64 overflow in length of integer. ... ECDSA P521 test vectors (SHA512) 76 77 - uint64 overflow in length of integer. [OK] ECDSA P521 test vectors (SHA512) 76 77 - uint64 overflow in length of integer. ... ECDSA P521 test vectors (SHA512) 77 78 - length of integer = 2**31 - 1. [OK] ECDSA P521 test vectors (SHA512) 77 78 - length of integer = 2**31 - 1. ... ECDSA P521 test vectors (SHA512) 78 79 - length of integer = 2**31 - 1. [OK] ECDSA P521 test vectors (SHA512) 78 79 - length of integer = 2**31 - 1. ... ECDSA P521 test vectors (SHA512) 79 80 - length of integer = 2**32 - 1. [OK] ECDSA P521 test vectors (SHA512) 79 80 - length of integer = 2**32 - 1. ... ECDSA P521 test vectors (SHA512) 80 81 - length of integer = 2**32 - 1. [OK] ECDSA P521 test vectors (SHA512) 80 81 - length of integer = 2**32 - 1. ... ECDSA P521 test vectors (SHA512) 81 82 - length of integer = 2**40 - 1. [OK] ECDSA P521 test vectors (SHA512) 81 82 - length of integer = 2**40 - 1. ... ECDSA P521 test vectors (SHA512) 82 83 - length of integer = 2**40 - 1. [OK] ECDSA P521 test vectors (SHA512) 82 83 - length of integer = 2**40 - 1. ... ECDSA P521 test vectors (SHA512) 83 84 - length of integer = 2**64 - 1. [OK] ECDSA P521 test vectors (SHA512) 83 84 - length of integer = 2**64 - 1. ... ECDSA P521 test vectors (SHA512) 84 85 - length of integer = 2**64 - 1. [OK] ECDSA P521 test vectors (SHA512) 84 85 - length of integer = 2**64 - 1. ... ECDSA P521 test vectors (SHA512) 85 86 - incorrect length of integer. [OK] ECDSA P521 test vectors (SHA512) 85 86 - incorrect length of integer. ... ECDSA P521 test vectors (SHA512) 86 87 - incorrect length of integer. [OK] ECDSA P521 test vectors (SHA512) 86 87 - incorrect length of integer. ... ECDSA P521 test vectors (SHA512) 87 88 - removing integer. [OK] ECDSA P521 test vectors (SHA512) 87 88 - removing integer. ... ECDSA P521 test vectors (SHA512) 88 89 - lonely integer tag. [OK] ECDSA P521 test vectors (SHA512) 88 89 - lonely integer tag. ... ECDSA P521 test vectors (SHA512) 89 90 - lonely integer tag. [OK] ECDSA P521 test vectors (SHA512) 89 90 - lonely integer tag. ... ECDSA P521 test vectors (SHA512) 90 91 - appending 0's to integer. [OK] ECDSA P521 test vectors (SHA512) 90 91 - appending 0's to integer. ... ECDSA P521 test vectors (SHA512) 91 92 - appending 0's to integer. [OK] ECDSA P521 test vectors (SHA512) 91 92 - appending 0's to integer. ... ECDSA P521 test vectors (SHA512) 92 93 - prepending 0's to integer. [OK] ECDSA P521 test vectors (SHA512) 92 93 - prepending 0's to integer. ... ECDSA P521 test vectors (SHA512) 93 94 - prepending 0's to integer. [OK] ECDSA P521 test vectors (SHA512) 93 94 - prepending 0's to integer. ... ECDSA P521 test vectors (SHA512) 94 95 - appending unused 0's to integer. [OK] ECDSA P521 test vectors (SHA512) 94 95 - appending unused 0's to integer. ... ECDSA P521 test vectors (SHA512) 95 96 - appending null value to integer. [OK] ECDSA P521 test vectors (SHA512) 95 96 - appending null value to integer. ... ECDSA P521 test vectors (SHA512) 96 97 - appending null value to integer. [OK] ECDSA P521 test vectors (SHA512) 96 97 - appending null value to integer. ... ECDSA P521 test vectors (SHA512) 97 98 - truncated length of integer. [OK] ECDSA P521 test vectors (SHA512) 97 98 - truncated length of integer. ... ECDSA P521 test vectors (SHA512) 98 99 - truncated length of integer. [OK] ECDSA P521 test vectors (SHA512) 98 99 - truncated length of integer. ... ECDSA P521 test vectors (SHA512) 99 100 - Replacing integer with NULL. [OK] ECDSA P521 test vectors (SHA512) 99 100 - Replacing integer with NULL. ... ECDSA P521 test vectors (SHA512) 100 101 - Replacing integer with NULL. [OK] ECDSA P521 test vectors (SHA512) 100 101 - Replacing integer with NULL. ... ECDSA P521 test vectors (SHA512) 101 102 - changing tag value of integer. [OK] ECDSA P521 test vectors (SHA512) 101 102 - changing tag value of integer. ... ECDSA P521 test vectors (SHA512) 102 103 - changing tag value of integer. [OK] ECDSA P521 test vectors (SHA512) 102 103 - changing tag value of integer. ... ECDSA P521 test vectors (SHA512) 103 104 - changing tag value of integer. [OK] ECDSA P521 test vectors (SHA512) 103 104 - changing tag value of integer. ... ECDSA P521 test vectors (SHA512) 104 105 - changing tag value of integer. [OK] ECDSA P521 test vectors (SHA512) 104 105 - changing tag value of integer. ... ECDSA P521 test vectors (SHA512) 105 106 - changing tag value of integer. [OK] ECDSA P521 test vectors (SHA512) 105 106 - changing tag value of integer. ... ECDSA P521 test vectors (SHA512) 106 107 - changing tag value of integer. [OK] ECDSA P521 test vectors (SHA512) 106 107 - changing tag value of integer. ... ECDSA P521 test vectors (SHA512) 107 108 - changing tag value of integer. [OK] ECDSA P521 test vectors (SHA512) 107 108 - changing tag value of integer. ... ECDSA P521 test vectors (SHA512) 108 109 - changing tag value of integer. [OK] ECDSA P521 test vectors (SHA512) 108 109 - changing tag value of integer. ... ECDSA P521 test vectors (SHA512) 109 110 - changing tag value of integer. [OK] ECDSA P521 test vectors (SHA512) 109 110 - changing tag value of integer. ... ECDSA P521 test vectors (SHA512) 110 111 - changing tag value of integer. [OK] ECDSA P521 test vectors (SHA512) 110 111 - changing tag value of integer. ... ECDSA P521 test vectors (SHA512) 111 112 - dropping value of integer. [OK] ECDSA P521 test vectors (SHA512) 111 112 - dropping value of integer. ... ECDSA P521 test vectors (SHA512) 112 113 - dropping value of integer. [OK] ECDSA P521 test vectors (SHA512) 112 113 - dropping value of integer. ... ECDSA P521 test vectors (SHA512) 113 114 - using composition for integer. [OK] ECDSA P521 test vectors (SHA512) 113 114 - using composition for integer. ... ECDSA P521 test vectors (SHA512) 114 115 - using composition for integer. [OK] ECDSA P521 test vectors (SHA512) 114 115 - using composition for integer. ... ECDSA P521 test vectors (SHA512) 115 116 - modify first byte of integer. [OK] ECDSA P521 test vectors (SHA512) 115 116 - modify first byte of integer. ... ECDSA P521 test vectors (SHA512) 116 117 - modify first byte of integer. [OK] ECDSA P521 test vectors (SHA512) 116 117 - modify first byte of integer. ... ECDSA P521 test vectors (SHA512) 117 118 - modify last byte of integer. [OK] ECDSA P521 test vectors (SHA512) 117 118 - modify last byte of integer. ... ECDSA P521 test vectors (SHA512) 118 119 - modify last byte of integer. [OK] ECDSA P521 test vectors (SHA512) 118 119 - modify last byte of integer. ... ECDSA P521 test vectors (SHA512) 119 120 - truncated integer. [OK] ECDSA P521 test vectors (SHA512) 119 120 - truncated integer. ... ECDSA P521 test vectors (SHA512) 120 121 - truncated integer. [OK] ECDSA P521 test vectors (SHA512) 120 121 - truncated integer. ... ECDSA P521 test vectors (SHA512) 121 122 - truncated integer. [OK] ECDSA P521 test vectors (SHA512) 121 122 - truncated integer. ... ECDSA P521 test vectors (SHA512) 122 123 - truncated integer. [OK] ECDSA P521 test vectors (SHA512) 122 123 - truncated integer. ... ECDSA P521 test vectors (SHA512) 123 124 - leading ff in integer. [OK] ECDSA P521 test vectors (SHA512) 123 124 - leading ff in integer. ... ECDSA P521 test vectors (SHA512) 124 125 - leading ff in integer. [OK] ECDSA P521 test vectors (SHA512) 124 125 - leading ff in integer. ... ECDSA P521 test vectors (SHA512) 125 126 - replaced integer by infinity. [OK] ECDSA P521 test vectors (SHA512) 125 126 - replaced integer by infinity. ... ECDSA P521 test vectors (SHA512) 126 127 - replaced integer by infinity. [OK] ECDSA P521 test vectors (SHA512) 126 127 - replaced integer by infinity. ... ECDSA P521 test vectors (SHA512) 127 128 - replacing integer with zero. [OK] ECDSA P521 test vectors (SHA512) 127 128 - replacing integer with zero. ... ECDSA P521 test vectors (SHA512) 128 129 - replacing integer with zero. [OK] ECDSA P521 test vectors (SHA512) 128 129 - replacing integer with zero. ... ECDSA P521 test vectors (SHA512) 129 130 - Modified r or s, e.g. by adding or subtracting the order of the group. [OK] ECDSA P521 test vectors (SHA512) 129 130 - Modified r or s, e.g. by adding or subtracting the order of the group. ... ECDSA P521 test vectors (SHA512) 130 131 - Modified r or s, e.g. by adding or subtracting the order of the group. [OK] ECDSA P521 test vectors (SHA512) 130 131 - Modified r or s, e.g. by adding or subtracting the order of the group. ... ECDSA P521 test vectors (SHA512) 131 132 - Modified r or s, e.g. by adding or subtracting the order of the group. [OK] ECDSA P521 test vectors (SHA512) 131 132 - Modified r or s, e.g. by adding or subtracting the order of the group. ... ECDSA P521 test vectors (SHA512) 132 133 - Modified r or s, e.g. by adding or subtracting the order of the group. [OK] ECDSA P521 test vectors (SHA512) 132 133 - Modified r or s, e.g. by adding or subtracting the order of the group. ... ECDSA P521 test vectors (SHA512) 133 134 - Modified r or s, e.g. by adding or subtracting the order of the group. [OK] ECDSA P521 test vectors (SHA512) 133 134 - Modified r or s, e.g. by adding or subtracting the order of the group. ... ECDSA P521 test vectors (SHA512) 134 135 - Modified r or s, e.g. by adding or subtracting the order of the group. [OK] ECDSA P521 test vectors (SHA512) 134 135 - Modified r or s, e.g. by adding or subtracting the order of the group. ... ECDSA P521 test vectors (SHA512) 135 136 - Modified r or s, e.g. by adding or subtracting the order of the group. [OK] ECDSA P521 test vectors (SHA512) 135 136 - Modified r or s, e.g. by adding or subtracting the order of the group. ... ECDSA P521 test vectors (SHA512) 136 137 - Modified r or s, e.g. by adding or subtracting the order of the group. [OK] ECDSA P521 test vectors (SHA512) 136 137 - Modified r or s, e.g. by adding or subtracting the order of the group. ... ECDSA P521 test vectors (SHA512) 137 138 - Modified r or s, e.g. by adding or subtracting the order of the group. [OK] ECDSA P521 test vectors (SHA512) 137 138 - Modified r or s, e.g. by adding or subtracting the order of the group. ... ECDSA P521 test vectors (SHA512) 138 139 - Modified r or s, e.g. by adding or subtracting the order of the group. [OK] ECDSA P521 test vectors (SHA512) 138 139 - Modified r or s, e.g. by adding or subtracting the order of the group. ... ECDSA P521 test vectors (SHA512) 139 140 - Modified r or s, e.g. by adding or subtracting the order of the group. [OK] ECDSA P521 test vectors (SHA512) 139 140 - Modified r or s, e.g. by adding or subtracting the order of the group. ... ECDSA P521 test vectors (SHA512) 140 141 - Modified r or s, e.g. by adding or subtracting the order of the group. [OK] ECDSA P521 test vectors (SHA512) 140 141 - Modified r or s, e.g. by adding or subtracting the order of the group. ... ECDSA P521 test vectors (SHA512) 141 142 - Modified r or s, e.g. by adding or subtracting the order of the group. [OK] ECDSA P521 test vectors (SHA512) 141 142 - Modified r or s, e.g. by adding or subtracting the order of the group. ... ECDSA P521 test vectors (SHA512) 142 143 - Modified r or s, e.g. by adding or subtracting the order of the group. [OK] ECDSA P521 test vectors (SHA512) 142 143 - Modified r or s, e.g. by adding or subtracting the order of the group. ... ECDSA P521 test vectors (SHA512) 143 144 - Modified r or s, e.g. by adding or subtracting the order of the group. [OK] ECDSA P521 test vectors (SHA512) 143 144 - Modified r or s, e.g. by adding or subtracting the order of the group. ... ECDSA P521 test vectors (SHA512) 144 145 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 144 145 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 145 146 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 145 146 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 146 147 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 146 147 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 147 148 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 147 148 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 148 149 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 148 149 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 149 150 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 149 150 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 150 151 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 150 151 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 151 152 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 151 152 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 152 153 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 152 153 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 153 154 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 153 154 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 154 155 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 154 155 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 155 156 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 155 156 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 156 157 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 156 157 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 157 158 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 157 158 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 158 159 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 158 159 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 159 160 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 159 160 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 160 161 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 160 161 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 161 162 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 161 162 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 162 163 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 162 163 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 163 164 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 163 164 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 164 165 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 164 165 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 165 166 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 165 166 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 166 167 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 166 167 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 167 168 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 167 168 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 168 169 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 168 169 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 169 170 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 169 170 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 170 171 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 170 171 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 171 172 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 171 172 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 172 173 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 172 173 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 173 174 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 173 174 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 174 175 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 174 175 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 175 176 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 175 176 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 176 177 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 176 177 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 177 178 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 177 178 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 178 179 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 178 179 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 179 180 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 179 180 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 180 181 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 180 181 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 181 182 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 181 182 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 182 183 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 182 183 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 183 184 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 183 184 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 184 185 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 184 185 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 185 186 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 185 186 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 186 187 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 186 187 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 187 188 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 187 188 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 188 189 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 188 189 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 189 190 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 189 190 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 190 191 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 190 191 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 191 192 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 191 192 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 192 193 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 192 193 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 193 194 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 193 194 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 194 195 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 194 195 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 195 196 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 195 196 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 196 197 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 196 197 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 197 198 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 197 198 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 198 199 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 198 199 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 199 200 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 199 200 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 200 201 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 200 201 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 201 202 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 201 202 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 202 203 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 202 203 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 203 204 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 203 204 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 204 205 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 204 205 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 205 206 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 205 206 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 206 207 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 206 207 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 207 208 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 207 208 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 208 209 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 208 209 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 209 210 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 209 210 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 210 211 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 210 211 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 211 212 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 211 212 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 212 213 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 212 213 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 213 214 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 213 214 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 214 215 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 214 215 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 215 216 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 215 216 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 216 217 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 216 217 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 217 218 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 217 218 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 218 219 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 218 219 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 219 220 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 219 220 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 220 221 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 220 221 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 221 222 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 221 222 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 222 223 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 222 223 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 223 224 - Signature with special case values for r and s. [OK] ECDSA P521 test vectors (SHA512) 223 224 - Signature with special case values for r and s. ... ECDSA P521 test vectors (SHA512) 224 225 - Signature encoding contains wrong types. [OK] ECDSA P521 test vectors (SHA512) 224 225 - Signature encoding contains wrong types. ... ECDSA P521 test vectors (SHA512) 225 226 - Signature encoding contains wrong types. [OK] ECDSA P521 test vectors (SHA512) 225 226 - Signature encoding contains wrong types. ... ECDSA P521 test vectors (SHA512) 226 227 - Signature encoding contains wrong types. [OK] ECDSA P521 test vectors (SHA512) 226 227 - Signature encoding contains wrong types. ... ECDSA P521 test vectors (SHA512) 227 228 - Signature encoding contains wrong types. [OK] ECDSA P521 test vectors (SHA512) 227 228 - Signature encoding contains wrong types. ... ECDSA P521 test vectors (SHA512) 228 229 - Signature encoding contains wrong types. [OK] ECDSA P521 test vectors (SHA512) 228 229 - Signature encoding contains wrong types. ... ECDSA P521 test vectors (SHA512) 229 230 - Signature encoding contains wrong types. [OK] ECDSA P521 test vectors (SHA512) 229 230 - Signature encoding contains wrong types. ... ECDSA P521 test vectors (SHA512) 230 231 - Edge case for Shamir multiplication. [OK] ECDSA P521 test vectors (SHA512) 230 231 - Edge case for Shamir multiplication. ... ECDSA P521 test vectors (SHA512) 231 232 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 231 232 - special case hash. ... ECDSA P521 test vectors (SHA512) 232 233 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 232 233 - special case hash. ... ECDSA P521 test vectors (SHA512) 233 234 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 233 234 - special case hash. ... ECDSA P521 test vectors (SHA512) 234 235 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 234 235 - special case hash. ... ECDSA P521 test vectors (SHA512) 235 236 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 235 236 - special case hash. ... ECDSA P521 test vectors (SHA512) 236 237 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 236 237 - special case hash. ... ECDSA P521 test vectors (SHA512) 237 238 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 237 238 - special case hash. ... ECDSA P521 test vectors (SHA512) 238 239 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 238 239 - special case hash. ... ECDSA P521 test vectors (SHA512) 239 240 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 239 240 - special case hash. ... ECDSA P521 test vectors (SHA512) 240 241 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 240 241 - special case hash. ... ECDSA P521 test vectors (SHA512) 241 242 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 241 242 - special case hash. ... ECDSA P521 test vectors (SHA512) 242 243 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 242 243 - special case hash. ... ECDSA P521 test vectors (SHA512) 243 244 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 243 244 - special case hash. ... ECDSA P521 test vectors (SHA512) 244 245 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 244 245 - special case hash. ... ECDSA P521 test vectors (SHA512) 245 246 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 245 246 - special case hash. ... ECDSA P521 test vectors (SHA512) 246 247 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 246 247 - special case hash. ... ECDSA P521 test vectors (SHA512) 247 248 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 247 248 - special case hash. ... ECDSA P521 test vectors (SHA512) 248 249 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 248 249 - special case hash. ... ECDSA P521 test vectors (SHA512) 249 250 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 249 250 - special case hash. ... ECDSA P521 test vectors (SHA512) 250 251 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 250 251 - special case hash. ... ECDSA P521 test vectors (SHA512) 251 252 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 251 252 - special case hash. ... ECDSA P521 test vectors (SHA512) 252 253 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 252 253 - special case hash. ... ECDSA P521 test vectors (SHA512) 253 254 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 253 254 - special case hash. ... ECDSA P521 test vectors (SHA512) 254 255 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 254 255 - special case hash. ... ECDSA P521 test vectors (SHA512) 255 256 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 255 256 - special case hash. ... ECDSA P521 test vectors (SHA512) 256 257 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 256 257 - special case hash. ... ECDSA P521 test vectors (SHA512) 257 258 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 257 258 - special case hash. ... ECDSA P521 test vectors (SHA512) 258 259 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 258 259 - special case hash. ... ECDSA P521 test vectors (SHA512) 259 260 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 259 260 - special case hash. ... ECDSA P521 test vectors (SHA512) 260 261 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 260 261 - special case hash. ... ECDSA P521 test vectors (SHA512) 261 262 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 261 262 - special case hash. ... ECDSA P521 test vectors (SHA512) 262 263 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 262 263 - special case hash. ... ECDSA P521 test vectors (SHA512) 263 264 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 263 264 - special case hash. ... ECDSA P521 test vectors (SHA512) 264 265 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 264 265 - special case hash. ... ECDSA P521 test vectors (SHA512) 265 266 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 265 266 - special case hash. ... ECDSA P521 test vectors (SHA512) 266 267 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 266 267 - special case hash. ... ECDSA P521 test vectors (SHA512) 267 268 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 267 268 - special case hash. ... ECDSA P521 test vectors (SHA512) 268 269 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 268 269 - special case hash. ... ECDSA P521 test vectors (SHA512) 269 270 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 269 270 - special case hash. ... ECDSA P521 test vectors (SHA512) 270 271 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 270 271 - special case hash. ... ECDSA P521 test vectors (SHA512) 271 272 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 271 272 - special case hash. ... ECDSA P521 test vectors (SHA512) 272 273 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 272 273 - special case hash. ... ECDSA P521 test vectors (SHA512) 273 274 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 273 274 - special case hash. ... ECDSA P521 test vectors (SHA512) 274 275 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 274 275 - special case hash. ... ECDSA P521 test vectors (SHA512) 275 276 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 275 276 - special case hash. ... ECDSA P521 test vectors (SHA512) 276 277 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 276 277 - special case hash. ... ECDSA P521 test vectors (SHA512) 277 278 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 277 278 - special case hash. ... ECDSA P521 test vectors (SHA512) 278 279 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 278 279 - special case hash. ... ECDSA P521 test vectors (SHA512) 279 280 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 279 280 - special case hash. ... ECDSA P521 test vectors (SHA512) 280 281 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 280 281 - special case hash. ... ECDSA P521 test vectors (SHA512) 281 282 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 281 282 - special case hash. ... ECDSA P521 test vectors (SHA512) 282 283 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 282 283 - special case hash. ... ECDSA P521 test vectors (SHA512) 283 284 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 283 284 - special case hash. ... ECDSA P521 test vectors (SHA512) 284 285 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 284 285 - special case hash. ... ECDSA P521 test vectors (SHA512) 285 286 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 285 286 - special case hash. ... ECDSA P521 test vectors (SHA512) 286 287 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 286 287 - special case hash. ... ECDSA P521 test vectors (SHA512) 287 288 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 287 288 - special case hash. ... ECDSA P521 test vectors (SHA512) 288 289 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 288 289 - special case hash. ... ECDSA P521 test vectors (SHA512) 289 290 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 289 290 - special case hash. ... ECDSA P521 test vectors (SHA512) 290 291 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 290 291 - special case hash. ... ECDSA P521 test vectors (SHA512) 291 292 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 291 292 - special case hash. ... ECDSA P521 test vectors (SHA512) 292 293 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 292 293 - special case hash. ... ECDSA P521 test vectors (SHA512) 293 294 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 293 294 - special case hash. ... ECDSA P521 test vectors (SHA512) 294 295 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 294 295 - special case hash. ... ECDSA P521 test vectors (SHA512) 295 296 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 295 296 - special case hash. ... ECDSA P521 test vectors (SHA512) 296 297 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 296 297 - special case hash. ... ECDSA P521 test vectors (SHA512) 297 298 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 297 298 - special case hash. ... ECDSA P521 test vectors (SHA512) 298 299 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 298 299 - special case hash. ... ECDSA P521 test vectors (SHA512) 299 300 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 299 300 - special case hash. ... ECDSA P521 test vectors (SHA512) 300 301 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 300 301 - special case hash. ... ECDSA P521 test vectors (SHA512) 301 302 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 301 302 - special case hash. ... ECDSA P521 test vectors (SHA512) 302 303 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 302 303 - special case hash. ... ECDSA P521 test vectors (SHA512) 303 304 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 303 304 - special case hash. ... ECDSA P521 test vectors (SHA512) 304 305 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 304 305 - special case hash. ... ECDSA P521 test vectors (SHA512) 305 306 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 305 306 - special case hash. ... ECDSA P521 test vectors (SHA512) 306 307 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 306 307 - special case hash. ... ECDSA P521 test vectors (SHA512) 307 308 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 307 308 - special case hash. ... ECDSA P521 test vectors (SHA512) 308 309 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 308 309 - special case hash. ... ECDSA P521 test vectors (SHA512) 309 310 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 309 310 - special case hash. ... ECDSA P521 test vectors (SHA512) 310 311 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 310 311 - special case hash. ... ECDSA P521 test vectors (SHA512) 311 312 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 311 312 - special case hash. ... ECDSA P521 test vectors (SHA512) 312 313 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 312 313 - special case hash. ... ECDSA P521 test vectors (SHA512) 313 314 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 313 314 - special case hash. ... ECDSA P521 test vectors (SHA512) 314 315 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 314 315 - special case hash. ... ECDSA P521 test vectors (SHA512) 315 316 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 315 316 - special case hash. ... ECDSA P521 test vectors (SHA512) 316 317 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 316 317 - special case hash. ... ECDSA P521 test vectors (SHA512) 317 318 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 317 318 - special case hash. ... ECDSA P521 test vectors (SHA512) 318 319 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 318 319 - special case hash. ... ECDSA P521 test vectors (SHA512) 319 320 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 319 320 - special case hash. ... ECDSA P521 test vectors (SHA512) 320 321 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 320 321 - special case hash. ... ECDSA P521 test vectors (SHA512) 321 322 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 321 322 - special case hash. ... ECDSA P521 test vectors (SHA512) 322 323 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 322 323 - special case hash. ... ECDSA P521 test vectors (SHA512) 323 324 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 323 324 - special case hash. ... ECDSA P521 test vectors (SHA512) 324 325 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 324 325 - special case hash. ... ECDSA P521 test vectors (SHA512) 325 326 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 325 326 - special case hash. ... ECDSA P521 test vectors (SHA512) 326 327 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 326 327 - special case hash. ... ECDSA P521 test vectors (SHA512) 327 328 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 327 328 - special case hash. ... ECDSA P521 test vectors (SHA512) 328 329 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 328 329 - special case hash. ... ECDSA P521 test vectors (SHA512) 329 330 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 329 330 - special case hash. ... ECDSA P521 test vectors (SHA512) 330 331 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 330 331 - special case hash. ... ECDSA P521 test vectors (SHA512) 331 332 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 331 332 - special case hash. ... ECDSA P521 test vectors (SHA512) 332 333 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 332 333 - special case hash. ... ECDSA P521 test vectors (SHA512) 333 334 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 333 334 - special case hash. ... ECDSA P521 test vectors (SHA512) 334 335 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 334 335 - special case hash. ... ECDSA P521 test vectors (SHA512) 335 336 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 335 336 - special case hash. ... ECDSA P521 test vectors (SHA512) 336 337 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 336 337 - special case hash. ... ECDSA P521 test vectors (SHA512) 337 338 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 337 338 - special case hash. ... ECDSA P521 test vectors (SHA512) 338 339 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 338 339 - special case hash. ... ECDSA P521 test vectors (SHA512) 339 340 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 339 340 - special case hash. ... ECDSA P521 test vectors (SHA512) 340 341 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 340 341 - special case hash. ... ECDSA P521 test vectors (SHA512) 341 342 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 341 342 - special case hash. ... ECDSA P521 test vectors (SHA512) 342 343 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 342 343 - special case hash. ... ECDSA P521 test vectors (SHA512) 343 344 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 343 344 - special case hash. ... ECDSA P521 test vectors (SHA512) 344 345 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 344 345 - special case hash. ... ECDSA P521 test vectors (SHA512) 345 346 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 345 346 - special case hash. ... ECDSA P521 test vectors (SHA512) 346 347 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 346 347 - special case hash. ... ECDSA P521 test vectors (SHA512) 347 348 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 347 348 - special case hash. ... ECDSA P521 test vectors (SHA512) 348 349 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 348 349 - special case hash. ... ECDSA P521 test vectors (SHA512) 349 350 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 349 350 - special case hash. ... ECDSA P521 test vectors (SHA512) 350 351 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 350 351 - special case hash. ... ECDSA P521 test vectors (SHA512) 351 352 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 351 352 - special case hash. ... ECDSA P521 test vectors (SHA512) 352 353 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 352 353 - special case hash. ... ECDSA P521 test vectors (SHA512) 353 354 - special case hash. [OK] ECDSA P521 test vectors (SHA512) 353 354 - special case hash. ... ECDSA P521 test vectors (SHA512) 354 355 - k*G has a large x-coordinate. [OK] ECDSA P521 test vectors (SHA512) 354 355 - k*G has a large x-coordinate. ... ECDSA P521 test vectors (SHA512) 355 356 - r too large. [OK] ECDSA P521 test vectors (SHA512) 355 356 - r too large. ... ECDSA P521 test vectors (SHA512) 356 357 - r,s are large. [OK] ECDSA P521 test vectors (SHA512) 356 357 - r,s are large. ... ECDSA P521 test vectors (SHA512) 357 358 - r and s^-1 have a large Hamming weight. [OK] ECDSA P521 test vectors (SHA512) 357 358 - r and s^-1 have a large Hamming weight. ... ECDSA P521 test vectors (SHA512) 358 359 - r and s^-1 have a large Hamming weight. [OK] ECDSA P521 test vectors (SHA512) 358 359 - r and s^-1 have a large Hamming weight. ... ECDSA P521 test vectors (SHA512) 359 360 - small r and s. [OK] ECDSA P521 test vectors (SHA512) 359 360 - small r and s. ... ECDSA P521 test vectors (SHA512) 360 361 - small r and s. [OK] ECDSA P521 test vectors (SHA512) 360 361 - small r and s. ... ECDSA P521 test vectors (SHA512) 361 362 - small r and s. [OK] ECDSA P521 test vectors (SHA512) 361 362 - small r and s. ... ECDSA P521 test vectors (SHA512) 362 363 - r is larger than n. [OK] ECDSA P521 test vectors (SHA512) 362 363 - r is larger than n. ... ECDSA P521 test vectors (SHA512) 363 364 - s is larger than n. [OK] ECDSA P521 test vectors (SHA512) 363 364 - s is larger than n. ... ECDSA P521 test vectors (SHA512) 364 365 - small r and s^-1. [OK] ECDSA P521 test vectors (SHA512) 364 365 - small r and s^-1. ... ECDSA P521 test vectors (SHA512) 365 366 - smallish r and s^-1. [OK] ECDSA P521 test vectors (SHA512) 365 366 - smallish r and s^-1. ... ECDSA P521 test vectors (SHA512) 366 367 - 100-bit r and small s^-1. [OK] ECDSA P521 test vectors (SHA512) 366 367 - 100-bit r and small s^-1. ... ECDSA P521 test vectors (SHA512) 367 368 - small r and 100 bit s^-1. [OK] ECDSA P521 test vectors (SHA512) 367 368 - small r and 100 bit s^-1. ... ECDSA P521 test vectors (SHA512) 368 369 - 100-bit r and s^-1. [OK] ECDSA P521 test vectors (SHA512) 368 369 - 100-bit r and s^-1. ... ECDSA P521 test vectors (SHA512) 369 370 - r and s^-1 are close to n. [OK] ECDSA P521 test vectors (SHA512) 369 370 - r and s^-1 are close to n. ... ECDSA P521 test vectors (SHA512) 370 371 - s == 1. [OK] ECDSA P521 test vectors (SHA512) 370 371 - s == 1. ... ECDSA P521 test vectors (SHA512) 371 372 - s == 0. [OK] ECDSA P521 test vectors (SHA512) 371 372 - s == 0. ... ECDSA P521 test vectors (SHA512) 372 373 - point at infinity during verify. [OK] ECDSA P521 test vectors (SHA512) 372 373 - point at infinity during verify. ... ECDSA P521 test vectors (SHA512) 373 374 - edge case for signature malleability. [OK] ECDSA P521 test vectors (SHA512) 373 374 - edge case for signature malleability. ... ECDSA P521 test vectors (SHA512) 374 375 - edge case for signature malleability. [OK] ECDSA P521 test vectors (SHA512) 374 375 - edge case for signature malleability. ... ECDSA P521 test vectors (SHA512) 375 376 - u1 == 1. [OK] ECDSA P521 test vectors (SHA512) 375 376 - u1 == 1. ... ECDSA P521 test vectors (SHA512) 376 377 - u1 == n - 1. [OK] ECDSA P521 test vectors (SHA512) 376 377 - u1 == n - 1. ... ECDSA P521 test vectors (SHA512) 377 378 - u2 == 1. [OK] ECDSA P521 test vectors (SHA512) 377 378 - u2 == 1. ... ECDSA P521 test vectors (SHA512) 378 379 - u2 == n - 1. [OK] ECDSA P521 test vectors (SHA512) 378 379 - u2 == n - 1. ... ECDSA P521 test vectors (SHA512) 379 380 - edge case for u1. [OK] ECDSA P521 test vectors (SHA512) 379 380 - edge case for u1. ... ECDSA P521 test vectors (SHA512) 380 381 - edge case for u1. [OK] ECDSA P521 test vectors (SHA512) 380 381 - edge case for u1. ... ECDSA P521 test vectors (SHA512) 381 382 - edge case for u1. [OK] ECDSA P521 test vectors (SHA512) 381 382 - edge case for u1. ... ECDSA P521 test vectors (SHA512) 382 383 - edge case for u1. [OK] ECDSA P521 test vectors (SHA512) 382 383 - edge case for u1. ... ECDSA P521 test vectors (SHA512) 383 384 - edge case for u1. [OK] ECDSA P521 test vectors (SHA512) 383 384 - edge case for u1. ... ECDSA P521 test vectors (SHA512) 384 385 - edge case for u1. [OK] ECDSA P521 test vectors (SHA512) 384 385 - edge case for u1. ... ECDSA P521 test vectors (SHA512) 385 386 - edge case for u1. [OK] ECDSA P521 test vectors (SHA512) 385 386 - edge case for u1. ... ECDSA P521 test vectors (SHA512) 386 387 - edge case for u1. [OK] ECDSA P521 test vectors (SHA512) 386 387 - edge case for u1. ... ECDSA P521 test vectors (SHA512) 387 388 - edge case for u1. [OK] ECDSA P521 test vectors (SHA512) 387 388 - edge case for u1. ... ECDSA P521 test vectors (SHA512) 388 389 - edge case for u1. [OK] ECDSA P521 test vectors (SHA512) 388 389 - edge case for u1. ... ECDSA P521 test vectors (SHA512) 389 390 - edge case for u1. [OK] ECDSA P521 test vectors (SHA512) 389 390 - edge case for u1. ... ECDSA P521 test vectors (SHA512) 390 391 - edge case for u1. [OK] ECDSA P521 test vectors (SHA512) 390 391 - edge case for u1. ... ECDSA P521 test vectors (SHA512) 391 392 - edge case for u1. [OK] ECDSA P521 test vectors (SHA512) 391 392 - edge case for u1. ... ECDSA P521 test vectors (SHA512) 392 393 - edge case for u1. [OK] ECDSA P521 test vectors (SHA512) 392 393 - edge case for u1. ... ECDSA P521 test vectors (SHA512) 393 394 - edge case for u2. [OK] ECDSA P521 test vectors (SHA512) 393 394 - edge case for u2. ... ECDSA P521 test vectors (SHA512) 394 395 - edge case for u2. [OK] ECDSA P521 test vectors (SHA512) 394 395 - edge case for u2. ... ECDSA P521 test vectors (SHA512) 395 396 - edge case for u2. [OK] ECDSA P521 test vectors (SHA512) 395 396 - edge case for u2. ... ECDSA P521 test vectors (SHA512) 396 397 - edge case for u2. [OK] ECDSA P521 test vectors (SHA512) 396 397 - edge case for u2. ... ECDSA P521 test vectors (SHA512) 397 398 - edge case for u2. [OK] ECDSA P521 test vectors (SHA512) 397 398 - edge case for u2. ... ECDSA P521 test vectors (SHA512) 398 399 - edge case for u2. [OK] ECDSA P521 test vectors (SHA512) 398 399 - edge case for u2. ... ECDSA P521 test vectors (SHA512) 399 400 - edge case for u2. [OK] ECDSA P521 test vectors (SHA512) 399 400 - edge case for u2. ... ECDSA P521 test vectors (SHA512) 400 401 - edge case for u2. [OK] ECDSA P521 test vectors (SHA512) 400 401 - edge case for u2. ... ECDSA P521 test vectors (SHA512) 401 402 - edge case for u2. [OK] ECDSA P521 test vectors (SHA512) 401 402 - edge case for u2. ... ECDSA P521 test vectors (SHA512) 402 403 - edge case for u2. [OK] ECDSA P521 test vectors (SHA512) 402 403 - edge case for u2. ... ECDSA P521 test vectors (SHA512) 403 404 - edge case for u2. [OK] ECDSA P521 test vectors (SHA512) 403 404 - edge case for u2. ... ECDSA P521 test vectors (SHA512) 404 405 - edge case for u2. [OK] ECDSA P521 test vectors (SHA512) 404 405 - edge case for u2. ... ECDSA P521 test vectors (SHA512) 405 406 - edge case for u2. [OK] ECDSA P521 test vectors (SHA512) 405 406 - edge case for u2. ... ECDSA P521 test vectors (SHA512) 406 407 - edge case for u2. [OK] ECDSA P521 test vectors (SHA512) 406 407 - edge case for u2. ... ECDSA P521 test vectors (SHA512) 407 408 - point duplication during verification. [OK] ECDSA P521 test vectors (SHA512) 407 408 - point duplication during verification. ... ECDSA P521 test vectors (SHA512) 408 409 - duplication bug. [OK] ECDSA P521 test vectors (SHA512) 408 409 - duplication bug. ... ECDSA P521 test vectors (SHA512) 409 410 - point with x-coordinate 0. [OK] ECDSA P521 test vectors (SHA512) 409 410 - point with x-coordinate 0. ... ECDSA P521 test vectors (SHA512) 410 411 - point with x-coordinate 0. [OK] ECDSA P521 test vectors (SHA512) 410 411 - point with x-coordinate 0. ... ECDSA P521 test vectors (SHA512) 411 412 - comparison with point at infinity . [OK] ECDSA P521 test vectors (SHA512) 411 412 - comparison with point at infinity . ... ECDSA P521 test vectors (SHA512) 412 413 - extreme value for k and edgecase s. [OK] ECDSA P521 test vectors (SHA512) 412 413 - extreme value for k and edgecase s. ... ECDSA P521 test vectors (SHA512) 413 414 - extreme value for k and s^-1. [OK] ECDSA P521 test vectors (SHA512) 413 414 - extreme value for k and s^-1. ... ECDSA P521 test vectors (SHA512) 414 415 - extreme value for k and s^-1. [OK] ECDSA P521 test vectors (SHA512) 414 415 - extreme value for k and s^-1. ... ECDSA P521 test vectors (SHA512) 415 416 - extreme value for k and s^-1. [OK] ECDSA P521 test vectors (SHA512) 415 416 - extreme value for k and s^-1. ... ECDSA P521 test vectors (SHA512) 416 417 - extreme value for k and s^-1. [OK] ECDSA P521 test vectors (SHA512) 416 417 - extreme value for k and s^-1. ... ECDSA P521 test vectors (SHA512) 417 418 - extreme value for k. [OK] ECDSA P521 test vectors (SHA512) 417 418 - extreme value for k. ... ECDSA P521 test vectors (SHA512) 418 419 - extreme value for k and edgecase s. [OK] ECDSA P521 test vectors (SHA512) 418 419 - extreme value for k and edgecase s. ... ECDSA P521 test vectors (SHA512) 419 420 - extreme value for k and s^-1. [OK] ECDSA P521 test vectors (SHA512) 419 420 - extreme value for k and s^-1. ... ECDSA P521 test vectors (SHA512) 420 421 - extreme value for k and s^-1. [OK] ECDSA P521 test vectors (SHA512) 420 421 - extreme value for k and s^-1. ... ECDSA P521 test vectors (SHA512) 421 422 - extreme value for k and s^-1. [OK] ECDSA P521 test vectors (SHA512) 421 422 - extreme value for k and s^-1. ... ECDSA P521 test vectors (SHA512) 422 423 - extreme value for k and s^-1. [OK] ECDSA P521 test vectors (SHA512) 422 423 - extreme value for k and s^-1. ... ECDSA P521 test vectors (SHA512) 423 424 - extreme value for k. [OK] ECDSA P521 test vectors (SHA512) 423 424 - extreme value for k. ... ECDSA P521 test vectors (SHA512) 424 425 - testing point duplication. [OK] ECDSA P521 test vectors (SHA512) 424 425 - testing point duplication. ... ECDSA P521 test vectors (SHA512) 425 426 - testing point duplication. [OK] ECDSA P521 test vectors (SHA512) 425 426 - testing point duplication. ... ECDSA P521 test vectors (SHA512) 426 427 - testing point duplication. [OK] ECDSA P521 test vectors (SHA512) 426 427 - testing point duplication. ... ECDSA P521 test vectors (SHA512) 427 428 - testing point duplication. [OK] ECDSA P521 test vectors (SHA512) 427 428 - testing point duplication. ... ECDSA P521 test vectors (SHA512) 428 429 - pseudorandom signature. [OK] ECDSA P521 test vectors (SHA512) 428 429 - pseudorandom signature. ... ECDSA P521 test vectors (SHA512) 429 430 - pseudorandom signature. [OK] ECDSA P521 test vectors (SHA512) 429 430 - pseudorandom signature. ... ECDSA P521 test vectors (SHA512) 430 431 - pseudorandom signature. [OK] ECDSA P521 test vectors (SHA512) 430 431 - pseudorandom signature. ... ECDSA P521 test vectors (SHA512) 431 432 - pseudorandom signature. [OK] ECDSA P521 test vectors (SHA512) 431 432 - pseudorandom signature. ... ECDSA P521 test vectors (SHA512) 432 433 - y-coordinate of the public key is small. [OK] ECDSA P521 test vectors (SHA512) 432 433 - y-coordinate of the public key is small. ... ECDSA P521 test vectors (SHA512) 433 434 - y-coordinate of the public key is small. [OK] ECDSA P521 test vectors (SHA512) 433 434 - y-coordinate of the public key is small. ... ECDSA P521 test vectors (SHA512) 434 435 - y-coordinate of the public key is small. [OK] ECDSA P521 test vectors (SHA512) 434 435 - y-coordinate of the public key is small. ... ECDSA P521 test vectors (SHA512) 435 436 - y-coordinate of the public key is large. [OK] ECDSA P521 test vectors (SHA512) 435 436 - y-coordinate of the public key is large. ... ECDSA P521 test vectors (SHA512) 436 437 - y-coordinate of the public key is large. [OK] ECDSA P521 test vectors (SHA512) 436 437 - y-coordinate of the public key is large. ... ECDSA P521 test vectors (SHA512) 437 438 - y-coordinate of the public key is large. [OK] ECDSA P521 test vectors (SHA512) 437 438 - y-coordinate of the public key is large. ... ECDSA P521 test vectors (SHA512) 438 439 - x-coordinate of the public key is small. [OK] ECDSA P521 test vectors (SHA512) 438 439 - x-coordinate of the public key is small. ... ECDSA P521 test vectors (SHA512) 439 440 - x-coordinate of the public key is small. [OK] ECDSA P521 test vectors (SHA512) 439 440 - x-coordinate of the public key is small. ... ECDSA P521 test vectors (SHA512) 440 441 - x-coordinate of the public key is small. [OK] ECDSA P521 test vectors (SHA512) 440 441 - x-coordinate of the public key is small. ... ECDSA P521 test vectors (SHA512) 441 442 - x-coordinate of the public key is large. [OK] ECDSA P521 test vectors (SHA512) 441 442 - x-coordinate of the public key is large. ... ECDSA P521 test vectors (SHA512) 442 443 - x-coordinate of the public key is large. [OK] ECDSA P521 test vectors (SHA512) 442 443 - x-coordinate of the public key is large. ... ECDSA P521 test vectors (SHA512) 443 444 - x-coordinate of the public key is large. [OK] ECDSA P521 test vectors (SHA512) 443 444 - x-coordinate of the public key is large. ... ECDSA P521 test vectors (SHA512) 444 445 - y-coordinate of the public key has many trailing 1's. [OK] ECDSA P521 test vectors (SHA512) 444 445 - y-coordinate of the public key has many trailing 1's. ... ECDSA P521 test vectors (SHA512) 445 446 - y-coordinate of the public key has many trailing 1's. [OK] ECDSA P521 test vectors (SHA512) 445 446 - y-coordinate of the public key has many trailing 1's. ... ECDSA P521 test vectors (SHA512) 446 447 - y-coordinate of the public key has many trailing 1's. [OK] ECDSA P521 test vectors (SHA512) 446 447 - y-coordinate of the public key has many trailing 1's. ... X25519 test vectors 0 1 - normal case. [OK] X25519 test vectors 0 1 - normal case. ... X25519 test vectors 1 2 - public key on twist. [OK] X25519 test vectors 1 2 - public key on twist. ... X25519 test vectors 2 3 - public key on twist. [OK] X25519 test vectors 2 3 - public key on twist. ... X25519 test vectors 3 4 - public key on twist. [OK] X25519 test vectors 3 4 - public key on twist. ... X25519 test vectors 4 5 - public key on twist. [OK] X25519 test vectors 4 5 - public key on twist. ... X25519 test vectors 5 6 - public key on twist. [OK] X25519 test vectors 5 6 - public key on twist. ... X25519 test vectors 6 7 - public key on twist. [OK] X25519 test vectors 6 7 - public key on twist. ... X25519 test vectors 7 8 - public key on twist. [OK] X25519 test vectors 7 8 - public key on twist. ... X25519 test vectors 8 9 - public key on twist. [OK] X25519 test vectors 8 9 - public key on twist. ... X25519 test vectors 9 10 - public key on twist. [OK] X25519 test vectors 9 10 - public key on twist. ... X25519 test vectors 10 11 - public key on twist. [OK] X25519 test vectors 10 11 - public key on twist. ... X25519 test vectors 11 12 - public key on twist. [OK] X25519 test vectors 11 12 - public key on twist. ... X25519 test vectors 12 13 - public key on twist. [OK] X25519 test vectors 12 13 - public key on twist. ... X25519 test vectors 13 14 - public key on twist. [OK] X25519 test vectors 13 14 - public key on twist. ... X25519 test vectors 14 15 - public key on twist. [OK] X25519 test vectors 14 15 - public key on twist. ... X25519 test vectors 15 16 - public key on twist. [OK] X25519 test vectors 15 16 - public key on twist. ... X25519 test vectors 16 17 - public key on twist. [OK] X25519 test vectors 16 17 - public key on twist. ... X25519 test vectors 17 18 - public key on twist. [OK] X25519 test vectors 17 18 - public key on twist. ... X25519 test vectors 18 19 - public key on twist. [OK] X25519 test vectors 18 19 - public key on twist. ... X25519 test vectors 19 20 - public key on twist. [OK] X25519 test vectors 19 20 - public key on twist. ... X25519 test vectors 20 21 - public key on twist. [OK] X25519 test vectors 20 21 - public key on twist. ... X25519 test vectors 21 22 - public key on twist. [OK] X25519 test vectors 21 22 - public key on twist. ... X25519 test vectors 22 23 - public key on twist. [OK] X25519 test vectors 22 23 - public key on twist. ... X25519 test vectors 23 24 - public key on twist. [OK] X25519 test vectors 23 24 - public key on twist. ... X25519 test vectors 24 25 - public key on twist. [OK] X25519 test vectors 24 25 - public key on twist. ... X25519 test vectors 25 26 - public key on twist. [OK] X25519 test vectors 25 26 - public key on twist. ... X25519 test vectors 26 27 - public key on twist. [OK] X25519 test vectors 26 27 - public key on twist. ... X25519 test vectors 27 28 - public key on twist. [OK] X25519 test vectors 27 28 - public key on twist. ... X25519 test vectors 28 29 - public key on twist. [OK] X25519 test vectors 28 29 - public key on twist. ... X25519 test vectors 29 30 - public key on twist. [OK] X25519 test vectors 29 30 - public key on twist. ... X25519 test vectors 30 31 - public key on twist. [OK] X25519 test vectors 30 31 - public key on twist. ... X25519 test vectors 31 32 - public key = 0. [OK] X25519 test vectors 31 32 - public key = 0. ... X25519 test vectors 32 33 - public key = 1. [OK] X25519 test vectors 32 33 - public key = 1. ... X25519 test vectors 33 34 - edge case public key. [OK] X25519 test vectors 33 34 - edge case public key. ... X25519 test vectors 34 35 - edge case public key. [OK] X25519 test vectors 34 35 - edge case public key. ... X25519 test vectors 35 36 - edge case public key. [OK] X25519 test vectors 35 36 - edge case public key. ... X25519 test vectors 36 37 - edge case public key. [OK] X25519 test vectors 36 37 - edge case public key. ... X25519 test vectors 37 38 - edge case public key. [OK] X25519 test vectors 37 38 - edge case public key. ... X25519 test vectors 38 39 - edge case public key. [OK] X25519 test vectors 38 39 - edge case public key. ... X25519 test vectors 39 40 - edge case public key. [OK] X25519 test vectors 39 40 - edge case public key. ... X25519 test vectors 40 41 - edge case public key. [OK] X25519 test vectors 40 41 - edge case public key. ... X25519 test vectors 41 42 - edge case public key. [OK] X25519 test vectors 41 42 - edge case public key. ... X25519 test vectors 42 43 - edge case public key. [OK] X25519 test vectors 42 43 - edge case public key. ... X25519 test vectors 43 44 - edge case public key. [OK] X25519 test vectors 43 44 - edge case public key. ... X25519 test vectors 44 45 - edge case public key. [OK] X25519 test vectors 44 45 - edge case public key. ... X25519 test vectors 45 46 - edge case public key. [OK] X25519 test vectors 45 46 - edge case public key. ... X25519 test vectors 46 47 - edge case public key. [OK] X25519 test vectors 46 47 - edge case public key. ... X25519 test vectors 47 48 - edge case public key. [OK] X25519 test vectors 47 48 - edge case public key. ... X25519 test vectors 48 49 - edge case public key. [OK] X25519 test vectors 48 49 - edge case public key. ... X25519 test vectors 49 50 - edge case public key. [OK] X25519 test vectors 49 50 - edge case public key. ... X25519 test vectors 50 51 - edge case public key. [OK] X25519 test vectors 50 51 - edge case public key. ... X25519 test vectors 51 52 - edge case public key. [OK] X25519 test vectors 51 52 - edge case public key. ... X25519 test vectors 52 53 - edge case public key. [OK] X25519 test vectors 52 53 - edge case public key. ... X25519 test vectors 53 54 - edge case public key. [OK] X25519 test vectors 53 54 - edge case public key. ... X25519 test vectors 54 55 - edge case public key. [OK] X25519 test vectors 54 55 - edge case public key. ... X25519 test vectors 55 56 - edge case public key. [OK] X25519 test vectors 55 56 - edge case public key. ... X25519 test vectors 56 57 - edge case public key. [OK] X25519 test vectors 56 57 - edge case public key. ... X25519 test vectors 57 58 - edge case public key. [OK] X25519 test vectors 57 58 - edge case public key. ... X25519 test vectors 58 59 - edge case public key. [OK] X25519 test vectors 58 59 - edge case public key. ... X25519 test vectors 59 60 - edge case public key. [OK] X25519 test vectors 59 60 - edge case public key. ... X25519 test vectors 60 61 - edge case public key. [OK] X25519 test vectors 60 61 - edge case public key. ... X25519 test vectors 61 62 - edge case public key. [OK] X25519 test vectors 61 62 - edge case public key. ... X25519 test vectors 62 63 - public key with low order. [OK] X25519 test vectors 62 63 - public key with low order. ... X25519 test vectors 63 64 - public key with low order. [OK] X25519 test vectors 63 64 - public key with low order. ... X25519 test vectors 64 65 - public key with low order. [OK] X25519 test vectors 64 65 - public key with low order. ... X25519 test vectors 65 66 - public key with low order. [OK] X25519 test vectors 65 66 - public key with low order. ... X25519 test vectors 66 67 - public key with low order. [OK] X25519 test vectors 66 67 - public key with low order. ... X25519 test vectors 67 68 - public key with low order. [OK] X25519 test vectors 67 68 - public key with low order. ... X25519 test vectors 68 69 - public key with low order. [OK] X25519 test vectors 68 69 - public key with low order. ... X25519 test vectors 69 70 - public key with low order. [OK] X25519 test vectors 69 70 - public key with low order. ... X25519 test vectors 70 71 - public key with low order. [OK] X25519 test vectors 70 71 - public key with low order. ... X25519 test vectors 71 72 - public key with low order. [OK] X25519 test vectors 71 72 - public key with low order. ... X25519 test vectors 72 73 - public key with low order. [OK] X25519 test vectors 72 73 - public key with low order. ... X25519 test vectors 73 74 - public key with low order. [OK] X25519 test vectors 73 74 - public key with low order. ... X25519 test vectors 74 75 - public key with low order. [OK] X25519 test vectors 74 75 - public key with low order. ... X25519 test vectors 75 76 - public key with low order. [OK] X25519 test vectors 75 76 - public key with low order. ... X25519 test vectors 76 77 - public key with low order. [OK] X25519 test vectors 76 77 - public key with low order. ... X25519 test vectors 77 78 - public key with low order. [OK] X25519 test vectors 77 78 - public key with low order. ... X25519 test vectors 78 79 - public key with low order. [OK] X25519 test vectors 78 79 - public key with low order. ... X25519 test vectors 79 80 - public key with low order. [OK] X25519 test vectors 79 80 - public key with low order. ... X25519 test vectors 80 81 - public key with low order. [OK] X25519 test vectors 80 81 - public key with low order. ... X25519 test vectors 81 82 - public key with low order. [OK] X25519 test vectors 81 82 - public key with low order. ... X25519 test vectors 82 83 - public key = 57896044618658097711785492504343953926634992332820282019728792003956564819949. [OK] X25519 test vectors 82 83 - public key = 57896044618658097711785492504343953926634992332820282019728792003956564819949. ... X25519 test vectors 83 84 - public key = 57896044618658097711785492504343953926634992332820282019728792003956564819950. [OK] X25519 test vectors 83 84 - public key = 57896044618658097711785492504343953926634992332820282019728792003956564819950. ... X25519 test vectors 84 85 - non-canonical public key. [OK] X25519 test vectors 84 85 - non-canonical public key. ... X25519 test vectors 85 86 - non-canonical public key. [OK] X25519 test vectors 85 86 - non-canonical public key. ... X25519 test vectors 86 87 - non-canonical public key. [OK] X25519 test vectors 86 87 - non-canonical public key. ... X25519 test vectors 87 88 - non-canonical public key. [OK] X25519 test vectors 87 88 - non-canonical public key. ... X25519 test vectors 88 89 - non-canonical public key. [OK] X25519 test vectors 88 89 - non-canonical public key. ... X25519 test vectors 89 90 - non-canonical public key. [OK] X25519 test vectors 89 90 - non-canonical public key. ... X25519 test vectors 90 91 - non-canonical public key. [OK] X25519 test vectors 90 91 - non-canonical public key. ... X25519 test vectors 91 92 - non-canonical public key. [OK] X25519 test vectors 91 92 - non-canonical public key. ... X25519 test vectors 92 93 - non-canonical public key. [OK] X25519 test vectors 92 93 - non-canonical public key. ... X25519 test vectors 93 94 - non-canonical public key. [OK] X25519 test vectors 93 94 - non-canonical public key. ... X25519 test vectors 94 95 - non-canonical public key. [OK] X25519 test vectors 94 95 - non-canonical public key. ... X25519 test vectors 95 96 - non-canonical public key. [OK] X25519 test vectors 95 96 - non-canonical public key. ... X25519 test vectors 96 97 - non-canonical public key. [OK] X25519 test vectors 96 97 - non-canonical public key. ... X25519 test vectors 97 98 - public key = 57896044618658097711785492504343953926634992332820282019728792003956564819968. [OK] X25519 test vectors 97 98 - public key = 57896044618658097711785492504343953926634992332820282019728792003956564819968. ... X25519 test vectors 98 99 - public key = 57896044618658097711785492504343953926634992332820282019728792003956564819969. [OK] X25519 test vectors 98 99 - public key = 57896044618658097711785492504343953926634992332820282019728792003956564819969. ... X25519 test vectors 99 100 - RFC 7748. [OK] X25519 test vectors 99 100 - RFC 7748. ... X25519 test vectors 100 101 - RFC 7748. [OK] X25519 test vectors 100 101 - RFC 7748. ... X25519 test vectors 101 102 - RFC 8037, Section A.6. [OK] X25519 test vectors 101 102 - RFC 8037, Section A.6. ... X25519 test vectors 102 103 - edge case for shared secret. [OK] X25519 test vectors 102 103 - edge case for shared secret. ... X25519 test vectors 103 104 - edge case for shared secret. [OK] X25519 test vectors 103 104 - edge case for shared secret. ... X25519 test vectors 104 105 - edge case for shared secret. [OK] X25519 test vectors 104 105 - edge case for shared secret. ... X25519 test vectors 105 106 - edge case for shared secret. [OK] X25519 test vectors 105 106 - edge case for shared secret. ... X25519 test vectors 106 107 - edge case for shared secret. [OK] X25519 test vectors 106 107 - edge case for shared secret. ... X25519 test vectors 107 108 - edge case for shared secret. [OK] X25519 test vectors 107 108 - edge case for shared secret. ... X25519 test vectors 108 109 - edge case for shared secret. [OK] X25519 test vectors 108 109 - edge case for shared secret. ... X25519 test vectors 109 110 - edge case for shared secret. [OK] X25519 test vectors 109 110 - edge case for shared secret. ... X25519 test vectors 110 111 - edge case for shared secret. [OK] X25519 test vectors 110 111 - edge case for shared secret. ... X25519 test vectors 111 112 - edge case for shared secret. [OK] X25519 test vectors 111 112 - edge case for shared secret. ... X25519 test vectors 112 113 - edge case for shared secret. [OK] X25519 test vectors 112 113 - edge case for shared secret. ... X25519 test vectors 113 114 - edge case for shared secret. [OK] X25519 test vectors 113 114 - edge case for shared secret. ... X25519 test vectors 114 115 - edge case for shared secret. [OK] X25519 test vectors 114 115 - edge case for shared secret. ... X25519 test vectors 115 116 - edge case for shared secret. [OK] X25519 test vectors 115 116 - edge case for shared secret. ... X25519 test vectors 116 117 - special case public key. [OK] X25519 test vectors 116 117 - special case public key. ... X25519 test vectors 117 118 - special case public key. [OK] X25519 test vectors 117 118 - special case public key. ... X25519 test vectors 118 119 - special case public key. [OK] X25519 test vectors 118 119 - special case public key. ... X25519 test vectors 119 120 - special case public key. [OK] X25519 test vectors 119 120 - special case public key. ... X25519 test vectors 120 121 - special case public key. [OK] X25519 test vectors 120 121 - special case public key. ... X25519 test vectors 121 122 - special case public key. [OK] X25519 test vectors 121 122 - special case public key. ... X25519 test vectors 122 123 - special case public key. [OK] X25519 test vectors 122 123 - special case public key. ... X25519 test vectors 123 124 - special case public key. [OK] X25519 test vectors 123 124 - special case public key. ... X25519 test vectors 124 125 - special case public key. [OK] X25519 test vectors 124 125 - special case public key. ... X25519 test vectors 125 126 - special case public key. [OK] X25519 test vectors 125 126 - special case public key. ... X25519 test vectors 126 127 - special case public key. [OK] X25519 test vectors 126 127 - special case public key. ... X25519 test vectors 127 128 - special case public key. [OK] X25519 test vectors 127 128 - special case public key. ... X25519 test vectors 128 129 - special case public key. [OK] X25519 test vectors 128 129 - special case public key. ... X25519 test vectors 129 130 - special case public key. [OK] X25519 test vectors 129 130 - special case public key. ... X25519 test vectors 130 131 - special case public key. [OK] X25519 test vectors 130 131 - special case public key. ... X25519 test vectors 131 132 - special case public key. [OK] X25519 test vectors 131 132 - special case public key. ... X25519 test vectors 132 133 - special case public key. [OK] X25519 test vectors 132 133 - special case public key. ... X25519 test vectors 133 134 - special case public key. [OK] X25519 test vectors 133 134 - special case public key. ... X25519 test vectors 134 135 - special case public key. [OK] X25519 test vectors 134 135 - special case public key. ... X25519 test vectors 135 136 - special case public key. [OK] X25519 test vectors 135 136 - special case public key. ... X25519 test vectors 136 137 - special case public key. [OK] X25519 test vectors 136 137 - special case public key. ... X25519 test vectors 137 138 - special case public key. [OK] X25519 test vectors 137 138 - special case public key. ... X25519 test vectors 138 139 - special case public key. [OK] X25519 test vectors 138 139 - special case public key. ... X25519 test vectors 139 140 - special case public key. [OK] X25519 test vectors 139 140 - special case public key. ... X25519 test vectors 140 141 - special case public key. [OK] X25519 test vectors 140 141 - special case public key. ... X25519 test vectors 141 142 - special case public key. [OK] X25519 test vectors 141 142 - special case public key. ... X25519 test vectors 142 143 - special case public key. [OK] X25519 test vectors 142 143 - special case public key. ... X25519 test vectors 143 144 - special case public key. [OK] X25519 test vectors 143 144 - special case public key. ... X25519 test vectors 144 145 - special case public key. [OK] X25519 test vectors 144 145 - special case public key. ... X25519 test vectors 145 146 - special case public key. [OK] X25519 test vectors 145 146 - special case public key. ... X25519 test vectors 146 147 - special case public key. [OK] X25519 test vectors 146 147 - special case public key. ... X25519 test vectors 147 148 - special case public key. [OK] X25519 test vectors 147 148 - special case public key. ... X25519 test vectors 148 149 - special case public key. [OK] X25519 test vectors 148 149 - special case public key. ... X25519 test vectors 149 150 - special case public key. [OK] X25519 test vectors 149 150 - special case public key. ... X25519 test vectors 150 151 - special case public key. [OK] X25519 test vectors 150 151 - special case public key. ... X25519 test vectors 151 152 - special case public key. [OK] X25519 test vectors 151 152 - special case public key. ... X25519 test vectors 152 153 - special case public key. [OK] X25519 test vectors 152 153 - special case public key. ... X25519 test vectors 153 154 - special case public key. [OK] X25519 test vectors 153 154 - special case public key. ... X25519 test vectors 154 155 - special case for E in multiplication by 2. [OK] X25519 test vectors 154 155 - special case for E in multiplication by 2. ... X25519 test vectors 155 156 - special case for E in multiplication by 2. [OK] X25519 test vectors 155 156 - special case for E in multiplication by 2. ... X25519 test vectors 156 157 - special case for E in multiplication by 2. [OK] X25519 test vectors 156 157 - special case for E in multiplication by 2. ... X25519 test vectors 157 158 - special case for E in multiplication by 2. [OK] X25519 test vectors 157 158 - special case for E in multiplication by 2. ... X25519 test vectors 158 159 - special case for E in multiplication by 2. [OK] X25519 test vectors 158 159 - special case for E in multiplication by 2. ... X25519 test vectors 159 160 - special case for E in multiplication by 2. [OK] X25519 test vectors 159 160 - special case for E in multiplication by 2. ... X25519 test vectors 160 161 - special case for E in multiplication by 2. [OK] X25519 test vectors 160 161 - special case for E in multiplication by 2. ... X25519 test vectors 161 162 - special case for E in multiplication by 2. [OK] X25519 test vectors 161 162 - special case for E in multiplication by 2. ... X25519 test vectors 162 163 - special case for E in multiplication by 2. [OK] X25519 test vectors 162 163 - special case for E in multiplication by 2. ... X25519 test vectors 163 164 - special case for E in multiplication by 2. [OK] X25519 test vectors 163 164 - special case for E in multiplication by 2. ... X25519 test vectors 164 165 - D = 0 in multiplication by 2. [OK] X25519 test vectors 164 165 - D = 0 in multiplication by 2. ... X25519 test vectors 165 166 - D = 0 in multiplication by 2. [OK] X25519 test vectors 165 166 - D = 0 in multiplication by 2. ... X25519 test vectors 166 167 - special case for DA - CB in multiplication by 2. [OK] X25519 test vectors 166 167 - special case for DA - CB in multiplication by 2. ... X25519 test vectors 167 168 - special case for DA - CB in multiplication by 2. [OK] X25519 test vectors 167 168 - special case for DA - CB in multiplication by 2. ... X25519 test vectors 168 169 - special case for DA - CB in multiplication by 2. [OK] X25519 test vectors 168 169 - special case for DA - CB in multiplication by 2. ... X25519 test vectors 169 170 - special case for DA - CB in multiplication by 2. [OK] X25519 test vectors 169 170 - special case for DA - CB in multiplication by 2. ... X25519 test vectors 170 171 - special case for DA in multiplication by 2. [OK] X25519 test vectors 170 171 - special case for DA in multiplication by 2. ... X25519 test vectors 171 172 - special case for DA in multiplication by 2. [OK] X25519 test vectors 171 172 - special case for DA in multiplication by 2. ... X25519 test vectors 172 173 - special case for DA in multiplication by 2. [OK] X25519 test vectors 172 173 - special case for DA in multiplication by 2. ... X25519 test vectors 173 174 - special case for DA in multiplication by 2. [OK] X25519 test vectors 173 174 - special case for DA in multiplication by 2. ... X25519 test vectors 174 175 - special case for x_2 in multiplication by 2. [OK] X25519 test vectors 174 175 - special case for x_2 in multiplication by 2. ... X25519 test vectors 175 176 - special case for x_2 in multiplication by 2. [OK] X25519 test vectors 175 176 - special case for x_2 in multiplication by 2. ... X25519 test vectors 176 177 - special case for x_2 in multiplication by 2. [OK] X25519 test vectors 176 177 - special case for x_2 in multiplication by 2. ... X25519 test vectors 177 178 - special case for x_2 in multiplication by 2. [OK] X25519 test vectors 177 178 - special case for x_2 in multiplication by 2. ... X25519 test vectors 178 179 - special case for x_2 in multiplication by 2. [OK] X25519 test vectors 178 179 - special case for x_2 in multiplication by 2. ... X25519 test vectors 179 180 - special case for x_2 in multiplication by 2. [OK] X25519 test vectors 179 180 - special case for x_2 in multiplication by 2. ... X25519 test vectors 180 181 - special case for AA in multiplication by 2. [OK] X25519 test vectors 180 181 - special case for AA in multiplication by 2. ... X25519 test vectors 181 182 - special case for AA in multiplication by 2. [OK] X25519 test vectors 181 182 - special case for AA in multiplication by 2. ... X25519 test vectors 182 183 - special case for AA in multiplication by 2. [OK] X25519 test vectors 182 183 - special case for AA in multiplication by 2. ... X25519 test vectors 183 184 - special case for AA in multiplication by 2. [OK] X25519 test vectors 183 184 - special case for AA in multiplication by 2. ... X25519 test vectors 184 185 - special case for BB in multiplication by 2. [OK] X25519 test vectors 184 185 - special case for BB in multiplication by 2. ... X25519 test vectors 185 186 - special case for BB in multiplication by 2. [OK] X25519 test vectors 185 186 - special case for BB in multiplication by 2. ... X25519 test vectors 186 187 - special case for BB in multiplication by 2. [OK] X25519 test vectors 186 187 - special case for BB in multiplication by 2. ... X25519 test vectors 187 188 - special case for BB in multiplication by 2. [OK] X25519 test vectors 187 188 - special case for BB in multiplication by 2. ... X25519 test vectors 188 189 - special case for D in multiplication by 2. [OK] X25519 test vectors 188 189 - special case for D in multiplication by 2. ... X25519 test vectors 189 190 - special case for D in multiplication by 2. [OK] X25519 test vectors 189 190 - special case for D in multiplication by 2. ... X25519 test vectors 190 191 - special case for D in multiplication by 2. [OK] X25519 test vectors 190 191 - special case for D in multiplication by 2. ... X25519 test vectors 191 192 - special case for D in multiplication by 2. [OK] X25519 test vectors 191 192 - special case for D in multiplication by 2. ... X25519 test vectors 192 193 - special case for D in multiplication by 2. [OK] X25519 test vectors 192 193 - special case for D in multiplication by 2. ... X25519 test vectors 193 194 - special case for D in multiplication by 2. [OK] X25519 test vectors 193 194 - special case for D in multiplication by 2. ... X25519 test vectors 194 195 - special case for DA + CB in multiplication by 2. [OK] X25519 test vectors 194 195 - special case for DA + CB in multiplication by 2. ... X25519 test vectors 195 196 - special case for DA + CB in multiplication by 2. [OK] X25519 test vectors 195 196 - special case for DA + CB in multiplication by 2. ... X25519 test vectors 196 197 - special case for DA + CB in multiplication by 2. [OK] X25519 test vectors 196 197 - special case for DA + CB in multiplication by 2. ... X25519 test vectors 197 198 - special case for DA + CB in multiplication by 2. [OK] X25519 test vectors 197 198 - special case for DA + CB in multiplication by 2. ... X25519 test vectors 198 199 - special case for DA + CB in multiplication by 2. [OK] X25519 test vectors 198 199 - special case for DA + CB in multiplication by 2. ... X25519 test vectors 199 200 - special case for DA + CB in multiplication by 2. [OK] X25519 test vectors 199 200 - special case for DA + CB in multiplication by 2. ... X25519 test vectors 200 201 - special case for DA + CB in multiplication by 2. [OK] X25519 test vectors 200 201 - special case for DA + CB in multiplication by 2. ... X25519 test vectors 201 202 - special case for z_2 in multiplication by 2. [OK] X25519 test vectors 201 202 - special case for z_2 in multiplication by 2. ... X25519 test vectors 202 203 - special case for z_2 in multiplication by 2. [OK] X25519 test vectors 202 203 - special case for z_2 in multiplication by 2. ... X25519 test vectors 203 204 - special case for z_2 in multiplication by 2. [OK] X25519 test vectors 203 204 - special case for z_2 in multiplication by 2. ... X25519 test vectors 204 205 - special case for z_2 in multiplication by 2. [OK] X25519 test vectors 204 205 - special case for z_2 in multiplication by 2. ... X25519 test vectors 205 206 - special case for z_2 in multiplication by 2. [OK] X25519 test vectors 205 206 - special case for z_2 in multiplication by 2. ... X25519 test vectors 206 207 - special case for z_2 in multiplication by 2. [OK] X25519 test vectors 206 207 - special case for z_2 in multiplication by 2. ... X25519 test vectors 207 208 - special case for z_2 in multiplication by 2. [OK] X25519 test vectors 207 208 - special case for z_2 in multiplication by 2. ... X25519 test vectors 208 209 - special case for z_2 in multiplication by 2. [OK] X25519 test vectors 208 209 - special case for z_2 in multiplication by 2. ... X25519 test vectors 209 210 - special case for A in multiplication by 2. [OK] X25519 test vectors 209 210 - special case for A in multiplication by 2. ... X25519 test vectors 210 211 - special case for A in multiplication by 2. [OK] X25519 test vectors 210 211 - special case for A in multiplication by 2. ... X25519 test vectors 211 212 - special case for A in multiplication by 2. [OK] X25519 test vectors 211 212 - special case for A in multiplication by 2. ... X25519 test vectors 212 213 - special case for A in multiplication by 2. [OK] X25519 test vectors 212 213 - special case for A in multiplication by 2. ... X25519 test vectors 213 214 - special case for A in multiplication by 2. [OK] X25519 test vectors 213 214 - special case for A in multiplication by 2. ... X25519 test vectors 214 215 - special case for A in multiplication by 2. [OK] X25519 test vectors 214 215 - special case for A in multiplication by 2. ... X25519 test vectors 215 216 - special case for B in multiplication by 2. [OK] X25519 test vectors 215 216 - special case for B in multiplication by 2. ... X25519 test vectors 216 217 - special case for B in multiplication by 2. [OK] X25519 test vectors 216 217 - special case for B in multiplication by 2. ... X25519 test vectors 217 218 - special case for B in multiplication by 2. [OK] X25519 test vectors 217 218 - special case for B in multiplication by 2. ... X25519 test vectors 218 219 - special case for B in multiplication by 2. [OK] X25519 test vectors 218 219 - special case for B in multiplication by 2. ... X25519 test vectors 219 220 - special case for B in multiplication by 2. [OK] X25519 test vectors 219 220 - special case for B in multiplication by 2. ... X25519 test vectors 220 221 - special case for B in multiplication by 2. [OK] X25519 test vectors 220 221 - special case for B in multiplication by 2. ... X25519 test vectors 221 222 - special case for C in multiplication by 2. [OK] X25519 test vectors 221 222 - special case for C in multiplication by 2. ... X25519 test vectors 222 223 - special case for C in multiplication by 2. [OK] X25519 test vectors 222 223 - special case for C in multiplication by 2. ... X25519 test vectors 223 224 - special case for C in multiplication by 2. [OK] X25519 test vectors 223 224 - special case for C in multiplication by 2. ... X25519 test vectors 224 225 - special case for C in multiplication by 2. [OK] X25519 test vectors 224 225 - special case for C in multiplication by 2. ... X25519 test vectors 225 226 - special case for CB in multiplication by 2. [OK] X25519 test vectors 225 226 - special case for CB in multiplication by 2. ... X25519 test vectors 226 227 - special case for CB in multiplication by 2. [OK] X25519 test vectors 226 227 - special case for CB in multiplication by 2. ... X25519 test vectors 227 228 - special case for CB in multiplication by 2. [OK] X25519 test vectors 227 228 - special case for CB in multiplication by 2. ... X25519 test vectors 228 229 - special case for x_2 in multiplication by 3. [OK] X25519 test vectors 228 229 - special case for x_2 in multiplication by 3. ... X25519 test vectors 229 230 - special case for x_2 in multiplication by 3. [OK] X25519 test vectors 229 230 - special case for x_2 in multiplication by 3. ... X25519 test vectors 230 231 - special case for x_2 in multiplication by 3. [OK] X25519 test vectors 230 231 - special case for x_2 in multiplication by 3. ... X25519 test vectors 231 232 - special case for x_2 in multiplication by 3. [OK] X25519 test vectors 231 232 - special case for x_2 in multiplication by 3. ... X25519 test vectors 232 233 - special case for x_2 in multiplication by 3. [OK] X25519 test vectors 232 233 - special case for x_2 in multiplication by 3. ... X25519 test vectors 233 234 - special case for x_2 in multiplication by 3. [OK] X25519 test vectors 233 234 - special case for x_2 in multiplication by 3. ... X25519 test vectors 234 235 - special case for z_2 in multiplication by 3. [OK] X25519 test vectors 234 235 - special case for z_2 in multiplication by 3. ... X25519 test vectors 235 236 - special case for z_2 in multiplication by 3. [OK] X25519 test vectors 235 236 - special case for z_2 in multiplication by 3. ... X25519 test vectors 236 237 - special case for z_2 in multiplication by 3. [OK] X25519 test vectors 236 237 - special case for z_2 in multiplication by 3. ... X25519 test vectors 237 238 - special case for DA - CB in multiplication by 3. [OK] X25519 test vectors 237 238 - special case for DA - CB in multiplication by 3. ... X25519 test vectors 238 239 - special case for DA - CB in multiplication by 3. [OK] X25519 test vectors 238 239 - special case for DA - CB in multiplication by 3. ... X25519 test vectors 239 240 - special case for BB in multiplication by 3. [OK] X25519 test vectors 239 240 - special case for BB in multiplication by 3. ... X25519 test vectors 240 241 - special case for BB in multiplication by 3. [OK] X25519 test vectors 240 241 - special case for BB in multiplication by 3. ... X25519 test vectors 241 242 - special case for BB in multiplication by 3. [OK] X25519 test vectors 241 242 - special case for BB in multiplication by 3. ... X25519 test vectors 242 243 - special case for BB in multiplication by 3. [OK] X25519 test vectors 242 243 - special case for BB in multiplication by 3. ... X25519 test vectors 243 244 - special case for E in multiplication by 3. [OK] X25519 test vectors 243 244 - special case for E in multiplication by 3. ... X25519 test vectors 244 245 - special case for E in multiplication by 3. [OK] X25519 test vectors 244 245 - special case for E in multiplication by 3. ... X25519 test vectors 245 246 - special case for E in multiplication by 3. [OK] X25519 test vectors 245 246 - special case for E in multiplication by 3. ... X25519 test vectors 246 247 - special case for E in multiplication by 3. [OK] X25519 test vectors 246 247 - special case for E in multiplication by 3. ... X25519 test vectors 247 248 - special case for E in multiplication by 3. [OK] X25519 test vectors 247 248 - special case for E in multiplication by 3. ... X25519 test vectors 248 249 - special case for E in multiplication by 3. [OK] X25519 test vectors 248 249 - special case for E in multiplication by 3. ... X25519 test vectors 249 250 - special case for E in multiplication by 3. [OK] X25519 test vectors 249 250 - special case for E in multiplication by 3. ... X25519 test vectors 250 251 - special case for AA in multiplication by 3. [OK] X25519 test vectors 250 251 - special case for AA in multiplication by 3. ... X25519 test vectors 251 252 - special case for AA in multiplication by 3. [OK] X25519 test vectors 251 252 - special case for AA in multiplication by 3. ... X25519 test vectors 252 253 - special case for AA in multiplication by 3. [OK] X25519 test vectors 252 253 - special case for AA in multiplication by 3. ... X25519 test vectors 253 254 - special case for AA in multiplication by 3. [OK] X25519 test vectors 253 254 - special case for AA in multiplication by 3. ... X25519 test vectors 254 255 - special case for AA in multiplication by 3. [OK] X25519 test vectors 254 255 - special case for AA in multiplication by 3. ... X25519 test vectors 255 256 - special case for AA in multiplication by 3. [OK] X25519 test vectors 255 256 - special case for AA in multiplication by 3. ... X25519 test vectors 256 257 - special case for AA in multiplication by 3. [OK] X25519 test vectors 256 257 - special case for AA in multiplication by 3. ... X25519 test vectors 257 258 - special case for AA in multiplication by 3. [OK] X25519 test vectors 257 258 - special case for AA in multiplication by 3. ... X25519 test vectors 258 259 - special case for D in multiplication by 4. [OK] X25519 test vectors 258 259 - special case for D in multiplication by 4. ... X25519 test vectors 259 260 - special case for D in multiplication by 4. [OK] X25519 test vectors 259 260 - special case for D in multiplication by 4. ... X25519 test vectors 260 261 - special case for D in multiplication by 4. [OK] X25519 test vectors 260 261 - special case for D in multiplication by 4. ... X25519 test vectors 261 262 - special case for D in multiplication by 4. [OK] X25519 test vectors 261 262 - special case for D in multiplication by 4. ... X25519 test vectors 262 263 - special case for D in multiplication by 4. [OK] X25519 test vectors 262 263 - special case for D in multiplication by 4. ... X25519 test vectors 263 264 - special case for D in multiplication by 4. [OK] X25519 test vectors 263 264 - special case for D in multiplication by 4. ... X25519 test vectors 264 265 - special case for D in multiplication by 4. [OK] X25519 test vectors 264 265 - special case for D in multiplication by 4. ... X25519 test vectors 265 266 - special case for D in multiplication by 4. [OK] X25519 test vectors 265 266 - special case for D in multiplication by 4. ... X25519 test vectors 266 267 - special case for E in multiplication by 4. [OK] X25519 test vectors 266 267 - special case for E in multiplication by 4. ... X25519 test vectors 267 268 - special case for E in multiplication by 4. [OK] X25519 test vectors 267 268 - special case for E in multiplication by 4. ... X25519 test vectors 268 269 - special case for E in multiplication by 4. [OK] X25519 test vectors 268 269 - special case for E in multiplication by 4. ... X25519 test vectors 269 270 - special case for E in multiplication by 4. [OK] X25519 test vectors 269 270 - special case for E in multiplication by 4. ... X25519 test vectors 270 271 - special case for B in multiplication by 4. [OK] X25519 test vectors 270 271 - special case for B in multiplication by 4. ... X25519 test vectors 271 272 - special case for B in multiplication by 4. [OK] X25519 test vectors 271 272 - special case for B in multiplication by 4. ... X25519 test vectors 272 273 - special case for B in multiplication by 4. [OK] X25519 test vectors 272 273 - special case for B in multiplication by 4. ... X25519 test vectors 273 274 - special case for B in multiplication by 4. [OK] X25519 test vectors 273 274 - special case for B in multiplication by 4. ... X25519 test vectors 274 275 - special case for B in multiplication by 4. [OK] X25519 test vectors 274 275 - special case for B in multiplication by 4. ... X25519 test vectors 275 276 - special case for B in multiplication by 4. [OK] X25519 test vectors 275 276 - special case for B in multiplication by 4. ... X25519 test vectors 276 277 - special case for B in multiplication by 4. [OK] X25519 test vectors 276 277 - special case for B in multiplication by 4. ... X25519 test vectors 277 278 - special case for B in multiplication by 4. [OK] X25519 test vectors 277 278 - special case for B in multiplication by 4. ... X25519 test vectors 278 279 - special case for BB in multiplication by 4. [OK] X25519 test vectors 278 279 - special case for BB in multiplication by 4. ... X25519 test vectors 279 280 - special case for BB in multiplication by 4. [OK] X25519 test vectors 279 280 - special case for BB in multiplication by 4. ... X25519 test vectors 280 281 - special case for BB in multiplication by 4. [OK] X25519 test vectors 280 281 - special case for BB in multiplication by 4. ... X25519 test vectors 281 282 - special case for BB in multiplication by 4. [OK] X25519 test vectors 281 282 - special case for BB in multiplication by 4. ... X25519 test vectors 282 283 - special case for BB in multiplication by 4. [OK] X25519 test vectors 282 283 - special case for BB in multiplication by 4. ... X25519 test vectors 283 284 - special case for x_2 in multiplication by 4. [OK] X25519 test vectors 283 284 - special case for x_2 in multiplication by 4. ... X25519 test vectors 284 285 - special case for x_2 in multiplication by 4. [OK] X25519 test vectors 284 285 - special case for x_2 in multiplication by 4. ... X25519 test vectors 285 286 - special case for x_2 in multiplication by 4. [OK] X25519 test vectors 285 286 - special case for x_2 in multiplication by 4. ... X25519 test vectors 286 287 - special case for x_2 in multiplication by 4. [OK] X25519 test vectors 286 287 - special case for x_2 in multiplication by 4. ... X25519 test vectors 287 288 - special case for x_2 in multiplication by 4. [OK] X25519 test vectors 287 288 - special case for x_2 in multiplication by 4. ... X25519 test vectors 288 289 - special case for x_2 in multiplication by 4. [OK] X25519 test vectors 288 289 - special case for x_2 in multiplication by 4. ... X25519 test vectors 289 290 - special case for x_2 in multiplication by 4. [OK] X25519 test vectors 289 290 - special case for x_2 in multiplication by 4. ... X25519 test vectors 290 291 - special case for x_2 in multiplication by 4. [OK] X25519 test vectors 290 291 - special case for x_2 in multiplication by 4. ... X25519 test vectors 291 292 - special case for x_2 in multiplication by 4. [OK] X25519 test vectors 291 292 - special case for x_2 in multiplication by 4. ... X25519 test vectors 292 293 - special case for x_2 in multiplication by 4. [OK] X25519 test vectors 292 293 - special case for x_2 in multiplication by 4. ... X25519 test vectors 293 294 - special case for DA + CB in multiplication by 4. [OK] X25519 test vectors 293 294 - special case for DA + CB in multiplication by 4. ... X25519 test vectors 294 295 - special case for DA + CB in multiplication by 4. [OK] X25519 test vectors 294 295 - special case for DA + CB in multiplication by 4. ... X25519 test vectors 295 296 - special case for DA + CB in multiplication by 4. [OK] X25519 test vectors 295 296 - special case for DA + CB in multiplication by 4. ... X25519 test vectors 296 297 - special case for A in multiplication by 4. [OK] X25519 test vectors 296 297 - special case for A in multiplication by 4. ... X25519 test vectors 297 298 - special case for A in multiplication by 4. [OK] X25519 test vectors 297 298 - special case for A in multiplication by 4. ... X25519 test vectors 298 299 - special case for A in multiplication by 4. [OK] X25519 test vectors 298 299 - special case for A in multiplication by 4. ... X25519 test vectors 299 300 - special case for A in multiplication by 4. [OK] X25519 test vectors 299 300 - special case for A in multiplication by 4. ... X25519 test vectors 300 301 - special case for DA - CB in multiplication by 4. [OK] X25519 test vectors 300 301 - special case for DA - CB in multiplication by 4. ... X25519 test vectors 301 302 - special case for DA - CB in multiplication by 4. [OK] X25519 test vectors 301 302 - special case for DA - CB in multiplication by 4. ... X25519 test vectors 302 303 - special case for DA - CB in multiplication by 4. [OK] X25519 test vectors 302 303 - special case for DA - CB in multiplication by 4. ... X25519 test vectors 303 304 - special case for DA - CB in multiplication by 4. [OK] X25519 test vectors 303 304 - special case for DA - CB in multiplication by 4. ... X25519 test vectors 304 305 - special case for DA - CB in multiplication by 4. [OK] X25519 test vectors 304 305 - special case for DA - CB in multiplication by 4. ... X25519 test vectors 305 306 - special case for C in multiplication by 4. [OK] X25519 test vectors 305 306 - special case for C in multiplication by 4. ... X25519 test vectors 306 307 - special case for C in multiplication by 4. [OK] X25519 test vectors 306 307 - special case for C in multiplication by 4. ... X25519 test vectors 307 308 - special case for C in multiplication by 4. [OK] X25519 test vectors 307 308 - special case for C in multiplication by 4. ... X25519 test vectors 308 309 - special case for C in multiplication by 4. [OK] X25519 test vectors 308 309 - special case for C in multiplication by 4. ... X25519 test vectors 309 310 - special case for z_2 in multiplication by 4. [OK] X25519 test vectors 309 310 - special case for z_2 in multiplication by 4. ... X25519 test vectors 310 311 - special case for z_2 in multiplication by 4. [OK] X25519 test vectors 310 311 - special case for z_2 in multiplication by 4. ... X25519 test vectors 311 312 - special case for z_2 in multiplication by 4. [OK] X25519 test vectors 311 312 - special case for z_2 in multiplication by 4. ... X25519 test vectors 312 313 - special case for CB in multiplication by 4. [OK] X25519 test vectors 312 313 - special case for CB in multiplication by 4. ... X25519 test vectors 313 314 - special case for CB in multiplication by 4. [OK] X25519 test vectors 313 314 - special case for CB in multiplication by 4. ... X25519 test vectors 314 315 - special case for CB in multiplication by 4. [OK] X25519 test vectors 314 315 - special case for CB in multiplication by 4. ... X25519 test vectors 315 316 - special case for CB in multiplication by 4. [OK] X25519 test vectors 315 316 - special case for CB in multiplication by 4. ... X25519 test vectors 316 317 - special case for AA in multiplication by 4. [OK] X25519 test vectors 316 317 - special case for AA in multiplication by 4. ... X25519 test vectors 317 318 - special case for AA in multiplication by 4. [OK] X25519 test vectors 317 318 - special case for AA in multiplication by 4. ... X25519 test vectors 318 319 - special case for AA in multiplication by 4. [OK] X25519 test vectors 318 319 - special case for AA in multiplication by 4. ... X25519 test vectors 319 320 - special case for AA in multiplication by 4. [OK] X25519 test vectors 319 320 - special case for AA in multiplication by 4. ... X25519 test vectors 320 321 - special case for AA in multiplication by 4. [OK] X25519 test vectors 320 321 - special case for AA in multiplication by 4. ... X25519 test vectors 321 322 - special case for AA in multiplication by 4. [OK] X25519 test vectors 321 322 - special case for AA in multiplication by 4. ... X25519 test vectors 322 323 - special case for AA in multiplication by 4. [OK] X25519 test vectors 322 323 - special case for AA in multiplication by 4. ... X25519 test vectors 323 324 - special case for DA in multiplication by 4. [OK] X25519 test vectors 323 324 - special case for DA in multiplication by 4. ... X25519 test vectors 324 325 - special case for z_2 in multiplication by 5. [OK] X25519 test vectors 324 325 - special case for z_2 in multiplication by 5. ... X25519 test vectors 325 326 - special case for z_2 in multiplication by 5. [OK] X25519 test vectors 325 326 - special case for z_2 in multiplication by 5. ... X25519 test vectors 326 327 - special case for z_2 in multiplication by 5. [OK] X25519 test vectors 326 327 - special case for z_2 in multiplication by 5. ... X25519 test vectors 327 328 - special case for z_2 in multiplication by 5. [OK] X25519 test vectors 327 328 - special case for z_2 in multiplication by 5. ... X25519 test vectors 328 329 - special case for z_2 in multiplication by 5. [OK] X25519 test vectors 328 329 - special case for z_2 in multiplication by 5. ... X25519 test vectors 329 330 - special case for z_2 in multiplication by 5. [OK] X25519 test vectors 329 330 - special case for z_2 in multiplication by 5. ... X25519 test vectors 330 331 - special case for E in multiplication by 5. [OK] X25519 test vectors 330 331 - special case for E in multiplication by 5. ... X25519 test vectors 331 332 - special case for E in multiplication by 5. [OK] X25519 test vectors 331 332 - special case for E in multiplication by 5. ... X25519 test vectors 332 333 - special case for E in multiplication by 5. [OK] X25519 test vectors 332 333 - special case for E in multiplication by 5. ... X25519 test vectors 333 334 - special case for E in multiplication by 5. [OK] X25519 test vectors 333 334 - special case for E in multiplication by 5. ... X25519 test vectors 334 335 - special case for E in multiplication by 5. [OK] X25519 test vectors 334 335 - special case for E in multiplication by 5. ... X25519 test vectors 335 336 - special case for AA in multiplication by 5. [OK] X25519 test vectors 335 336 - special case for AA in multiplication by 5. ... X25519 test vectors 336 337 - special case for AA in multiplication by 5. [OK] X25519 test vectors 336 337 - special case for AA in multiplication by 5. ... X25519 test vectors 337 338 - special case for AA in multiplication by 5. [OK] X25519 test vectors 337 338 - special case for AA in multiplication by 5. ... X25519 test vectors 338 339 - special case for AA in multiplication by 5. [OK] X25519 test vectors 338 339 - special case for AA in multiplication by 5. ... X25519 test vectors 339 340 - special case for DA - CB in multiplication by 5. [OK] X25519 test vectors 339 340 - special case for DA - CB in multiplication by 5. ... X25519 test vectors 340 341 - special case for DA - CB in multiplication by 5. [OK] X25519 test vectors 340 341 - special case for DA - CB in multiplication by 5. ... X25519 test vectors 341 342 - special case for DA - CB in multiplication by 5. [OK] X25519 test vectors 341 342 - special case for DA - CB in multiplication by 5. ... X25519 test vectors 342 343 - special case for BB in multiplication by 5. [OK] X25519 test vectors 342 343 - special case for BB in multiplication by 5. ... X25519 test vectors 343 344 - special case for BB in multiplication by 5. [OK] X25519 test vectors 343 344 - special case for BB in multiplication by 5. ... X25519 test vectors 344 345 - special case for BB in multiplication by 5. [OK] X25519 test vectors 344 345 - special case for BB in multiplication by 5. ... X25519 test vectors 345 346 - special case for x_2 in multiplication by 5. [OK] X25519 test vectors 345 346 - special case for x_2 in multiplication by 5. ... X25519 test vectors 346 347 - special case for x_2 in multiplication by 5. [OK] X25519 test vectors 346 347 - special case for x_2 in multiplication by 5. ... X25519 test vectors 347 348 - special case for x_2 in multiplication by 5. [OK] X25519 test vectors 347 348 - special case for x_2 in multiplication by 5. ... X25519 test vectors 348 349 - special case for C in multiplication by 6. [OK] X25519 test vectors 348 349 - special case for C in multiplication by 6. ... X25519 test vectors 349 350 - special case for C in multiplication by 6. [OK] X25519 test vectors 349 350 - special case for C in multiplication by 6. ... X25519 test vectors 350 351 - special case for C in multiplication by 6. [OK] X25519 test vectors 350 351 - special case for C in multiplication by 6. ... X25519 test vectors 351 352 - special case for C in multiplication by 6. [OK] X25519 test vectors 351 352 - special case for C in multiplication by 6. ... X25519 test vectors 352 353 - special case for C in multiplication by 6. [OK] X25519 test vectors 352 353 - special case for C in multiplication by 6. ... X25519 test vectors 353 354 - special case for CB in multiplication by 6. [OK] X25519 test vectors 353 354 - special case for CB in multiplication by 6. ... X25519 test vectors 354 355 - special case for CB in multiplication by 6. [OK] X25519 test vectors 354 355 - special case for CB in multiplication by 6. ... X25519 test vectors 355 356 - special case for CB in multiplication by 6. [OK] X25519 test vectors 355 356 - special case for CB in multiplication by 6. ... X25519 test vectors 356 357 - special case for CB in multiplication by 6. [OK] X25519 test vectors 356 357 - special case for CB in multiplication by 6. ... X25519 test vectors 357 358 - special case for CB in multiplication by 6. [OK] X25519 test vectors 357 358 - special case for CB in multiplication by 6. ... X25519 test vectors 358 359 - special case for CB in multiplication by 6. [OK] X25519 test vectors 358 359 - special case for CB in multiplication by 6. ... X25519 test vectors 359 360 - special case for CB in multiplication by 6. [OK] X25519 test vectors 359 360 - special case for CB in multiplication by 6. ... X25519 test vectors 360 361 - special case for CB in multiplication by 6. [OK] X25519 test vectors 360 361 - special case for CB in multiplication by 6. ... X25519 test vectors 361 362 - special case for x_2 in multiplication by 6. [OK] X25519 test vectors 361 362 - special case for x_2 in multiplication by 6. ... X25519 test vectors 362 363 - special case for x_2 in multiplication by 6. [OK] X25519 test vectors 362 363 - special case for x_2 in multiplication by 6. ... X25519 test vectors 363 364 - special case for x_2 in multiplication by 6. [OK] X25519 test vectors 363 364 - special case for x_2 in multiplication by 6. ... X25519 test vectors 364 365 - special case for x_2 in multiplication by 6. [OK] X25519 test vectors 364 365 - special case for x_2 in multiplication by 6. ... X25519 test vectors 365 366 - special case for x_2 in multiplication by 6. [OK] X25519 test vectors 365 366 - special case for x_2 in multiplication by 6. ... X25519 test vectors 366 367 - special case for x_2 in multiplication by 6. [OK] X25519 test vectors 366 367 - special case for x_2 in multiplication by 6. ... X25519 test vectors 367 368 - special case for x_2 in multiplication by 6. [OK] X25519 test vectors 367 368 - special case for x_2 in multiplication by 6. ... X25519 test vectors 368 369 - special case for DA - CB in multiplication by 6. [OK] X25519 test vectors 368 369 - special case for DA - CB in multiplication by 6. ... X25519 test vectors 369 370 - special case for DA - CB in multiplication by 6. [OK] X25519 test vectors 369 370 - special case for DA - CB in multiplication by 6. ... X25519 test vectors 370 371 - special case for DA - CB in multiplication by 6. [OK] X25519 test vectors 370 371 - special case for DA - CB in multiplication by 6. ... X25519 test vectors 371 372 - special case for DA - CB in multiplication by 6. [OK] X25519 test vectors 371 372 - special case for DA - CB in multiplication by 6. ... X25519 test vectors 372 373 - special case for DA - CB in multiplication by 6. [OK] X25519 test vectors 372 373 - special case for DA - CB in multiplication by 6. ... X25519 test vectors 373 374 - special case for DA + CB in multiplication by 6. [OK] X25519 test vectors 373 374 - special case for DA + CB in multiplication by 6. ... X25519 test vectors 374 375 - special case for DA + CB in multiplication by 6. [OK] X25519 test vectors 374 375 - special case for DA + CB in multiplication by 6. ... X25519 test vectors 375 376 - special case for DA + CB in multiplication by 6. [OK] X25519 test vectors 375 376 - special case for DA + CB in multiplication by 6. ... X25519 test vectors 376 377 - special case for DA + CB in multiplication by 6. [OK] X25519 test vectors 376 377 - special case for DA + CB in multiplication by 6. ... X25519 test vectors 377 378 - special case for DA + CB in multiplication by 6. [OK] X25519 test vectors 377 378 - special case for DA + CB in multiplication by 6. ... X25519 test vectors 378 379 - special case for DA + CB in multiplication by 6. [OK] X25519 test vectors 378 379 - special case for DA + CB in multiplication by 6. ... X25519 test vectors 379 380 - special case for DA + CB in multiplication by 6. [OK] X25519 test vectors 379 380 - special case for DA + CB in multiplication by 6. ... X25519 test vectors 380 381 - special case for z_2 in multiplication by 6. [OK] X25519 test vectors 380 381 - special case for z_2 in multiplication by 6. ... X25519 test vectors 381 382 - special case for z_2 in multiplication by 6. [OK] X25519 test vectors 381 382 - special case for z_2 in multiplication by 6. ... X25519 test vectors 382 383 - special case for z_2 in multiplication by 6. [OK] X25519 test vectors 382 383 - special case for z_2 in multiplication by 6. ... X25519 test vectors 383 384 - special case for z_2 in multiplication by 6. [OK] X25519 test vectors 383 384 - special case for z_2 in multiplication by 6. ... X25519 test vectors 384 385 - special case for D in multiplication by 6. [OK] X25519 test vectors 384 385 - special case for D in multiplication by 6. ... X25519 test vectors 385 386 - special case for D in multiplication by 6. [OK] X25519 test vectors 385 386 - special case for D in multiplication by 6. ... X25519 test vectors 386 387 - special case for D in multiplication by 6. [OK] X25519 test vectors 386 387 - special case for D in multiplication by 6. ... X25519 test vectors 387 388 - special case for D in multiplication by 6. [OK] X25519 test vectors 387 388 - special case for D in multiplication by 6. ... X25519 test vectors 388 389 - special case for DA in multiplication by 6. [OK] X25519 test vectors 388 389 - special case for DA in multiplication by 6. ... X25519 test vectors 389 390 - special case for DA in multiplication by 6. [OK] X25519 test vectors 389 390 - special case for DA in multiplication by 6. ... X25519 test vectors 390 391 - special case for DA in multiplication by 6. [OK] X25519 test vectors 390 391 - special case for DA in multiplication by 6. ... X25519 test vectors 391 392 - special case for DA in multiplication by 6. [OK] X25519 test vectors 391 392 - special case for DA in multiplication by 6. ... X25519 test vectors 392 393 - special case for z_2 in multiplication by 7. [OK] X25519 test vectors 392 393 - special case for z_2 in multiplication by 7. ... X25519 test vectors 393 394 - special case for z_2 in multiplication by 7. [OK] X25519 test vectors 393 394 - special case for z_2 in multiplication by 7. ... X25519 test vectors 394 395 - special case for z_2 in multiplication by 7. [OK] X25519 test vectors 394 395 - special case for z_2 in multiplication by 7. ... X25519 test vectors 395 396 - special case for z_2 in multiplication by 7. [OK] X25519 test vectors 395 396 - special case for z_2 in multiplication by 7. ... X25519 test vectors 396 397 - special case for z_2 in multiplication by 7. [OK] X25519 test vectors 396 397 - special case for z_2 in multiplication by 7. ... X25519 test vectors 397 398 - special case for BB in multiplication by 7. [OK] X25519 test vectors 397 398 - special case for BB in multiplication by 7. ... X25519 test vectors 398 399 - special case for BB in multiplication by 7. [OK] X25519 test vectors 398 399 - special case for BB in multiplication by 7. ... X25519 test vectors 399 400 - special case for BB in multiplication by 7. [OK] X25519 test vectors 399 400 - special case for BB in multiplication by 7. ... X25519 test vectors 400 401 - special case for E in multiplication by 7. [OK] X25519 test vectors 400 401 - special case for E in multiplication by 7. ... X25519 test vectors 401 402 - special case for E in multiplication by 7. [OK] X25519 test vectors 401 402 - special case for E in multiplication by 7. ... X25519 test vectors 402 403 - special case for E in multiplication by 7. [OK] X25519 test vectors 402 403 - special case for E in multiplication by 7. ... X25519 test vectors 403 404 - special case for E in multiplication by 7. [OK] X25519 test vectors 403 404 - special case for E in multiplication by 7. ... X25519 test vectors 404 405 - special case for AA in multiplication by 7. [OK] X25519 test vectors 404 405 - special case for AA in multiplication by 7. ... X25519 test vectors 405 406 - special case for AA in multiplication by 7. [OK] X25519 test vectors 405 406 - special case for AA in multiplication by 7. ... X25519 test vectors 406 407 - special case for AA in multiplication by 7. [OK] X25519 test vectors 406 407 - special case for AA in multiplication by 7. ... X25519 test vectors 407 408 - special case for AA in multiplication by 7. [OK] X25519 test vectors 407 408 - special case for AA in multiplication by 7. ... X25519 test vectors 408 409 - special case for AA in multiplication by 7. [OK] X25519 test vectors 408 409 - special case for AA in multiplication by 7. ... X25519 test vectors 409 410 - special case for AA in multiplication by 7. [OK] X25519 test vectors 409 410 - special case for AA in multiplication by 7. ... X25519 test vectors 410 411 - special case for AA in multiplication by 7. [OK] X25519 test vectors 410 411 - special case for AA in multiplication by 7. ... X25519 test vectors 411 412 - special case for x_2 in multiplication by 7. [OK] X25519 test vectors 411 412 - special case for x_2 in multiplication by 7. ... X25519 test vectors 412 413 - special case for x_2 in multiplication by 7. [OK] X25519 test vectors 412 413 - special case for x_2 in multiplication by 7. ... X25519 test vectors 413 414 - special case for x_2 in multiplication by 7. [OK] X25519 test vectors 413 414 - special case for x_2 in multiplication by 7. ... X25519 test vectors 414 415 - special case for x_2 in multiplication by 7. [OK] X25519 test vectors 414 415 - special case for x_2 in multiplication by 7. ... X25519 test vectors 415 416 - special case for x_2 in multiplication by 7. [OK] X25519 test vectors 415 416 - special case for x_2 in multiplication by 7. ... X25519 test vectors 416 417 - special case for x_2 in multiplication by 7. [OK] X25519 test vectors 416 417 - special case for x_2 in multiplication by 7. ... X25519 test vectors 417 418 - special case for x_2 in multiplication by 7. [OK] X25519 test vectors 417 418 - special case for x_2 in multiplication by 7. ... X25519 test vectors 418 419 - special case for x_2 in multiplication by 7. [OK] X25519 test vectors 418 419 - special case for x_2 in multiplication by 7. ... X25519 test vectors 419 420 - special case for x_2 in multiplication by 7. [OK] X25519 test vectors 419 420 - special case for x_2 in multiplication by 7. ... X25519 test vectors 420 421 - special case for DA - CB in multiplication by 7. [OK] X25519 test vectors 420 421 - special case for DA - CB in multiplication by 7. ... X25519 test vectors 421 422 - special case for DA - CB in multiplication by 7. [OK] X25519 test vectors 421 422 - special case for DA - CB in multiplication by 7. ... X25519 test vectors 422 423 - special case for DA - CB in multiplication by 7. [OK] X25519 test vectors 422 423 - special case for DA - CB in multiplication by 7. ... X25519 test vectors 423 424 - special case for DA - CB in multiplication by 7. [OK] X25519 test vectors 423 424 - special case for DA - CB in multiplication by 7. ... X25519 test vectors 424 425 - special case for D in multiplication by 8. [OK] X25519 test vectors 424 425 - special case for D in multiplication by 8. ... X25519 test vectors 425 426 - special case for D in multiplication by 8. [OK] X25519 test vectors 425 426 - special case for D in multiplication by 8. ... X25519 test vectors 426 427 - special case for D in multiplication by 8. [OK] X25519 test vectors 426 427 - special case for D in multiplication by 8. ... X25519 test vectors 427 428 - special case for DA + CB in multiplication by 8. [OK] X25519 test vectors 427 428 - special case for DA + CB in multiplication by 8. ... X25519 test vectors 428 429 - special case for DA + CB in multiplication by 8. [OK] X25519 test vectors 428 429 - special case for DA + CB in multiplication by 8. ... X25519 test vectors 429 430 - special case for DA + CB in multiplication by 8. [OK] X25519 test vectors 429 430 - special case for DA + CB in multiplication by 8. ... X25519 test vectors 430 431 - special case for DA + CB in multiplication by 8. [OK] X25519 test vectors 430 431 - special case for DA + CB in multiplication by 8. ... X25519 test vectors 431 432 - special case for DA + CB in multiplication by 8. [OK] X25519 test vectors 431 432 - special case for DA + CB in multiplication by 8. ... X25519 test vectors 432 433 - special case for DA + CB in multiplication by 8. [OK] X25519 test vectors 432 433 - special case for DA + CB in multiplication by 8. ... X25519 test vectors 433 434 - special case for DA + CB in multiplication by 8. [OK] X25519 test vectors 433 434 - special case for DA + CB in multiplication by 8. ... X25519 test vectors 434 435 - special case for DA + CB in multiplication by 8. [OK] X25519 test vectors 434 435 - special case for DA + CB in multiplication by 8. ... X25519 test vectors 435 436 - special case for AA in multiplication by 8. [OK] X25519 test vectors 435 436 - special case for AA in multiplication by 8. ... X25519 test vectors 436 437 - special case for AA in multiplication by 8. [OK] X25519 test vectors 436 437 - special case for AA in multiplication by 8. ... X25519 test vectors 437 438 - special case for AA in multiplication by 8. [OK] X25519 test vectors 437 438 - special case for AA in multiplication by 8. ... X25519 test vectors 438 439 - special case for z_2 in multiplication by 8. [OK] X25519 test vectors 438 439 - special case for z_2 in multiplication by 8. ... X25519 test vectors 439 440 - special case for z_2 in multiplication by 8. [OK] X25519 test vectors 439 440 - special case for z_2 in multiplication by 8. ... X25519 test vectors 440 441 - special case for z_2 in multiplication by 8. [OK] X25519 test vectors 440 441 - special case for z_2 in multiplication by 8. ... X25519 test vectors 441 442 - special case for B in multiplication by 8. [OK] X25519 test vectors 441 442 - special case for B in multiplication by 8. ... X25519 test vectors 442 443 - special case for B in multiplication by 8. [OK] X25519 test vectors 442 443 - special case for B in multiplication by 8. ... X25519 test vectors 443 444 - special case for B in multiplication by 8. [OK] X25519 test vectors 443 444 - special case for B in multiplication by 8. ... X25519 test vectors 444 445 - special case for C in multiplication by 8. [OK] X25519 test vectors 444 445 - special case for C in multiplication by 8. ... X25519 test vectors 445 446 - special case for C in multiplication by 8. [OK] X25519 test vectors 445 446 - special case for C in multiplication by 8. ... X25519 test vectors 446 447 - special case for C in multiplication by 8. [OK] X25519 test vectors 446 447 - special case for C in multiplication by 8. ... X25519 test vectors 447 448 - special case for C in multiplication by 8. [OK] X25519 test vectors 447 448 - special case for C in multiplication by 8. ... X25519 test vectors 448 449 - special case for x_2 in multiplication by 8. [OK] X25519 test vectors 448 449 - special case for x_2 in multiplication by 8. ... X25519 test vectors 449 450 - special case for x_2 in multiplication by 8. [OK] X25519 test vectors 449 450 - special case for x_2 in multiplication by 8. ... X25519 test vectors 450 451 - special case for x_2 in multiplication by 8. [OK] X25519 test vectors 450 451 - special case for x_2 in multiplication by 8. ... X25519 test vectors 451 452 - special case for x_2 in multiplication by 8. [OK] X25519 test vectors 451 452 - special case for x_2 in multiplication by 8. ... X25519 test vectors 452 453 - special case for x_2 in multiplication by 8. [OK] X25519 test vectors 452 453 - special case for x_2 in multiplication by 8. ... X25519 test vectors 453 454 - special case for x_2 in multiplication by 8. [OK] X25519 test vectors 453 454 - special case for x_2 in multiplication by 8. ... X25519 test vectors 454 455 - special case for x_2 in multiplication by 8. [OK] X25519 test vectors 454 455 - special case for x_2 in multiplication by 8. ... X25519 test vectors 455 456 - special case for x_2 in multiplication by 8. [OK] X25519 test vectors 455 456 - special case for x_2 in multiplication by 8. ... X25519 test vectors 456 457 - special case for x_2 in multiplication by 8. [OK] X25519 test vectors 456 457 - special case for x_2 in multiplication by 8. ... X25519 test vectors 457 458 - special case for x_2 in multiplication by 8. [OK] X25519 test vectors 457 458 - special case for x_2 in multiplication by 8. ... X25519 test vectors 458 459 - special case for x_2 in multiplication by 8. [OK] X25519 test vectors 458 459 - special case for x_2 in multiplication by 8. ... X25519 test vectors 459 460 - special case for x_2 in multiplication by 8. [OK] X25519 test vectors 459 460 - special case for x_2 in multiplication by 8. ... X25519 test vectors 460 461 - special case for x_2 in multiplication by 8. [OK] X25519 test vectors 460 461 - special case for x_2 in multiplication by 8. ... X25519 test vectors 461 462 - special case for x_2 in multiplication by 8. [OK] X25519 test vectors 461 462 - special case for x_2 in multiplication by 8. ... X25519 test vectors 462 463 - special case for E in multiplication by 8. [OK] X25519 test vectors 462 463 - special case for E in multiplication by 8. ... X25519 test vectors 463 464 - special case for E in multiplication by 8. [OK] X25519 test vectors 463 464 - special case for E in multiplication by 8. ... X25519 test vectors 464 465 - special case for E in multiplication by 8. [OK] X25519 test vectors 464 465 - special case for E in multiplication by 8. ... X25519 test vectors 465 466 - special case for E in multiplication by 8. [OK] X25519 test vectors 465 466 - special case for E in multiplication by 8. ... X25519 test vectors 466 467 - special case for E in multiplication by 8. [OK] X25519 test vectors 466 467 - special case for E in multiplication by 8. ... X25519 test vectors 467 468 - special case for E in multiplication by 8. [OK] X25519 test vectors 467 468 - special case for E in multiplication by 8. ... X25519 test vectors 468 469 - special case for E in multiplication by 8. [OK] X25519 test vectors 468 469 - special case for E in multiplication by 8. ... X25519 test vectors 469 470 - special case for E in multiplication by 8. [OK] X25519 test vectors 469 470 - special case for E in multiplication by 8. ... X25519 test vectors 470 471 - special case for E in multiplication by 8. [OK] X25519 test vectors 470 471 - special case for E in multiplication by 8. ... X25519 test vectors 471 472 - special case for DA - CB in multiplication by 8. [OK] X25519 test vectors 471 472 - special case for DA - CB in multiplication by 8. ... X25519 test vectors 472 473 - special case for DA - CB in multiplication by 8. [OK] X25519 test vectors 472 473 - special case for DA - CB in multiplication by 8. ... X25519 test vectors 473 474 - special case for DA - CB in multiplication by 8. [OK] X25519 test vectors 473 474 - special case for DA - CB in multiplication by 8. ... X25519 test vectors 474 475 - special case for DA - CB in multiplication by 8. [OK] X25519 test vectors 474 475 - special case for DA - CB in multiplication by 8. ... X25519 test vectors 475 476 - special case for DA - CB in multiplication by 8. [OK] X25519 test vectors 475 476 - special case for DA - CB in multiplication by 8. ... X25519 test vectors 476 477 - special case for CB in multiplication by 8. [OK] X25519 test vectors 476 477 - special case for CB in multiplication by 8. ... X25519 test vectors 477 478 - special case for CB in multiplication by 8. [OK] X25519 test vectors 477 478 - special case for CB in multiplication by 8. ... X25519 test vectors 478 479 - special case for BB in multiplication by 8. [OK] X25519 test vectors 478 479 - special case for BB in multiplication by 8. ... X25519 test vectors 479 480 - special case for BB in multiplication by 8. [OK] X25519 test vectors 479 480 - special case for BB in multiplication by 8. ... X25519 test vectors 480 481 - special case for BB in multiplication by 8. [OK] X25519 test vectors 480 481 - special case for BB in multiplication by 8. ... X25519 test vectors 481 482 - special case for BB in multiplication by 8. [OK] X25519 test vectors 481 482 - special case for BB in multiplication by 8. ... X25519 test vectors 482 483 - special case for A in multiplication by 8. [OK] X25519 test vectors 482 483 - special case for A in multiplication by 8. ... X25519 test vectors 483 484 - special case for A in multiplication by 8. [OK] X25519 test vectors 483 484 - special case for A in multiplication by 8. ... X25519 test vectors 484 485 - special case for DA in multiplication by 8. [OK] X25519 test vectors 484 485 - special case for DA in multiplication by 8. ... X25519 test vectors 485 486 - special case for DA in multiplication by 8. [OK] X25519 test vectors 485 486 - special case for DA in multiplication by 8. ... X25519 test vectors 486 487 - special case for AA in multiplication by 9. [OK] X25519 test vectors 486 487 - special case for AA in multiplication by 9. ... X25519 test vectors 487 488 - special case for AA in multiplication by 9. [OK] X25519 test vectors 487 488 - special case for AA in multiplication by 9. ... X25519 test vectors 488 489 - special case for AA in multiplication by 9. [OK] X25519 test vectors 488 489 - special case for AA in multiplication by 9. ... X25519 test vectors 489 490 - special case for AA in multiplication by 9. [OK] X25519 test vectors 489 490 - special case for AA in multiplication by 9. ... X25519 test vectors 490 491 - special case for AA in multiplication by 9. [OK] X25519 test vectors 490 491 - special case for AA in multiplication by 9. ... X25519 test vectors 491 492 - special case for AA in multiplication by 9. [OK] X25519 test vectors 491 492 - special case for AA in multiplication by 9. ... X25519 test vectors 492 493 - special case for AA in multiplication by 9. [OK] X25519 test vectors 492 493 - special case for AA in multiplication by 9. ... X25519 test vectors 493 494 - special case for DA - CB in multiplication by 9. [OK] X25519 test vectors 493 494 - special case for DA - CB in multiplication by 9. ... X25519 test vectors 494 495 - special case for z_2 in multiplication by 9. [OK] X25519 test vectors 494 495 - special case for z_2 in multiplication by 9. ... X25519 test vectors 495 496 - special case for z_2 in multiplication by 9. [OK] X25519 test vectors 495 496 - special case for z_2 in multiplication by 9. ... X25519 test vectors 496 497 - special case for z_2 in multiplication by 9. [OK] X25519 test vectors 496 497 - special case for z_2 in multiplication by 9. ... X25519 test vectors 497 498 - special case for z_2 in multiplication by 9. [OK] X25519 test vectors 497 498 - special case for z_2 in multiplication by 9. ... X25519 test vectors 498 499 - special case for z_2 in multiplication by 9. [OK] X25519 test vectors 498 499 - special case for z_2 in multiplication by 9. ... X25519 test vectors 499 500 - special case for z_2 in multiplication by 9. [OK] X25519 test vectors 499 500 - special case for z_2 in multiplication by 9. ... X25519 test vectors 500 501 - special case for E in multiplication by 9. [OK] X25519 test vectors 500 501 - special case for E in multiplication by 9. ... X25519 test vectors 501 502 - special case for E in multiplication by 9. [OK] X25519 test vectors 501 502 - special case for E in multiplication by 9. ... X25519 test vectors 502 503 - special case for E in multiplication by 9. [OK] X25519 test vectors 502 503 - special case for E in multiplication by 9. ... X25519 test vectors 503 504 - special case for x_2 in multiplication by 9. [OK] X25519 test vectors 503 504 - special case for x_2 in multiplication by 9. ... X25519 test vectors 504 505 - special case for x_2 in multiplication by 9. [OK] X25519 test vectors 504 505 - special case for x_2 in multiplication by 9. ... X25519 test vectors 505 506 - special case for x_2 in multiplication by 9. [OK] X25519 test vectors 505 506 - special case for x_2 in multiplication by 9. ... X25519 test vectors 506 507 - special case for BB in multiplication by 9. [OK] X25519 test vectors 506 507 - special case for BB in multiplication by 9. ... X25519 test vectors 507 508 - special case for BB in multiplication by 9. [OK] X25519 test vectors 507 508 - special case for BB in multiplication by 9. ... X25519 test vectors 508 509 - special case for BB in multiplication by 9. [OK] X25519 test vectors 508 509 - special case for BB in multiplication by 9. ... X25519 test vectors 509 510 - special case for BB in multiplication by 9. [OK] X25519 test vectors 509 510 - special case for BB in multiplication by 9. ... X25519 test vectors 510 511 - private key == -1 (mod order). [OK] X25519 test vectors 510 511 - private key == -1 (mod order). ... X25519 test vectors 511 512 - private key == 1 (mod order) on twist. [OK] X25519 test vectors 511 512 - private key == 1 (mod order) on twist. ... X25519 test vectors 512 513 - special case private key. [OK] X25519 test vectors 512 513 - special case private key. ... X25519 test vectors 513 514 - special case private key. [OK] X25519 test vectors 513 514 - special case private key. ... X25519 test vectors 514 515 - special case private key. [OK] X25519 test vectors 514 515 - special case private key. ... X25519 test vectors 515 516 - special case private key. [OK] X25519 test vectors 515 516 - special case private key. ... X25519 test vectors 516 517 - special case private key. [OK] X25519 test vectors 516 517 - special case private key. ... X25519 test vectors 517 518 - special case private key. [OK] X25519 test vectors 517 518 - special case private key. ... ED25519 test vectors 0 1 - . [OK] ED25519 test vectors 0 1 - . ... ED25519 test vectors 1 2 - . [OK] ED25519 test vectors 1 2 - . ... ED25519 test vectors 2 3 - . [OK] ED25519 test vectors 2 3 - . ... ED25519 test vectors 3 4 - . [OK] ED25519 test vectors 3 4 - . ... ED25519 test vectors 4 5 - . [OK] ED25519 test vectors 4 5 - . ... ED25519 test vectors 5 6 - . [OK] ED25519 test vectors 5 6 - . ... ED25519 test vectors 6 7 - . [OK] ED25519 test vectors 6 7 - . ... ED25519 test vectors 7 8 - . [OK] ED25519 test vectors 7 8 - . ... ED25519 test vectors 8 9 - . [OK] ED25519 test vectors 8 9 - . ... ED25519 test vectors 9 10 - special values for r and s. [OK] ED25519 test vectors 9 10 - special values for r and s. ... ED25519 test vectors 10 11 - special values for r and s. [OK] ED25519 test vectors 10 11 - special values for r and s. ... ED25519 test vectors 11 12 - special values for r and s. [OK] ED25519 test vectors 11 12 - special values for r and s. ... ED25519 test vectors 12 13 - special values for r and s. [OK] ED25519 test vectors 12 13 - special values for r and s. ... ED25519 test vectors 13 14 - special values for r and s. [OK] ED25519 test vectors 13 14 - special values for r and s. ... ED25519 test vectors 14 15 - special values for r and s. [OK] ED25519 test vectors 14 15 - special values for r and s. ... ED25519 test vectors 15 16 - special values for r and s. [OK] ED25519 test vectors 15 16 - special values for r and s. ... ED25519 test vectors 16 17 - special values for r and s. [OK] ED25519 test vectors 16 17 - special values for r and s. ... ED25519 test vectors 17 18 - special values for r and s. [OK] ED25519 test vectors 17 18 - special values for r and s. ... ED25519 test vectors 18 19 - special values for r and s. [OK] ED25519 test vectors 18 19 - special values for r and s. ... ED25519 test vectors 19 20 - special values for r and s. [OK] ED25519 test vectors 19 20 - special values for r and s. ... ED25519 test vectors 20 21 - special values for r and s. [OK] ED25519 test vectors 20 21 - special values for r and s. ... ED25519 test vectors 21 22 - special values for r and s. [OK] ED25519 test vectors 21 22 - special values for r and s. ... ED25519 test vectors 22 23 - special values for r and s. [OK] ED25519 test vectors 22 23 - special values for r and s. ... ED25519 test vectors 23 24 - special values for r and s. [OK] ED25519 test vectors 23 24 - special values for r and s. ... ED25519 test vectors 24 25 - special values for r and s. [OK] ED25519 test vectors 24 25 - special values for r and s. ... ED25519 test vectors 25 26 - special values for r and s. [OK] ED25519 test vectors 25 26 - special values for r and s. ... ED25519 test vectors 26 27 - special values for r and s. [OK] ED25519 test vectors 26 27 - special values for r and s. ... ED25519 test vectors 27 28 - special values for r and s. [OK] ED25519 test vectors 27 28 - special values for r and s. ... ED25519 test vectors 28 29 - special values for r and s. [OK] ED25519 test vectors 28 29 - special values for r and s. ... ED25519 test vectors 29 30 - empty signature. [OK] ED25519 test vectors 29 30 - empty signature. ... ED25519 test vectors 30 31 - s missing. [OK] ED25519 test vectors 30 31 - s missing. ... ED25519 test vectors 31 32 - signature too short. [OK] ED25519 test vectors 31 32 - signature too short. ... ED25519 test vectors 32 33 - signature too long. [OK] ED25519 test vectors 32 33 - signature too long. ... ED25519 test vectors 33 34 - include pk in signature. [OK] ED25519 test vectors 33 34 - include pk in signature. ... ED25519 test vectors 34 35 - prepending 0 byte to signature. [OK] ED25519 test vectors 34 35 - prepending 0 byte to signature. ... ED25519 test vectors 35 36 - prepending 0 byte to s. [OK] ED25519 test vectors 35 36 - prepending 0 byte to s. ... ED25519 test vectors 36 37 - appending 0 byte to signature. [OK] ED25519 test vectors 36 37 - appending 0 byte to signature. ... ED25519 test vectors 37 38 - removing 0 byte from signature. [OK] ED25519 test vectors 37 38 - removing 0 byte from signature. ... ED25519 test vectors 38 39 - removing 0 byte from signature. [OK] ED25519 test vectors 38 39 - removing 0 byte from signature. ... ED25519 test vectors 39 40 - removing leading 0 byte from signature. [OK] ED25519 test vectors 39 40 - removing leading 0 byte from signature. ... ED25519 test vectors 40 41 - dropping byte from signature. [OK] ED25519 test vectors 40 41 - dropping byte from signature. ... ED25519 test vectors 41 42 - modified bit 0 in R. [OK] ED25519 test vectors 41 42 - modified bit 0 in R. ... ED25519 test vectors 42 43 - modified bit 1 in R. [OK] ED25519 test vectors 42 43 - modified bit 1 in R. ... ED25519 test vectors 43 44 - modified bit 2 in R. [OK] ED25519 test vectors 43 44 - modified bit 2 in R. ... ED25519 test vectors 44 45 - modified bit 7 in R. [OK] ED25519 test vectors 44 45 - modified bit 7 in R. ... ED25519 test vectors 45 46 - modified bit 8 in R. [OK] ED25519 test vectors 45 46 - modified bit 8 in R. ... ED25519 test vectors 46 47 - modified bit 16 in R. [OK] ED25519 test vectors 46 47 - modified bit 16 in R. ... ED25519 test vectors 47 48 - modified bit 31 in R. [OK] ED25519 test vectors 47 48 - modified bit 31 in R. ... ED25519 test vectors 48 49 - modified bit 32 in R. [OK] ED25519 test vectors 48 49 - modified bit 32 in R. ... ED25519 test vectors 49 50 - modified bit 63 in R. [OK] ED25519 test vectors 49 50 - modified bit 63 in R. ... ED25519 test vectors 50 51 - modified bit 64 in R. [OK] ED25519 test vectors 50 51 - modified bit 64 in R. ... ED25519 test vectors 51 52 - modified bit 97 in R. [OK] ED25519 test vectors 51 52 - modified bit 97 in R. ... ED25519 test vectors 52 53 - modified bit 127 in R. [OK] ED25519 test vectors 52 53 - modified bit 127 in R. ... ED25519 test vectors 53 54 - modified bit 240 in R. [OK] ED25519 test vectors 53 54 - modified bit 240 in R. ... ED25519 test vectors 54 55 - modified bit 247 in R. [OK] ED25519 test vectors 54 55 - modified bit 247 in R. ... ED25519 test vectors 55 56 - modified bit 248 in R. [OK] ED25519 test vectors 55 56 - modified bit 248 in R. ... ED25519 test vectors 56 57 - modified bit 253 in R. [OK] ED25519 test vectors 56 57 - modified bit 253 in R. ... ED25519 test vectors 57 58 - modified bit 254 in R. [OK] ED25519 test vectors 57 58 - modified bit 254 in R. ... ED25519 test vectors 58 59 - modified bit 255 in R. [OK] ED25519 test vectors 58 59 - modified bit 255 in R. ... ED25519 test vectors 59 60 - R==0. [OK] ED25519 test vectors 59 60 - R==0. ... ED25519 test vectors 60 61 - invalid R. [OK] ED25519 test vectors 60 61 - invalid R. ... ED25519 test vectors 61 62 - all bits flipped in R. [OK] ED25519 test vectors 61 62 - all bits flipped in R. ... ED25519 test vectors 62 63 - checking malleability . [OK] ED25519 test vectors 62 63 - checking malleability . ... ED25519 test vectors 63 64 - checking malleability . [OK] ED25519 test vectors 63 64 - checking malleability . ... ED25519 test vectors 64 65 - checking malleability . [OK] ED25519 test vectors 64 65 - checking malleability . ... ED25519 test vectors 65 66 - checking malleability . [OK] ED25519 test vectors 65 66 - checking malleability . ... ED25519 test vectors 66 67 - checking malleability . [OK] ED25519 test vectors 66 67 - checking malleability . ... ED25519 test vectors 67 68 - checking malleability . [OK] ED25519 test vectors 67 68 - checking malleability . ... ED25519 test vectors 68 69 - checking malleability . [OK] ED25519 test vectors 68 69 - checking malleability . ... ED25519 test vectors 69 70 - checking malleability . [OK] ED25519 test vectors 69 70 - checking malleability . ... ED25519 test vectors 70 71 - . [OK] ED25519 test vectors 70 71 - . ... ED25519 test vectors 71 72 - . [OK] ED25519 test vectors 71 72 - . ... ED25519 test vectors 72 73 - . [OK] ED25519 test vectors 72 73 - . ... ED25519 test vectors 73 74 - . [OK] ED25519 test vectors 73 74 - . ... ED25519 test vectors 74 75 - . [OK] ED25519 test vectors 74 75 - . ... ED25519 test vectors 75 76 - . [OK] ED25519 test vectors 75 76 - . ... ED25519 test vectors 76 77 - . [OK] ED25519 test vectors 76 77 - . ... ED25519 test vectors 77 78 - . [OK] ED25519 test vectors 77 78 - . ... ED25519 test vectors 78 79 - . [OK] ED25519 test vectors 78 79 - . ... ED25519 test vectors 79 80 - draft-josefsson-eddsa-ed25519-02: Test 1. [OK] ED25519 test vectors 79 80 - draft-josefsson-eddsa-ed25519-02: Test 1. ... ED25519 test vectors 80 81 - draft-josefsson-eddsa-ed25519-02: Test 2. [OK] ED25519 test vectors 80 81 - draft-josefsson-eddsa-ed25519-02: Test 2. ... ED25519 test vectors 81 82 - draft-josefsson-eddsa-ed25519-02: Test 3. [OK] ED25519 test vectors 81 82 - draft-josefsson-eddsa-ed25519-02: Test 3. ... ED25519 test vectors 82 83 - draft-josefsson-eddsa-ed25519-02: Test 1024. [OK] ED25519 test vectors 82 83 - draft-josefsson-eddsa-ed25519-02: Test 1024. ... ED25519 test vectors 83 84 - Random test failure 1. [OK] ED25519 test vectors 83 84 - Random test failure 1. ... ED25519 test vectors 84 85 - Random test failure 2. [OK] ED25519 test vectors 84 85 - Random test failure 2. ... ED25519 test vectors 85 86 - Random test failure 24. [OK] ED25519 test vectors 85 86 - Random test failure 24. ... ED25519 test vectors 86 87 - Random test failure 3. [OK] ED25519 test vectors 86 87 - Random test failure 3. ... ED25519 test vectors 87 88 - Random test failure 20. [OK] ED25519 test vectors 87 88 - Random test failure 20. ... ED25519 test vectors 88 89 - Random test failure 4. [OK] ED25519 test vectors 88 89 - Random test failure 4. ... ED25519 test vectors 89 90 - Random test failure 5. [OK] ED25519 test vectors 89 90 - Random test failure 5. ... ED25519 test vectors 90 91 - Random test failure 8. [OK] ED25519 test vectors 90 91 - Random test failure 8. ... ED25519 test vectors 91 92 - Random test failure 10. [OK] ED25519 test vectors 91 92 - Random test failure 10. ... ED25519 test vectors 92 93 - Random test failure 12. [OK] ED25519 test vectors 92 93 - Random test failure 12. ... ED25519 test vectors 93 94 - Random test failure 15. [OK] ED25519 test vectors 93 94 - Random test failure 15. ... ED25519 test vectors 94 95 - Random test failure 19. [OK] ED25519 test vectors 94 95 - Random test failure 19. ... ED25519 test vectors 95 96 - Random test failure 25. [OK] ED25519 test vectors 95 96 - Random test failure 25. ... ED25519 test vectors 96 97 - Random test failure 28. [OK] ED25519 test vectors 96 97 - Random test failure 28. ... ED25519 test vectors 97 98 - Random test failure 6. [OK] ED25519 test vectors 97 98 - Random test failure 6. ... ED25519 test vectors 98 99 - Random test failure 21. [OK] ED25519 test vectors 98 99 - Random test failure 21. ... ED25519 test vectors 99 100 - Random test failure 7. [OK] ED25519 test vectors 99 100 - Random test failure 7. ... ED25519 test vectors 100 101 - Random test failure 9. [OK] ED25519 test vectors 100 101 - Random test failure 9. ... ED25519 test vectors 101 102 - Random test failure 11. [OK] ED25519 test vectors 101 102 - Random test failure 11. ... ED25519 test vectors 102 103 - Random test failure 14. [OK] ED25519 test vectors 102 103 - Random test failure 14. ... ED25519 test vectors 103 104 - Random test failure 18. [OK] ED25519 test vectors 103 104 - Random test failure 18. ... ED25519 test vectors 104 105 - Random test failure 13. [OK] ED25519 test vectors 104 105 - Random test failure 13. ... ED25519 test vectors 105 106 - Random test failure 22. [OK] ED25519 test vectors 105 106 - Random test failure 22. ... ED25519 test vectors 106 107 - Random test failure 16. [OK] ED25519 test vectors 106 107 - Random test failure 16. ... ED25519 test vectors 107 108 - Random test failure 23. [OK] ED25519 test vectors 107 108 - Random test failure 23. ... ED25519 test vectors 108 109 - Random test failure 17. [OK] ED25519 test vectors 108 109 - Random test failure 17. ... ED25519 test vectors 109 110 - Random test failure 26. [OK] ED25519 test vectors 109 110 - Random test failure 26. ... ED25519 test vectors 110 111 - Random test failure 27. [OK] ED25519 test vectors 110 111 - Random test failure 27. ... ED25519 test vectors 111 112 - Test case for overflow in signature generation. [OK] ED25519 test vectors 111 112 - Test case for overflow in signature generation. ... ED25519 test vectors 112 113 - Test case for overflow in signature generation. [OK] ED25519 test vectors 112 113 - Test case for overflow in signature generation. ... ED25519 test vectors 113 114 - Test case for overflow in signature generation. [OK] ED25519 test vectors 113 114 - Test case for overflow in signature generation. ... ED25519 test vectors 114 115 - Test case for overflow in signature generation. [OK] ED25519 test vectors 114 115 - Test case for overflow in signature generation. ... ED25519 test vectors 115 116 - Test case for overflow in signature generation. [OK] ED25519 test vectors 115 116 - Test case for overflow in signature generation. ... ED25519 test vectors 116 117 - regression test for arithmetic error. [OK] ED25519 test vectors 116 117 - regression test for arithmetic error. ... ED25519 test vectors 117 118 - regression test for arithmetic error. [OK] ED25519 test vectors 117 118 - regression test for arithmetic error. ... ED25519 test vectors 118 119 - regression test for arithmetic error. [OK] ED25519 test vectors 118 119 - regression test for arithmetic error. ... ED25519 test vectors 119 120 - regression test for arithmetic error. [OK] ED25519 test vectors 119 120 - regression test for arithmetic error. ... ED25519 test vectors 120 121 - regression test for arithmetic error. [OK] ED25519 test vectors 120 121 - regression test for arithmetic error. ... ED25519 test vectors 121 122 - regression test for arithmetic error. [OK] ED25519 test vectors 121 122 - regression test for arithmetic error. ... ED25519 test vectors 122 123 - regression test for arithmetic error. [OK] ED25519 test vectors 122 123 - regression test for arithmetic error. ... ED25519 test vectors 123 124 - regression test for arithmetic error. [OK] ED25519 test vectors 123 124 - regression test for arithmetic error. ... ED25519 test vectors 124 125 - regression test for arithmetic error. [OK] ED25519 test vectors 124 125 - regression test for arithmetic error. ... ED25519 test vectors 125 126 - regression test for arithmetic error. [OK] ED25519 test vectors 125 126 - regression test for arithmetic error. ... ED25519 test vectors 126 127 - regression test for arithmetic error. [OK] ED25519 test vectors 126 127 - regression test for arithmetic error. ... ED25519 test vectors 127 128 - regression test for arithmetic error. [OK] ED25519 test vectors 127 128 - regression test for arithmetic error. ... ED25519 test vectors 128 129 - regression test for arithmetic error. [OK] ED25519 test vectors 128 129 - regression test for arithmetic error. ... ED25519 test vectors 129 130 - regression test for arithmetic error. [OK] ED25519 test vectors 129 130 - regression test for arithmetic error. ... ED25519 test vectors 130 131 - regression test for arithmetic error. [OK] ED25519 test vectors 130 131 - regression test for arithmetic error. ... ED25519 test vectors 131 132 - regression test for arithmetic error. [OK] ED25519 test vectors 131 132 - regression test for arithmetic error. ... ED25519 test vectors 132 133 - regression test for arithmetic error. [OK] ED25519 test vectors 132 133 - regression test for arithmetic error. ... ED25519 test vectors 133 134 - regression test for arithmetic error. [OK] ED25519 test vectors 133 134 - regression test for arithmetic error. ... ED25519 test vectors 134 135 - regression test for arithmetic error. [OK] ED25519 test vectors 134 135 - regression test for arithmetic error. ... ED25519 test vectors 135 136 - regression test for arithmetic error. [OK] ED25519 test vectors 135 136 - regression test for arithmetic error. ... ED25519 test vectors 136 137 - regression test for arithmetic error. [OK] ED25519 test vectors 136 137 - regression test for arithmetic error. ... ED25519 test vectors 137 138 - regression test for arithmetic error. [OK] ED25519 test vectors 137 138 - regression test for arithmetic error. ... ED25519 test vectors 138 139 - regression test for arithmetic error. [OK] ED25519 test vectors 138 139 - regression test for arithmetic error. ... ED25519 test vectors 139 140 - regression test for arithmetic error. [OK] ED25519 test vectors 139 140 - regression test for arithmetic error. ... ED25519 test vectors 140 141 - regression test for arithmetic error. [OK] ED25519 test vectors 140 141 - regression test for arithmetic error. ... ED25519 test vectors 141 142 - regression test for arithmetic error. [OK] ED25519 test vectors 141 142 - regression test for arithmetic error. ... ED25519 test vectors 142 143 - regression test for arithmetic error. [OK] ED25519 test vectors 142 143 - regression test for arithmetic error. ... ED25519 test vectors 143 144 - regression test for arithmetic error. [OK] ED25519 test vectors 143 144 - regression test for arithmetic error. ... ED25519 test vectors 144 145 - regression test for arithmetic error. [OK] ED25519 test vectors 144 145 - regression test for arithmetic error. The full test results are available in `/src/_build/default/tests/_build/_tests/59131925-03FD-45D8-B33B-EA59BD6A46AE`. Test Successful in 8.000s. 3502 tests run. 2025-03-18 11:44.33 ---> saved as "5163adc46051452628b8d8e74f887a8189b1ebaa9a5f9c3e1dc63c9f121e7715" Job succeeded 2025-03-18 11:44.48: Job succeeded