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
55 lines
2 KiB
C
55 lines
2 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_CRYPTO_RAND_INTERNAL_H
|
|
#define OPENSSL_HEADER_CRYPTO_RAND_INTERNAL_H
|
|
|
|
#include <openssl/base.h>
|
|
|
|
#if defined(FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION)
|
|
#define OPENSSL_RAND_DETERMINISTIC
|
|
#elif defined(OPENSSL_TRUSTY)
|
|
#define OPENSSL_RAND_TRUSTY
|
|
#elif defined(OPENSSL_WINDOWS)
|
|
#define OPENSSL_RAND_WINDOWS
|
|
#elif defined(OPENSSL_LINUX)
|
|
#define OPENSSL_RAND_URANDOM
|
|
#elif defined(OPENSSL_APPLE) && !defined(OPENSSL_MACOS)
|
|
// Unlike macOS, iOS and similar hide away getentropy().
|
|
#define OPENSSL_RAND_IOS
|
|
#else
|
|
// By default if you are integrating BoringSSL we expect you to
|
|
// provide getentropy from the <unistd.h> header file.
|
|
#define OPENSSL_RAND_GETENTROPY
|
|
#endif
|
|
|
|
#if defined(OPENSSL_LINUX)
|
|
// On linux we use MADVISE instead of pthread_atfork(), due
|
|
// to concerns about clone() being used for address space
|
|
// duplication.
|
|
#define OPENSSL_FORK_DETECTION
|
|
#define OPENSSL_FORK_DETECTION_MADVISE
|
|
#elif defined(OPENSSL_MACOS) || defined(OPENSSL_IOS) || \
|
|
defined(OPENSSL_OPENBSD) || defined(OPENSSL_FREEBSD)
|
|
// These platforms may detect address space duplication with pthread_atfork.
|
|
// iOS doesn't normally allow fork in apps, but it's there.
|
|
#define OPENSSL_FORK_DETECTION
|
|
#define OPENSSL_FORK_DETECTION_PTHREAD_ATFORK
|
|
#elif defined(OPENSSL_WINDOWS) || defined(OPENSSL_TRUSTY) || \
|
|
defined(__ZEPHYR__) || defined(CROS_EC)
|
|
// These platforms do not fork.
|
|
#define OPENSSL_DOES_NOT_FORK
|
|
#endif
|
|
|
|
#endif // OPENSSL_HEADER_CRYPTO_RAND_INTERNAL_H
|