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
82 lines
2.1 KiB
C
82 lines
2.1 KiB
C
// Copyright 2024 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.
|
|
|
|
#ifndef OPENSSL_HEADER_BCM_PUBLIC_H_
|
|
#define OPENSSL_HEADER_BCM_PUBLIC_H_
|
|
|
|
#include <openssl/base.h> // IWYU pragma: export
|
|
|
|
#if defined(__cplusplus)
|
|
extern "C" {
|
|
#endif
|
|
|
|
// Public types referenced by BoringCrypto
|
|
//
|
|
// This header contains public types referenced by BCM. Such types are difficult
|
|
// to hide from the libcrypto interface, so we treat them as part of BCM.
|
|
|
|
// BCM_SHA_CBLOCK is the block size of SHA-1.
|
|
#define BCM_SHA_CBLOCK 64
|
|
|
|
// SHA_CTX
|
|
struct sha_state_st {
|
|
#if defined(__cplusplus) || defined(OPENSSL_WINDOWS)
|
|
uint32_t h[5];
|
|
#else
|
|
// wpa_supplicant accesses |h0|..|h4| so we must support those names for
|
|
// compatibility with it until it can be updated. Anonymous unions are only
|
|
// standard in C11, so disable this workaround in C++.
|
|
union {
|
|
uint32_t h[5];
|
|
struct {
|
|
uint32_t h0;
|
|
uint32_t h1;
|
|
uint32_t h2;
|
|
uint32_t h3;
|
|
uint32_t h4;
|
|
};
|
|
};
|
|
#endif
|
|
uint32_t Nl, Nh;
|
|
uint8_t data[BCM_SHA_CBLOCK];
|
|
unsigned num;
|
|
};
|
|
|
|
// SHA256_CBLOCK is the block size of SHA-256.
|
|
#define BCM_SHA256_CBLOCK 64
|
|
|
|
// SHA256_CTX
|
|
struct sha256_state_st {
|
|
uint32_t h[8];
|
|
uint32_t Nl, Nh;
|
|
uint8_t data[BCM_SHA256_CBLOCK];
|
|
unsigned num, md_len;
|
|
};
|
|
|
|
// BCM_SHA512_CBLOCK is the block size of SHA-512.
|
|
#define BCM_SHA512_CBLOCK 128
|
|
|
|
struct sha512_state_st {
|
|
uint64_t h[8];
|
|
uint64_t Nl, Nh;
|
|
uint8_t p[BCM_SHA512_CBLOCK];
|
|
unsigned num, md_len;
|
|
};
|
|
|
|
|
|
#if defined(__cplusplus)
|
|
} // extern C
|
|
#endif
|
|
|
|
#endif // OPENSSL_HEADER_BCM_PUBLIC_H_
|