seal_fhe 0.8.1

This crate contains Rust bindings for Microsoft's SEAL Fully Homomorphic Encryption (FHE) library.
Documentation
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.

// SEALNet
#include "seal/c/utilities.h"
#include "seal/c/version.h"

// SEAL
#include "seal/util/config.h"

using namespace std;
using namespace seal::c;

SEAL_C_FUNC Version_Major(uint8_t *result)
{
    IfNullRet(result, E_POINTER);

    *result = (uint8_t)SEAL_VERSION_MAJOR;
    return S_OK;
}

SEAL_C_FUNC Version_Minor(uint8_t *result)
{
    IfNullRet(result, E_POINTER);

    *result = (uint8_t)SEAL_VERSION_MINOR;
    return S_OK;
}

SEAL_C_FUNC Version_Patch(uint8_t *result)
{
    IfNullRet(result, E_POINTER);

    *result = (uint8_t)SEAL_VERSION_PATCH;
    return S_OK;
}