Lines Matching defs:point
35 key id = sha256(hex encoded public point)
39 1<tab>algo id<tab>public point
44 1<tab>algo id<tab>0<tab>private point<tab>key id
47 1<tab>algo id<tab>1<tab>private point<tab>ephemeral public key<tab>encryption key id<tab>key id
50 1<tab>algo id<tab>2<tab>private point<tab>salt<tab>key id
174 hex encoded point from EC public key
590 /* convert ephemeral key data EC point */
599 /* convert point to public key */
868 BIGNUM *point = NULL;
884 point = BN_new();
885 if (point == NULL || BN_hex2bn(&point, input[3]) < 1) {
886 BN_free(point);
897 if (!dcrypt_openssl_decrypt_point_password_v1(enc_priv_pt, password, salt, &point, error_r)) {
908 if (!dcrypt_openssl_decrypt_point_ec_v1(dec_key, enc_priv_pt, peer_key, &point, error_r)) {
927 EC_KEY_set_private_key(eckey, point);
937 ec = EC_POINT_mul(EC_KEY_get0_group(eckey), pub, point, NULL, NULL, bnctx);
939 BN_free(point);
1177 BIGNUM *point = BN_new();
1178 if (point == NULL ||
1179 BN_mpi2bn(key_data->data, key_data->used, point) == NULL) {
1181 BN_free(point);
1189 BN_free(point);
1195 EC_KEY_set_private_key(eckey, point);
1203 ec = EC_POINT_mul(EC_KEY_get0_group(eckey), pub, point, NULL, NULL, bnctx);
1207 BN_free(point);
1279 EC_POINT *point = EC_POINT_new(EC_KEY_get0_group(eckey));
1280 if (bnctx == NULL || point == NULL ||
1282 input[2], point, bnctx) == NULL) {
1285 EC_POINT_free(point);
1291 EC_KEY_set_public_key(eckey, point);
1294 EC_POINT_free(point);