blob: ee3019cad809e2efd865dc054f7eb101d503b1fe [file] [log] [blame]
#pragma once
#include <android/binder_interface_utils.h>
#include <android/binder_parcelable_utils.h>
#include <android/binder_to_string.h>
#include <cstdint>
#include <memory>
#include <optional>
#include <string>
#include <vector>
#ifdef BINDER_STABILITY_SUPPORT
#include <android/binder_stability.h>
#endif // BINDER_STABILITY_SUPPORT
namespace aidl {
namespace android {
namespace hardware {
namespace security {
namespace sharedsecret {
class SharedSecretParameters {
public:
typedef std::false_type fixed_size;
static const char* descriptor;
std::vector<uint8_t> seed;
std::vector<uint8_t> nonce;
binder_status_t readFromParcel(const AParcel* parcel);
binder_status_t writeToParcel(AParcel* parcel) const;
inline bool operator!=(const SharedSecretParameters& rhs) const {
return std::tie(seed, nonce) != std::tie(rhs.seed, rhs.nonce);
}
inline bool operator<(const SharedSecretParameters& rhs) const {
return std::tie(seed, nonce) < std::tie(rhs.seed, rhs.nonce);
}
inline bool operator<=(const SharedSecretParameters& rhs) const {
return std::tie(seed, nonce) <= std::tie(rhs.seed, rhs.nonce);
}
inline bool operator==(const SharedSecretParameters& rhs) const {
return std::tie(seed, nonce) == std::tie(rhs.seed, rhs.nonce);
}
inline bool operator>(const SharedSecretParameters& rhs) const {
return std::tie(seed, nonce) > std::tie(rhs.seed, rhs.nonce);
}
inline bool operator>=(const SharedSecretParameters& rhs) const {
return std::tie(seed, nonce) >= std::tie(rhs.seed, rhs.nonce);
}
static const ::ndk::parcelable_stability_t _aidl_stability = ::ndk::STABILITY_VINTF;
inline std::string toString() const {
std::ostringstream os;
os << "SharedSecretParameters{";
os << "seed: " << ::android::internal::ToString(seed);
os << ", nonce: " << ::android::internal::ToString(nonce);
os << "}";
return os.str();
}
};
} // namespace sharedsecret
} // namespace security
} // namespace hardware
} // namespace android
} // namespace aidl