dash/js-bindings/wrappers/G1ElementWrapper.cpp
Kittywhiskers Van Gogh 3bc4b00e69 Squashed 'src/dashbls/' content from commit 66ee820fbc
git-subtree-dir: src/dashbls
git-subtree-split: 66ee820fbc9e3b97370db8c164904af48327a124
2022-12-30 00:59:17 +05:30

77 lines
2.6 KiB
C++

// Copyright 2020 Chia Network Inc
// 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
// http://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 "G1ElementWrapper.h"
namespace js_wrappers {
G1ElementWrapper::G1ElementWrapper(const G1Element &publicKey) : JSWrapper(publicKey) {}
G1ElementWrapper::G1ElementWrapper() : JSWrapper(G1Element()) { }
const size_t G1ElementWrapper::SIZE = G1Element::SIZE;
std::vector <G1Element> G1ElementWrapper::Unwrap(std::vector <G1ElementWrapper> wrappers) {
std::vector <G1Element> unwrapped;
for (auto &wrapper : wrappers) {
unwrapped.push_back(wrapper.GetWrappedInstance());
}
return unwrapped;
}
G1ElementWrapper G1ElementWrapper::FromBytes(val buffer) {
std::vector <uint8_t> bytes = helpers::toVector(buffer);
const bls::Bytes bytesView(bytes);
G1Element pk = G1Element::FromBytes(bytesView);
return G1ElementWrapper(pk);
}
val G1ElementWrapper::Serialize() const {
return helpers::toUint8Array(wrapped.Serialize());
}
G1ElementWrapper G1ElementWrapper::Add(const G1ElementWrapper &other) {
return G1ElementWrapper(GetWrappedInstance() + other.GetWrappedInstance());
}
G1ElementWrapper G1ElementWrapper::Mul(const BignumWrapper &other) {
bn_t factor;
// Since the type of bn_t is bn_st[0], we can do this dance to make a temporary
// copy of the struct itself to hand to G1ElementWrapper's multiply. The
// type was clearly intended to by by-value in argument lists (degrade to ptr)
// but value semantics in C++ complicates matters.
factor[0] = *(&other.GetWrappedInstance());
return G1ElementWrapper(GetWrappedInstance() * factor);
}
bool G1ElementWrapper::EqualTo(const G1ElementWrapper &others) {
return GetWrappedInstance() == others.GetWrappedInstance();
}
G1ElementWrapper G1ElementWrapper::Negate() {
return G1ElementWrapper(GetWrappedInstance().Negate());
}
G1ElementWrapper G1ElementWrapper::Generator() {
return G1ElementWrapper(G1Element::Generator());
}
G1ElementWrapper G1ElementWrapper::Deepcopy() {
return G1ElementWrapper(GetWrappedInstance());
}
uint32_t G1ElementWrapper::GetFingerprint() const {
return wrapped.GetFingerprint();
}
} // namespace js_wrappers