From a3185663042c971aed5ef5b4bacd7e9f55711e5a Mon Sep 17 00:00:00 2001 From: Kenji Urushima Date: Sun, 22 Jan 2017 19:35:04 +0900 Subject: [PATCH] API doc update --- api/symbols/KJUR.crypto.ECDSA.html | 50 +++++++++++----------- api/symbols/src/ecdsa-modified-1.0.js.html | 10 ++--- ecdsa-modified-1.0.js | 10 ++--- 3 files changed, 35 insertions(+), 35 deletions(-) diff --git a/api/symbols/KJUR.crypto.ECDSA.html b/api/symbols/KJUR.crypto.ECDSA.html index dbb01452..666dd610 100644 --- a/api/symbols/KJUR.crypto.ECDSA.html +++ b/api/symbols/KJUR.crypto.ECDSA.html @@ -525,9 +525,9 @@

- <static>   +   -
KJUR.crypto.ECDSA.generateKeyPairHex() +
generate a EC key pair
@@ -546,18 +546,18 @@

- <static>   +   -
KJUR.crypto.ECDSA.getPublicKeyXYHex() +
get X and Y hexadecimal string value of public key
- <static>   +   -
KJUR.crypto.ECDSA.getShortNISTPCurveName() +
get NIST curve short name such as "P-256" or "P-384"
@@ -627,18 +627,18 @@

- <static>   +   -
KJUR.crypto.ECDSA.signHex(hashHex, privHex) +
signHex(hashHex, privHex)
signing to message hash
- <static>   +   -
KJUR.crypto.ECDSA.verifyHex(hashHex, sigHex, pubkeyHex) +
verifyHex(hashHex, sigHex, pubkeyHex)
verifying signature with message hash and public key
@@ -859,11 +859,11 @@


- -
<static> + +
{Array} - KJUR.crypto.ECDSA.generateKeyPairHex() + generateKeyPairHex()
@@ -964,11 +964,11 @@


- -
<static> + +
{Array} - KJUR.crypto.ECDSA.getPublicKeyXYHex() + getPublicKeyXYHex()
@@ -1007,11 +1007,11 @@


- -
<static> + +
{String} - KJUR.crypto.ECDSA.getShortNISTPCurveName() + getShortNISTPCurveName()
@@ -1391,11 +1391,11 @@


- -
<static> + +
{String} - KJUR.crypto.ECDSA.signHex(hashHex, privHex) + signHex(hashHex, privHex)
@@ -1451,11 +1451,11 @@


- -
<static> + +
{Boolean} - KJUR.crypto.ECDSA.verifyHex(hashHex, sigHex, pubkeyHex) + verifyHex(hashHex, sigHex, pubkeyHex)
diff --git a/api/symbols/src/ecdsa-modified-1.0.js.html b/api/symbols/src/ecdsa-modified-1.0.js.html index a9d2060f..cce7f40e 100644 --- a/api/symbols/src/ecdsa-modified-1.0.js.html +++ b/api/symbols/src/ecdsa-modified-1.0.js.html @@ -118,7 +118,7 @@ 111 /** 112 * get X and Y hexadecimal string value of public key 113 * @name getPublicKeyXYHex -114 * @memberOf KJUR.crypto.ECDSA +114 * @memberOf KJUR.crypto.ECDSA# 115 * @function 116 * @return {Array} associative array of x and y value of public key 117 * @since ecdsa-modified 1.0.5 jsrsasign 5.0.14 @@ -144,7 +144,7 @@ 137 /** 138 * get NIST curve short name such as "P-256" or "P-384" 139 * @name getShortNISTPCurveName -140 * @memberOf KJUR.crypto.ECDSA +140 * @memberOf KJUR.crypto.ECDSA# 141 * @function 142 * @return {String} short NIST P curve name such as "P-256" or "P-384" if it's NIST P curve otherwise null; 143 * @since ecdsa-modified 1.0.5 jsrsasign 5.0.14 @@ -165,7 +165,7 @@ 158 /** 159 * generate a EC key pair 160 * @name generateKeyPairHex -161 * @memberOf KJUR.crypto.ECDSA +161 * @memberOf KJUR.crypto.ECDSA# 162 * @function 163 * @return {Array} associative array of hexadecimal string of private and public key 164 * @since ecdsa-modified 1.0.1 @@ -200,7 +200,7 @@ 193 /** 194 * signing to message hash 195 * @name signHex -196 * @memberOf KJUR.crypto.ECDSA +196 * @memberOf KJUR.crypto.ECDSA# 197 * @function 198 * @param {String} hashHex hexadecimal string of hash value of signing message 199 * @param {String} privHex hexadecimal string of EC private key @@ -250,7 +250,7 @@ 243 /** 244 * verifying signature with message hash and public key 245 * @name verifyHex -246 * @memberOf KJUR.crypto.ECDSA +246 * @memberOf KJUR.crypto.ECDSA# 247 * @function 248 * @param {String} hashHex hexadecimal string of hash value of signing message 249 * @param {String} sigHex hexadecimal string of signature value diff --git a/ecdsa-modified-1.0.js b/ecdsa-modified-1.0.js index a4fe7ea0..f5e5eea3 100644 --- a/ecdsa-modified-1.0.js +++ b/ecdsa-modified-1.0.js @@ -111,7 +111,7 @@ KJUR.crypto.ECDSA = function(params) { /** * get X and Y hexadecimal string value of public key * @name getPublicKeyXYHex - * @memberOf KJUR.crypto.ECDSA + * @memberOf KJUR.crypto.ECDSA# * @function * @return {Array} associative array of x and y value of public key * @since ecdsa-modified 1.0.5 jsrsasign 5.0.14 @@ -137,7 +137,7 @@ KJUR.crypto.ECDSA = function(params) { /** * get NIST curve short name such as "P-256" or "P-384" * @name getShortNISTPCurveName - * @memberOf KJUR.crypto.ECDSA + * @memberOf KJUR.crypto.ECDSA# * @function * @return {String} short NIST P curve name such as "P-256" or "P-384" if it's NIST P curve otherwise null; * @since ecdsa-modified 1.0.5 jsrsasign 5.0.14 @@ -158,7 +158,7 @@ KJUR.crypto.ECDSA = function(params) { /** * generate a EC key pair * @name generateKeyPairHex - * @memberOf KJUR.crypto.ECDSA + * @memberOf KJUR.crypto.ECDSA# * @function * @return {Array} associative array of hexadecimal string of private and public key * @since ecdsa-modified 1.0.1 @@ -193,7 +193,7 @@ KJUR.crypto.ECDSA = function(params) { /** * signing to message hash * @name signHex - * @memberOf KJUR.crypto.ECDSA + * @memberOf KJUR.crypto.ECDSA# * @function * @param {String} hashHex hexadecimal string of hash value of signing message * @param {String} privHex hexadecimal string of EC private key @@ -243,7 +243,7 @@ KJUR.crypto.ECDSA = function(params) { /** * verifying signature with message hash and public key * @name verifyHex - * @memberOf KJUR.crypto.ECDSA + * @memberOf KJUR.crypto.ECDSA# * @function * @param {String} hashHex hexadecimal string of hash value of signing message * @param {String} sigHex hexadecimal string of signature value