/third_party/node/lib/internal/readline/ |
H A D | utils.js | 60 Some patterns seen in terminal key escape codes, derived from combos seen 61 at http://www.midnight-commander.org/browser/lib/tty/key.c 91 const key = { 215 // Parse the key modifier 216 key.ctrl = !!(modifier & 4); 217 key.meta = !!(modifier & 10); 218 key.shift = !!(modifier & 1); 219 key.code = code; 221 // Parse the key itself 224 case '[P': key [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/tls/ |
H A D | rsa.c | 18 int private_key; /* whether private key is set */ 56 * crypto_rsa_import_public_key - Import an RSA public key 57 * @buf: Key buffer (DER encoded RSA public key) 59 * Returns: Pointer to the public key or %NULL on failure 64 struct crypto_rsa_key *key; in crypto_rsa_import_public_key() local 68 key = os_zalloc(sizeof(*key)); in crypto_rsa_import_public_key() 69 if (key == NULL) in crypto_rsa_import_public_key() 72 key->n = bignum_init(); in crypto_rsa_import_public_key() 73 key in crypto_rsa_import_public_key() 123 struct crypto_rsa_key *key; crypto_rsa_import_public_key_parts() local 151 struct crypto_rsa_key *key; crypto_rsa_import_private_key() local 249 crypto_rsa_get_modulus_len(struct crypto_rsa_key *key) crypto_rsa_get_modulus_len() argument 265 crypto_rsa_exptmod(const u8 *in, size_t inlen, u8 *out, size_t *outlen, struct crypto_rsa_key *key, int use_private) crypto_rsa_exptmod() argument 362 crypto_rsa_free(struct crypto_rsa_key *key) crypto_rsa_free() argument [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/tls/ |
H A D | rsa.c | 18 int private_key; /* whether private key is set */ 55 * crypto_rsa_import_public_key - Import an RSA public key 56 * @buf: Key buffer (DER encoded RSA public key) 58 * Returns: Pointer to the public key or %NULL on failure 63 struct crypto_rsa_key *key; in crypto_rsa_import_public_key() local 67 key = os_zalloc(sizeof(*key)); in crypto_rsa_import_public_key() 68 if (key == NULL) in crypto_rsa_import_public_key() 71 key->n = bignum_init(); in crypto_rsa_import_public_key() 72 key in crypto_rsa_import_public_key() 118 struct crypto_rsa_key *key; crypto_rsa_import_public_key_parts() local 146 struct crypto_rsa_key *key; crypto_rsa_import_private_key() local 240 crypto_rsa_get_modulus_len(struct crypto_rsa_key *key) crypto_rsa_get_modulus_len() argument 256 crypto_rsa_exptmod(const u8 *in, size_t inlen, u8 *out, size_t *outlen, struct crypto_rsa_key *key, int use_private) crypto_rsa_exptmod() argument 353 crypto_rsa_free(struct crypto_rsa_key *key) crypto_rsa_free() argument [all...] |
/third_party/typescript/tests/baselines/reference/ |
H A D | parserRealSource4.js | 26 add(key: string, data): boolean; 27 addOrUpdate(key: string, data): boolean; 32 lookup(key: string): any; 49 public add(key: string, data): boolean { 50 if (this.table[key] != undefined) { 53 this.table[key] = data; 58 public addOrUpdate(key: string, data): boolean { 59 if (this.table[key] != undefined) { 60 this.table[key] = data; 63 this.table[key] [all...] |
H A D | noImplicitAnyStringIndexerOnObject.js | 6 get: (key: string) => 'foobar' 12 set: (key: string) => 'foobar' 18 get: (key: string) => 'foobar', 19 set: (key: string) => 'foobar' 29 get: (key: string) => 'foobar', 30 set: (key: string, value: string) => 'foobar' 40 get: (key: "hello" | "world") => 'foobar', 41 set: (key: "hello" | "world", value: string) => 'foobar' 50 ({ get: (key: string) => 'hello', set: (key [all...] |
/third_party/selinux/libsepol/src/ |
H A D | avtab.c | 93 avtab_insert_node(avtab_t * h, int hvalue, avtab_ptr_t prev, avtab_key_t * key, in avtab_insert_node() argument 103 newnode->key = *key; in avtab_insert_node() 105 if (key->specified & AVTAB_XPERMS) { in avtab_insert_node() 136 int avtab_insert(avtab_t * h, avtab_key_t * key, avtab_datum_t * datum) in avtab_insert() argument 141 key->specified & ~(AVTAB_ENABLED | AVTAB_ENABLED_OLD); in avtab_insert() 146 hvalue = avtab_hash(key, h->mask); in avtab_insert() 149 if (key->source_type == cur->key.source_type && in avtab_insert() 150 key in avtab_insert() 181 avtab_insert_nonunique(avtab_t * h, avtab_key_t * key, avtab_datum_t * datum) avtab_insert_nonunique() argument 213 avtab_search(avtab_t * h, avtab_key_t * key) avtab_search() argument 248 avtab_search_node(avtab_t * h, avtab_key_t * key) avtab_search_node() argument 441 avtab_key_t key; avtab_read_item() local [all...] |
/third_party/node/deps/openssl/openssl/include/openssl/ |
H A D | params.h | 27 # define OSSL_PARAM_DEFN(key, type, addr, sz) \ 28 { (key), (type), (addr), (sz), OSSL_PARAM_UNMODIFIED } 31 # define OSSL_PARAM_int(key, addr) \ 32 OSSL_PARAM_DEFN((key), OSSL_PARAM_INTEGER, (addr), sizeof(int)) 33 # define OSSL_PARAM_uint(key, addr) \ 34 OSSL_PARAM_DEFN((key), OSSL_PARAM_UNSIGNED_INTEGER, (addr), \ 36 # define OSSL_PARAM_long(key, addr) \ 37 OSSL_PARAM_DEFN((key), OSSL_PARAM_INTEGER, (addr), sizeof(long int)) 38 # define OSSL_PARAM_ulong(key, addr) \ 39 OSSL_PARAM_DEFN((key), OSSL_PARAM_UNSIGNED_INTEGE [all...] |
/third_party/node/deps/openssl/openssl/crypto/rsa/ |
H A D | rsa_chk.c | 22 static int rsa_validate_keypair_multiprime(const RSA *key, BN_GENCB *cb) in rsa_validate_keypair_multiprime() argument 29 if (key->p == NULL || key->q == NULL || key->n == NULL in rsa_validate_keypair_multiprime() 30 || key->e == NULL || key->d == NULL) { in rsa_validate_keypair_multiprime() 36 if (key->version == RSA_ASN1_VERSION_MULTI) { in rsa_validate_keypair_multiprime() 37 ex_primes = sk_RSA_PRIME_INFO_num(key->prime_infos); in rsa_validate_keypair_multiprime() 39 || (ex_primes + 2) > ossl_rsa_multip_cap(BN_num_bits(key->n))) { in rsa_validate_keypair_multiprime() 50 ctx = BN_CTX_new_ex(key in rsa_validate_keypair_multiprime() 237 ossl_rsa_validate_public(const RSA *key) ossl_rsa_validate_public() argument 242 ossl_rsa_validate_private(const RSA *key) ossl_rsa_validate_private() argument 247 ossl_rsa_validate_pairwise(const RSA *key) ossl_rsa_validate_pairwise() argument 256 RSA_check_key(const RSA *key) RSA_check_key() argument 261 RSA_check_key_ex(const RSA *key, BN_GENCB *cb) RSA_check_key_ex() argument [all...] |
/third_party/openssl/crypto/rsa/ |
H A D | rsa_chk.c | 22 static int rsa_validate_keypair_multiprime(const RSA *key, BN_GENCB *cb) in rsa_validate_keypair_multiprime() argument 29 if (key->p == NULL || key->q == NULL || key->n == NULL in rsa_validate_keypair_multiprime() 30 || key->e == NULL || key->d == NULL) { in rsa_validate_keypair_multiprime() 36 if (key->version == RSA_ASN1_VERSION_MULTI) { in rsa_validate_keypair_multiprime() 37 ex_primes = sk_RSA_PRIME_INFO_num(key->prime_infos); in rsa_validate_keypair_multiprime() 39 || (ex_primes + 2) > ossl_rsa_multip_cap(BN_num_bits(key->n))) { in rsa_validate_keypair_multiprime() 50 ctx = BN_CTX_new_ex(key in rsa_validate_keypair_multiprime() 237 ossl_rsa_validate_public(const RSA *key) ossl_rsa_validate_public() argument 242 ossl_rsa_validate_private(const RSA *key) ossl_rsa_validate_private() argument 247 ossl_rsa_validate_pairwise(const RSA *key) ossl_rsa_validate_pairwise() argument 256 RSA_check_key(const RSA *key) RSA_check_key() argument 261 RSA_check_key_ex(const RSA *key, BN_GENCB *cb) RSA_check_key_ex() argument [all...] |
/third_party/openssl/include/openssl/ |
H A D | params.h | 27 # define OSSL_PARAM_DEFN(key, type, addr, sz) \ 28 { (key), (type), (addr), (sz), OSSL_PARAM_UNMODIFIED } 31 # define OSSL_PARAM_int(key, addr) \ 32 OSSL_PARAM_DEFN((key), OSSL_PARAM_INTEGER, (addr), sizeof(int)) 33 # define OSSL_PARAM_uint(key, addr) \ 34 OSSL_PARAM_DEFN((key), OSSL_PARAM_UNSIGNED_INTEGER, (addr), \ 36 # define OSSL_PARAM_long(key, addr) \ 37 OSSL_PARAM_DEFN((key), OSSL_PARAM_INTEGER, (addr), sizeof(long int)) 38 # define OSSL_PARAM_ulong(key, addr) \ 39 OSSL_PARAM_DEFN((key), OSSL_PARAM_UNSIGNED_INTEGE [all...] |
/third_party/node/lib/internal/crypto/ |
H A D | keys.js | 126 static from(key) { 127 if (!isCryptoKey(key)) 128 throw new ERR_INVALID_ARG_TYPE('key', 'CryptoKey', key); 129 return key[kKeyObject]; 361 passphrase = getArrayBufferOrView(passphrase, 'key.passphrase', encoding); 366 // Parses the public key encoding based on an object. keyType must be undefined 367 // when this is used to parse an input encoding and must be a valid key type if 373 // Parses the private key encoding based on an object. keyType must be undefined 374 // when this is used to parse an input encoding and must be a valid key typ [all...] |
/third_party/node/deps/npm/node_modules/postcss-selector-parser/dist/selectors/ |
H A D | index.js | 5 Object.keys(_types).forEach(function (key) { 6 if (key === "default" || key === "__esModule") return; 7 if (key in exports && exports[key] === _types[key]) return; 8 exports[key] = _types[key]; 11 Object.keys(_constructors).forEach(function (key) { 12 if (key [all...] |
/third_party/node/deps/openssl/openssl/crypto/evp/ |
H A D | e_rc4_hmac_md5.c | 39 void rc4_md5_enc(RC4_KEY *key, const void *in0, void *out, 48 EVP_RC4_HMAC_MD5 *key = data(ctx); in rc4_hmac_md5_init_key() local 54 RC4_set_key(&key->ks, keylen, inkey); in rc4_hmac_md5_init_key() 56 MD5_Init(&key->head); /* handy when benchmarking */ in rc4_hmac_md5_init_key() 57 key->tail = key->head; in rc4_hmac_md5_init_key() 58 key->md = key->head; in rc4_hmac_md5_init_key() 60 key->payload_length = NO_PAYLOAD_LENGTH; in rc4_hmac_md5_init_key() 79 EVP_RC4_HMAC_MD5 *key in rc4_hmac_md5_cipher() local 189 EVP_RC4_HMAC_MD5 *key = data(ctx); rc4_hmac_md5_ctrl() local [all...] |
/third_party/openssl/crypto/evp/ |
H A D | e_rc4_hmac_md5.c | 39 void rc4_md5_enc(RC4_KEY *key, const void *in0, void *out, 48 EVP_RC4_HMAC_MD5 *key = data(ctx); in rc4_hmac_md5_init_key() local 54 RC4_set_key(&key->ks, keylen, inkey); in rc4_hmac_md5_init_key() 56 MD5_Init(&key->head); /* handy when benchmarking */ in rc4_hmac_md5_init_key() 57 key->tail = key->head; in rc4_hmac_md5_init_key() 58 key->md = key->head; in rc4_hmac_md5_init_key() 60 key->payload_length = NO_PAYLOAD_LENGTH; in rc4_hmac_md5_init_key() 79 EVP_RC4_HMAC_MD5 *key in rc4_hmac_md5_cipher() local 189 EVP_RC4_HMAC_MD5 *key = data(ctx); rc4_hmac_md5_ctrl() local [all...] |
/third_party/node/test/parallel/ |
H A D | test-tls-client-auth.js | 34 key: client.key, 40 key: server.key, 57 key: server.key, 74 key: server.key, 94 key: server.key, [all...] |
H A D | test-readline.js | 59 const key = { 78 [key.xterm, key.gnome, key.rxvt, key.putty].forEach(function(key) { 79 rl.write.apply(rl, key.home); 81 rl.write.apply(rl, key.end); 94 const key = { 103 rl.write.apply(rl, key [all...] |
/third_party/node/deps/openssl/openssl/crypto/camellia/asm/ |
H A D | cmll-x86.pl | 31 # 128-bit key setup 196 280 256 240 cycles/key 58 $key="edi"; 68 $__end=&DWP(20,"esp"); # pointer to end/start of key schedule 71 # above by 4 and overlaps by pointer to end/start of key schedule 93 &xor ($t0,$idx); # t0^=key[0] 94 &xor ($t1,&DWP($seed+$i*$scale+4,$key)); # t1^=key[1] 118 &mov ($idx,&DWP($seed+($i+1)*$scale,$key)); # prefetch key[ [all...] |
/third_party/openssl/crypto/camellia/asm/ |
H A D | cmll-x86.pl | 31 # 128-bit key setup 196 280 256 240 cycles/key 58 $key="edi"; 68 $__end=&DWP(20,"esp"); # pointer to end/start of key schedule 71 # above by 4 and overlaps by pointer to end/start of key schedule 93 &xor ($t0,$idx); # t0^=key[0] 94 &xor ($t1,&DWP($seed+$i*$scale+4,$key)); # t1^=key[1] 118 &mov ($idx,&DWP($seed+($i+1)*$scale,$key)); # prefetch key[ [all...] |
/third_party/mesa3d/src/gallium/drivers/svga/ |
H A D | svga_screen_cache.c | 42 * Return the size of the surface described by the key (in bytes). 45 svga_surface_size(const struct svga_host_surface_cache_key *key) in svga_surface_size() argument 49 assert(key->numMipLevels > 0); in svga_surface_size() 50 assert(key->numFaces > 0); in svga_surface_size() 51 assert(key->arraySize > 0); in svga_surface_size() 53 if (key->format == SVGA3D_BUFFER) { in svga_surface_size() 60 svga_format_size(key->format, &bw, &bh, &bpb); in svga_surface_size() 64 for (i = 0; i < key->numMipLevels; i++) { in svga_surface_size() 65 unsigned w = u_minify(key->size.width, i); in svga_surface_size() 66 unsigned h = u_minify(key in svga_surface_size() 82 svga_screen_cache_bucket(const struct svga_host_surface_cache_key *key) svga_screen_cache_bucket() argument 94 svga_screen_cache_lookup(struct svga_screen *svgascreen, const struct svga_host_surface_cache_key *key) svga_screen_cache_lookup() argument 213 svga_screen_cache_add(struct svga_screen *svgascreen, const struct svga_host_surface_cache_key *key, boolean to_invalidate, struct svga_winsys_surface **p_handle) svga_screen_cache_add() argument 491 svga_screen_surface_create(struct svga_screen *svgascreen, unsigned bind_flags, enum pipe_resource_usage usage, boolean *validated, struct svga_host_surface_cache_key *key) svga_screen_surface_create() argument 611 svga_screen_surface_destroy(struct svga_screen *svgascreen, const struct svga_host_surface_cache_key *key, boolean to_invalidate, struct svga_winsys_surface **p_handle) svga_screen_surface_destroy() argument [all...] |
/third_party/mesa3d/src/gallium/drivers/v3d/ |
H A D | v3d_program.c | 42 struct v3d_key *key, size_t key_size); 45 struct v3d_key *key); 211 struct v3d_fs_key key = { in v3d_shader_precompile() local 217 key.cbufs |= 1 << 0; in v3d_shader_precompile() 219 key.cbufs |= 1 << (var->data.location - in v3d_shader_precompile() 224 key.logicop_func = PIPE_LOGICOP_COPY; in v3d_shader_precompile() 226 v3d_setup_shared_precompile_key(so, &key.base); in v3d_shader_precompile() 227 v3d_get_compiled_shader(v3d, &key.base, sizeof(key)); in v3d_shader_precompile() 229 struct v3d_gs_key key in v3d_shader_precompile() local 253 struct v3d_vs_key key = { v3d_shader_precompile() local 371 v3d_get_compiled_shader(struct v3d_context *v3d, struct v3d_key *key, size_t key_size) v3d_get_compiled_shader() argument 455 v3d_setup_shared_key(struct v3d_context *v3d, struct v3d_key *key, struct v3d_texture_stateobj *texstate) v3d_setup_shared_key() argument 514 v3d_setup_shared_precompile_key(struct v3d_uncompiled_shader *uncompiled, struct v3d_key *key) v3d_setup_shared_precompile_key() argument 541 struct v3d_fs_key *key = &local_key; v3d_update_compiled_fs() local 661 struct v3d_gs_key *key = &local_key; v3d_update_compiled_gs() local 735 struct v3d_vs_key *key = &local_key; v3d_update_compiled_vs() local 852 struct v3d_key *key = &local_key; v3d_update_compiled_cs() local 872 fs_cache_hash(const void *key) fs_cache_hash() argument 878 gs_cache_hash(const void *key) gs_cache_hash() argument 884 vs_cache_hash(const void *key) vs_cache_hash() argument 890 cs_cache_hash(const void *key) cs_cache_hash() argument 927 const struct v3d_key *key = entry->key; v3d_shader_state_delete() local [all...] |
/third_party/protobuf/python/google/protobuf/internal/ |
H A D | containers.py | 76 def get(self, key, default=None): 78 return self[key] 82 def __contains__(self, key): 84 self[key] 94 for key in self: 95 yield self[key] 98 for key in self: 99 yield (key, self[key]) 105 return [(key, sel [all...] |
/third_party/icu/icu4j/perf-tests/src/com/ibm/icu/dev/test/perf/ |
H A D | ResourceBundlePerf.java | 65 String key; field in ResourceBundlePerf.GetStringJava 67 GetStringJava(String key, String expected) { in GetStringJava() argument 68 this.key = key; in GetStringJava() 72 String s = javaRes.getString(key); in call() 78 String key; field in ResourceBundlePerf.GetStringIcu 80 GetStringIcu(String key, String expected) { in GetStringIcu() argument 81 this.key = key; in GetStringIcu() 85 String s = icuRes.getString(key); in call() 115 String key; global() field in ResourceBundlePerf.GetIntJava 117 GetIntJava(String key, int expected) GetIntJava() argument 128 String key; global() field in ResourceBundlePerf.GetIntIcu 130 GetIntIcu(String key, int expected) GetIntIcu() argument 202 String key; global() field in ResourceBundlePerf.GetIvJava 204 GetIvJava(String key, int[] expected) GetIvJava() argument 217 String key; global() field in ResourceBundlePerf.GetIvIcu 219 GetIvIcu(String key, int[] expected) GetIvIcu() argument 250 String key; global() field in ResourceBundlePerf.GetBinaryIcu 252 GetBinaryIcu(String key, int expected_len) GetBinaryIcu() argument 268 String key; global() field in ResourceBundlePerf.GetBinaryJava 270 GetBinaryJava(String key, int expected_len) GetBinaryJava() argument 301 String key; global() field in ResourceBundlePerf.GetMenuJava 303 GetMenuJava(String key, String[] expected) GetMenuJava() argument 329 String key; global() field in ResourceBundlePerf.GetMenuIcu 331 GetMenuIcu(String key, String[] expected) GetMenuIcu() argument [all...] |
/third_party/python/Lib/ |
H A D | selectors.py | 168 list of (key, events) for ready file objects 181 """Return the key associated to a registered file object. 228 for key in self._fd_to_key.values(): 229 if key.fileobj is fileobj: 230 return key.fd 238 key = SelectorKey(fileobj, self._fileobj_lookup(fileobj), events, data) 240 if key.fd in self._fd_to_key: 242 .format(fileobj, key.fd)) 244 self._fd_to_key[key.fd] = key [all...] |
/third_party/node/deps/openssl/openssl/crypto/ec/ |
H A D | ec_key.c | 134 /* copy the public key */ in EC_KEY_copy() 143 /* copy the private key */ in EC_KEY_copy() 245 * eckey An EC key object that contains domain params. The generated keypair 291 /* range of SM2 private key is [1, n-1) */ in ec_generate_key() 396 * Check the range of the EC public key. 402 * Returns 1 if the public key has a valid range, otherwise it returns 0. 404 static int ec_key_public_range_check(BN_CTX *ctx, const EC_KEY *key) in ec_key_public_range_check() argument 415 if (!EC_POINT_get_affine_coordinates(key->group, key->pub_key, x, y, ctx)) in ec_key_public_range_check() 418 if (EC_GROUP_get_field_type(key in ec_key_public_range_check() 598 EC_KEY_set_public_key_affine_coordinates(EC_KEY *key, BIGNUM *x, BIGNUM *y) EC_KEY_set_public_key_affine_coordinates() argument 656 ossl_ec_key_get_libctx(const EC_KEY *key) ossl_ec_key_get_libctx() argument 661 ossl_ec_key_get0_propq(const EC_KEY *key) ossl_ec_key_get0_propq() argument 666 ossl_ec_key_set0_libctx(EC_KEY *key, OSSL_LIB_CTX *libctx) ossl_ec_key_set0_libctx() argument 672 EC_KEY_get0_group(const EC_KEY *key) EC_KEY_get0_group() argument 677 EC_KEY_set_group(EC_KEY *key, const EC_GROUP *group) EC_KEY_set_group() argument 690 EC_KEY_get0_private_key(const EC_KEY *key) EC_KEY_get0_private_key() argument 695 EC_KEY_set_private_key(EC_KEY *key, const BIGNUM *priv_key) EC_KEY_set_private_key() argument 790 EC_KEY_get0_public_key(const EC_KEY *key) EC_KEY_get0_public_key() argument 795 EC_KEY_set_public_key(EC_KEY *key, const EC_POINT *pub_key) EC_KEY_set_public_key() argument 806 EC_KEY_get_enc_flags(const EC_KEY *key) EC_KEY_get_enc_flags() argument 811 EC_KEY_set_enc_flags(EC_KEY *key, unsigned int flags) EC_KEY_set_enc_flags() argument 816 EC_KEY_get_conv_form(const EC_KEY *key) EC_KEY_get_conv_form() argument 821 EC_KEY_set_conv_form(EC_KEY *key, point_conversion_form_t cform) EC_KEY_set_conv_form() argument 828 EC_KEY_set_asn1_flag(EC_KEY *key, int flag) EC_KEY_set_asn1_flag() argument 835 EC_KEY_precompute_mult(EC_KEY *key, BN_CTX *ctx) EC_KEY_precompute_mult() argument 843 EC_KEY_get_flags(const EC_KEY *key) EC_KEY_get_flags() argument 848 EC_KEY_set_flags(EC_KEY *key, int flags) EC_KEY_set_flags() argument 854 EC_KEY_clear_flags(EC_KEY *key, int flags) EC_KEY_clear_flags() argument 860 EC_KEY_decoded_from_explicit_params(const EC_KEY *key) EC_KEY_decoded_from_explicit_params() argument 867 EC_KEY_key2buf(const EC_KEY *key, point_conversion_form_t form, unsigned char **pbuf, BN_CTX *ctx) EC_KEY_key2buf() argument 875 EC_KEY_oct2key(EC_KEY *key, const unsigned char *buf, size_t len, BN_CTX *ctx) EC_KEY_oct2key() argument [all...] |
/third_party/openssl/crypto/ec/ |
H A D | ec_key.c | 134 /* copy the public key */ in EC_KEY_copy() 143 /* copy the private key */ in EC_KEY_copy() 245 * eckey An EC key object that contains domain params. The generated keypair 291 /* range of SM2 private key is [1, n-1) */ in ec_generate_key() 396 * Check the range of the EC public key. 402 * Returns 1 if the public key has a valid range, otherwise it returns 0. 404 static int ec_key_public_range_check(BN_CTX *ctx, const EC_KEY *key) in ec_key_public_range_check() argument 415 if (!EC_POINT_get_affine_coordinates(key->group, key->pub_key, x, y, ctx)) in ec_key_public_range_check() 418 if (EC_GROUP_get_field_type(key in ec_key_public_range_check() 598 EC_KEY_set_public_key_affine_coordinates(EC_KEY *key, BIGNUM *x, BIGNUM *y) EC_KEY_set_public_key_affine_coordinates() argument 656 ossl_ec_key_get_libctx(const EC_KEY *key) ossl_ec_key_get_libctx() argument 661 ossl_ec_key_get0_propq(const EC_KEY *key) ossl_ec_key_get0_propq() argument 666 ossl_ec_key_set0_libctx(EC_KEY *key, OSSL_LIB_CTX *libctx) ossl_ec_key_set0_libctx() argument 672 EC_KEY_get0_group(const EC_KEY *key) EC_KEY_get0_group() argument 677 EC_KEY_set_group(EC_KEY *key, const EC_GROUP *group) EC_KEY_set_group() argument 690 EC_KEY_get0_private_key(const EC_KEY *key) EC_KEY_get0_private_key() argument 695 EC_KEY_set_private_key(EC_KEY *key, const BIGNUM *priv_key) EC_KEY_set_private_key() argument 790 EC_KEY_get0_public_key(const EC_KEY *key) EC_KEY_get0_public_key() argument 795 EC_KEY_set_public_key(EC_KEY *key, const EC_POINT *pub_key) EC_KEY_set_public_key() argument 806 EC_KEY_get_enc_flags(const EC_KEY *key) EC_KEY_get_enc_flags() argument 811 EC_KEY_set_enc_flags(EC_KEY *key, unsigned int flags) EC_KEY_set_enc_flags() argument 816 EC_KEY_get_conv_form(const EC_KEY *key) EC_KEY_get_conv_form() argument 821 EC_KEY_set_conv_form(EC_KEY *key, point_conversion_form_t cform) EC_KEY_set_conv_form() argument 828 EC_KEY_set_asn1_flag(EC_KEY *key, int flag) EC_KEY_set_asn1_flag() argument 835 EC_KEY_precompute_mult(EC_KEY *key, BN_CTX *ctx) EC_KEY_precompute_mult() argument 843 EC_KEY_get_flags(const EC_KEY *key) EC_KEY_get_flags() argument 848 EC_KEY_set_flags(EC_KEY *key, int flags) EC_KEY_set_flags() argument 854 EC_KEY_clear_flags(EC_KEY *key, int flags) EC_KEY_clear_flags() argument 860 EC_KEY_decoded_from_explicit_params(const EC_KEY *key) EC_KEY_decoded_from_explicit_params() argument 867 EC_KEY_key2buf(const EC_KEY *key, point_conversion_form_t form, unsigned char **pbuf, BN_CTX *ctx) EC_KEY_key2buf() argument 875 EC_KEY_oct2key(EC_KEY *key, const unsigned char *buf, size_t len, BN_CTX *ctx) EC_KEY_oct2key() argument [all...] |