Based on Nekogram. Key additions: - Rebrand to FoxiGram (app name, APK name, applicationId com.foxigram.app) - Embedded Xray (VLESS+Reality) proxy client via JNI libxray.so - Bundled hidden one-tap proxies (LTE + WiFi), read-only in UI - Auto-restore proxy on restart, rebind to active network (LTE/WiFi) - Server credentials externalized to git-ignored XrayServers.java (+ template) - libxray Go source included; compiled .so, keystore, google-services.json ignored
109 lines
2.9 KiB
C++
109 lines
2.9 KiB
C++
// Copyright 2019 The BoringSSL Authors
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// https://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
#include <openssl/evp.h>
|
|
|
|
#include <openssl/curve25519.h>
|
|
#include <openssl/err.h>
|
|
#include <openssl/mem.h>
|
|
|
|
#include "internal.h"
|
|
|
|
|
|
// X25519 has no parameters to copy.
|
|
static int pkey_x25519_copy(EVP_PKEY_CTX *dst, EVP_PKEY_CTX *src) { return 1; }
|
|
|
|
static int pkey_x25519_keygen(EVP_PKEY_CTX *ctx, EVP_PKEY *pkey) {
|
|
X25519_KEY *key =
|
|
reinterpret_cast<X25519_KEY *>(OPENSSL_malloc(sizeof(X25519_KEY)));
|
|
if (key == NULL) {
|
|
return 0;
|
|
}
|
|
|
|
evp_pkey_set_method(pkey, &x25519_asn1_meth);
|
|
|
|
X25519_keypair(key->pub, key->priv);
|
|
key->has_private = 1;
|
|
|
|
OPENSSL_free(pkey->pkey);
|
|
pkey->pkey = key;
|
|
return 1;
|
|
}
|
|
|
|
static int pkey_x25519_derive(EVP_PKEY_CTX *ctx, uint8_t *out,
|
|
size_t *out_len) {
|
|
if (ctx->pkey == NULL || ctx->peerkey == NULL) {
|
|
OPENSSL_PUT_ERROR(EVP, EVP_R_KEYS_NOT_SET);
|
|
return 0;
|
|
}
|
|
|
|
const X25519_KEY *our_key =
|
|
reinterpret_cast<const X25519_KEY *>(ctx->pkey->pkey);
|
|
const X25519_KEY *peer_key =
|
|
reinterpret_cast<const X25519_KEY *>(ctx->peerkey->pkey);
|
|
if (our_key == NULL || peer_key == NULL) {
|
|
OPENSSL_PUT_ERROR(EVP, EVP_R_KEYS_NOT_SET);
|
|
return 0;
|
|
}
|
|
|
|
if (!our_key->has_private) {
|
|
OPENSSL_PUT_ERROR(EVP, EVP_R_NOT_A_PRIVATE_KEY);
|
|
return 0;
|
|
}
|
|
|
|
if (out != NULL) {
|
|
if (*out_len < 32) {
|
|
OPENSSL_PUT_ERROR(EVP, EVP_R_BUFFER_TOO_SMALL);
|
|
return 0;
|
|
}
|
|
if (!X25519(out, our_key->priv, peer_key->pub)) {
|
|
OPENSSL_PUT_ERROR(EVP, EVP_R_INVALID_PEER_KEY);
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
*out_len = 32;
|
|
return 1;
|
|
}
|
|
|
|
static int pkey_x25519_ctrl(EVP_PKEY_CTX *ctx, int type, int p1, void *p2) {
|
|
switch (type) {
|
|
case EVP_PKEY_CTRL_PEER_KEY:
|
|
// |EVP_PKEY_derive_set_peer| requires the key implement this command,
|
|
// even if it is a no-op.
|
|
return 1;
|
|
|
|
default:
|
|
OPENSSL_PUT_ERROR(EVP, EVP_R_COMMAND_NOT_SUPPORTED);
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
const EVP_PKEY_METHOD x25519_pkey_meth = {
|
|
/*pkey_id=*/EVP_PKEY_X25519,
|
|
/*init=*/NULL,
|
|
/*copy=*/pkey_x25519_copy,
|
|
/*cleanup=*/NULL,
|
|
/*keygen=*/pkey_x25519_keygen,
|
|
/*sign=*/NULL,
|
|
/*sign_message=*/NULL,
|
|
/*verify=*/NULL,
|
|
/*verify_message=*/NULL,
|
|
/*verify_recover=*/NULL,
|
|
/*encrypt=*/NULL,
|
|
/*decrypt=*/NULL,
|
|
/*derive=*/pkey_x25519_derive,
|
|
/*paramgen=*/NULL,
|
|
/*ctrl=*/pkey_x25519_ctrl,
|
|
};
|