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 2021 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/blake2.h>
|
|
|
|
#include <gtest/gtest.h>
|
|
|
|
#include "../test/file_test.h"
|
|
#include "../test/test_util.h"
|
|
|
|
TEST(BLAKE2B256Test, ABC) {
|
|
// https://tools.ietf.org/html/rfc7693#appendix-A, except updated for the
|
|
// 256-bit hash output.
|
|
const uint8_t kExpected[] = {
|
|
0xbd, 0xdd, 0x81, 0x3c, 0x63, 0x42, 0x39, 0x72, 0x31, 0x71, 0xef,
|
|
0x3f, 0xee, 0x98, 0x57, 0x9b, 0x94, 0x96, 0x4e, 0x3b, 0xb1, 0xcb,
|
|
0x3e, 0x42, 0x72, 0x62, 0xc8, 0xc0, 0x68, 0xd5, 0x23, 0x19,
|
|
};
|
|
|
|
uint8_t digest[BLAKE2B256_DIGEST_LENGTH];
|
|
BLAKE2B256((const uint8_t *)"abc", 3, digest);
|
|
EXPECT_EQ(Bytes(kExpected), Bytes(digest));
|
|
}
|
|
|
|
TEST(BLAKE2B256Test, TestVectors) {
|
|
FileTestGTest("crypto/blake2/blake2b256_tests.txt", [](FileTest *t) {
|
|
std::vector<uint8_t> msg, expected;
|
|
ASSERT_TRUE(t->GetBytes(&msg, "IN"));
|
|
ASSERT_TRUE(t->GetBytes(&expected, "HASH"));
|
|
|
|
uint8_t digest[BLAKE2B256_DIGEST_LENGTH];
|
|
BLAKE2B256(msg.data(), msg.size(), digest);
|
|
EXPECT_EQ(Bytes(digest), Bytes(expected)) << msg.size();
|
|
|
|
OPENSSL_memset(digest, 0, sizeof(digest));
|
|
BLAKE2B_CTX b2b;
|
|
BLAKE2B256_Init(&b2b);
|
|
for (uint8_t b : msg) {
|
|
BLAKE2B256_Update(&b2b, &b, 1);
|
|
}
|
|
BLAKE2B256_Final(digest, &b2b);
|
|
EXPECT_EQ(Bytes(digest), Bytes(expected)) << msg.size();
|
|
});
|
|
}
|