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
1.9 KiB
C++
55 lines
1.9 KiB
C++
// Copyright 2016 The Chromium 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 "cert_issuer_source_static.h"
|
|
|
|
BSSL_NAMESPACE_BEGIN
|
|
|
|
CertIssuerSourceStatic::CertIssuerSourceStatic() = default;
|
|
CertIssuerSourceStatic::~CertIssuerSourceStatic() = default;
|
|
|
|
void CertIssuerSourceStatic::AddCert(
|
|
std::shared_ptr<const ParsedCertificate> cert) {
|
|
intermediates_.insert(std::make_pair(
|
|
BytesAsStringView(cert->normalized_subject()), std::move(cert)));
|
|
}
|
|
|
|
void CertIssuerSourceStatic::Clear() { intermediates_.clear(); }
|
|
|
|
std::vector<std::shared_ptr<const ParsedCertificate>>
|
|
CertIssuerSourceStatic::Certs() const {
|
|
std::vector<std::shared_ptr<const ParsedCertificate>> result;
|
|
result.reserve(intermediates_.size());
|
|
for (const auto& [key, cert] : intermediates_) {
|
|
result.push_back(cert);
|
|
}
|
|
return result;
|
|
}
|
|
|
|
void CertIssuerSourceStatic::SyncGetIssuersOf(const ParsedCertificate *cert,
|
|
ParsedCertificateList *issuers) {
|
|
auto range =
|
|
intermediates_.equal_range(BytesAsStringView(cert->normalized_issuer()));
|
|
for (auto it = range.first; it != range.second; ++it) {
|
|
issuers->push_back(it->second);
|
|
}
|
|
}
|
|
|
|
void CertIssuerSourceStatic::AsyncGetIssuersOf(
|
|
const ParsedCertificate *cert, std::unique_ptr<Request> *out_req) {
|
|
// CertIssuerSourceStatic never returns asynchronous results.
|
|
out_req->reset();
|
|
}
|
|
|
|
BSSL_NAMESPACE_END
|