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
225 lines
6.5 KiB
C++
225 lines
6.5 KiB
C++
// Copyright 2017 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/bytestring.h>
|
|
#include <openssl/curve25519.h>
|
|
#include <openssl/err.h>
|
|
#include <openssl/mem.h>
|
|
|
|
#include "../internal.h"
|
|
#include "internal.h"
|
|
|
|
|
|
static void ed25519_free(EVP_PKEY *pkey) {
|
|
OPENSSL_free(pkey->pkey);
|
|
pkey->pkey = NULL;
|
|
}
|
|
|
|
static int ed25519_set_priv_raw(EVP_PKEY *pkey, const uint8_t *in, size_t len) {
|
|
if (len != 32) {
|
|
OPENSSL_PUT_ERROR(EVP, EVP_R_DECODE_ERROR);
|
|
return 0;
|
|
}
|
|
|
|
ED25519_KEY *key =
|
|
reinterpret_cast<ED25519_KEY *>(OPENSSL_malloc(sizeof(ED25519_KEY)));
|
|
if (key == NULL) {
|
|
return 0;
|
|
}
|
|
|
|
// The RFC 8032 encoding stores only the 32-byte seed, so we must recover the
|
|
// full representation which we use from it.
|
|
uint8_t pubkey_unused[32];
|
|
ED25519_keypair_from_seed(pubkey_unused, key->key, in);
|
|
key->has_private = 1;
|
|
|
|
ed25519_free(pkey);
|
|
pkey->pkey = key;
|
|
return 1;
|
|
}
|
|
|
|
static int ed25519_set_pub_raw(EVP_PKEY *pkey, const uint8_t *in, size_t len) {
|
|
if (len != 32) {
|
|
OPENSSL_PUT_ERROR(EVP, EVP_R_DECODE_ERROR);
|
|
return 0;
|
|
}
|
|
|
|
ED25519_KEY *key =
|
|
reinterpret_cast<ED25519_KEY *>(OPENSSL_malloc(sizeof(ED25519_KEY)));
|
|
if (key == NULL) {
|
|
return 0;
|
|
}
|
|
|
|
OPENSSL_memcpy(key->key + ED25519_PUBLIC_KEY_OFFSET, in, 32);
|
|
key->has_private = 0;
|
|
|
|
ed25519_free(pkey);
|
|
pkey->pkey = key;
|
|
return 1;
|
|
}
|
|
|
|
static int ed25519_get_priv_raw(const EVP_PKEY *pkey, uint8_t *out,
|
|
size_t *out_len) {
|
|
const ED25519_KEY *key = reinterpret_cast<const ED25519_KEY *>(pkey->pkey);
|
|
if (!key->has_private) {
|
|
OPENSSL_PUT_ERROR(EVP, EVP_R_NOT_A_PRIVATE_KEY);
|
|
return 0;
|
|
}
|
|
|
|
if (out == NULL) {
|
|
*out_len = 32;
|
|
return 1;
|
|
}
|
|
|
|
if (*out_len < 32) {
|
|
OPENSSL_PUT_ERROR(EVP, EVP_R_BUFFER_TOO_SMALL);
|
|
return 0;
|
|
}
|
|
|
|
// The raw private key format is the first 32 bytes of the private key.
|
|
OPENSSL_memcpy(out, key->key, 32);
|
|
*out_len = 32;
|
|
return 1;
|
|
}
|
|
|
|
static int ed25519_get_pub_raw(const EVP_PKEY *pkey, uint8_t *out,
|
|
size_t *out_len) {
|
|
const ED25519_KEY *key = reinterpret_cast<const ED25519_KEY *>(pkey->pkey);
|
|
if (out == NULL) {
|
|
*out_len = 32;
|
|
return 1;
|
|
}
|
|
|
|
if (*out_len < 32) {
|
|
OPENSSL_PUT_ERROR(EVP, EVP_R_BUFFER_TOO_SMALL);
|
|
return 0;
|
|
}
|
|
|
|
OPENSSL_memcpy(out, key->key + ED25519_PUBLIC_KEY_OFFSET, 32);
|
|
*out_len = 32;
|
|
return 1;
|
|
}
|
|
|
|
static int ed25519_pub_decode(EVP_PKEY *out, CBS *params, CBS *key) {
|
|
// See RFC 8410, section 4.
|
|
|
|
// The parameters must be omitted. Public keys have length 32.
|
|
if (CBS_len(params) != 0) {
|
|
OPENSSL_PUT_ERROR(EVP, EVP_R_DECODE_ERROR);
|
|
return 0;
|
|
}
|
|
|
|
return ed25519_set_pub_raw(out, CBS_data(key), CBS_len(key));
|
|
}
|
|
|
|
static int ed25519_pub_encode(CBB *out, const EVP_PKEY *pkey) {
|
|
const ED25519_KEY *key = reinterpret_cast<const ED25519_KEY *>(pkey->pkey);
|
|
|
|
// See RFC 8410, section 4.
|
|
CBB spki, algorithm, oid, key_bitstring;
|
|
if (!CBB_add_asn1(out, &spki, CBS_ASN1_SEQUENCE) ||
|
|
!CBB_add_asn1(&spki, &algorithm, CBS_ASN1_SEQUENCE) ||
|
|
!CBB_add_asn1(&algorithm, &oid, CBS_ASN1_OBJECT) ||
|
|
!CBB_add_bytes(&oid, ed25519_asn1_meth.oid, ed25519_asn1_meth.oid_len) ||
|
|
!CBB_add_asn1(&spki, &key_bitstring, CBS_ASN1_BITSTRING) ||
|
|
!CBB_add_u8(&key_bitstring, 0 /* padding */) ||
|
|
!CBB_add_bytes(&key_bitstring, key->key + ED25519_PUBLIC_KEY_OFFSET,
|
|
32) ||
|
|
!CBB_flush(out)) {
|
|
OPENSSL_PUT_ERROR(EVP, EVP_R_ENCODE_ERROR);
|
|
return 0;
|
|
}
|
|
|
|
return 1;
|
|
}
|
|
|
|
static int ed25519_pub_cmp(const EVP_PKEY *a, const EVP_PKEY *b) {
|
|
const ED25519_KEY *a_key = reinterpret_cast<const ED25519_KEY *>(a->pkey);
|
|
const ED25519_KEY *b_key = reinterpret_cast<const ED25519_KEY *>(b->pkey);
|
|
return OPENSSL_memcmp(a_key->key + ED25519_PUBLIC_KEY_OFFSET,
|
|
b_key->key + ED25519_PUBLIC_KEY_OFFSET, 32) == 0;
|
|
}
|
|
|
|
static int ed25519_priv_decode(EVP_PKEY *out, CBS *params, CBS *key) {
|
|
// See RFC 8410, section 7.
|
|
|
|
// Parameters must be empty. The key is a 32-byte value wrapped in an extra
|
|
// OCTET STRING layer.
|
|
CBS inner;
|
|
if (CBS_len(params) != 0 ||
|
|
!CBS_get_asn1(key, &inner, CBS_ASN1_OCTETSTRING) || CBS_len(key) != 0) {
|
|
OPENSSL_PUT_ERROR(EVP, EVP_R_DECODE_ERROR);
|
|
return 0;
|
|
}
|
|
|
|
return ed25519_set_priv_raw(out, CBS_data(&inner), CBS_len(&inner));
|
|
}
|
|
|
|
static int ed25519_priv_encode(CBB *out, const EVP_PKEY *pkey) {
|
|
const ED25519_KEY *key = reinterpret_cast<const ED25519_KEY *>(pkey->pkey);
|
|
if (!key->has_private) {
|
|
OPENSSL_PUT_ERROR(EVP, EVP_R_NOT_A_PRIVATE_KEY);
|
|
return 0;
|
|
}
|
|
|
|
// See RFC 8410, section 7.
|
|
CBB pkcs8, algorithm, oid, private_key, inner;
|
|
if (!CBB_add_asn1(out, &pkcs8, CBS_ASN1_SEQUENCE) ||
|
|
!CBB_add_asn1_uint64(&pkcs8, 0 /* version */) ||
|
|
!CBB_add_asn1(&pkcs8, &algorithm, CBS_ASN1_SEQUENCE) ||
|
|
!CBB_add_asn1(&algorithm, &oid, CBS_ASN1_OBJECT) ||
|
|
!CBB_add_bytes(&oid, ed25519_asn1_meth.oid, ed25519_asn1_meth.oid_len) ||
|
|
!CBB_add_asn1(&pkcs8, &private_key, CBS_ASN1_OCTETSTRING) ||
|
|
!CBB_add_asn1(&private_key, &inner, CBS_ASN1_OCTETSTRING) ||
|
|
// The PKCS#8 encoding stores only the 32-byte seed which is the first 32
|
|
// bytes of the private key.
|
|
!CBB_add_bytes(&inner, key->key, 32) || //
|
|
!CBB_flush(out)) {
|
|
OPENSSL_PUT_ERROR(EVP, EVP_R_ENCODE_ERROR);
|
|
return 0;
|
|
}
|
|
|
|
return 1;
|
|
}
|
|
|
|
static int ed25519_size(const EVP_PKEY *pkey) { return 64; }
|
|
|
|
static int ed25519_bits(const EVP_PKEY *pkey) { return 253; }
|
|
|
|
const EVP_PKEY_ASN1_METHOD ed25519_asn1_meth = {
|
|
EVP_PKEY_ED25519,
|
|
{0x2b, 0x65, 0x70},
|
|
3,
|
|
&ed25519_pkey_meth,
|
|
ed25519_pub_decode,
|
|
ed25519_pub_encode,
|
|
ed25519_pub_cmp,
|
|
ed25519_priv_decode,
|
|
ed25519_priv_encode,
|
|
ed25519_set_priv_raw,
|
|
ed25519_set_pub_raw,
|
|
ed25519_get_priv_raw,
|
|
ed25519_get_pub_raw,
|
|
/*set1_tls_encodedpoint=*/NULL,
|
|
/*get1_tls_encodedpoint=*/NULL,
|
|
/*pkey_opaque=*/NULL,
|
|
ed25519_size,
|
|
ed25519_bits,
|
|
/*param_missing=*/NULL,
|
|
/*param_copy=*/NULL,
|
|
/*param_cmp=*/NULL,
|
|
ed25519_free,
|
|
};
|