Home | History | Annotate | Download | only in src
      1 /*############################################################################
      2   # Copyright 2017 Intel Corporation
      3   #
      4   # Licensed under the Apache License, Version 2.0 (the "License");
      5   # you may not use this file except in compliance with the License.
      6   # You may obtain a copy of the License at
      7   #
      8   #     http://www.apache.org/licenses/LICENSE-2.0
      9   #
     10   # Unless required by applicable law or agreed to in writing, software
     11   # distributed under the License is distributed on an "AS IS" BASIS,
     12   # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     13   # See the License for the specific language governing permissions and
     14   # limitations under the License.
     15   ############################################################################*/
     16 /// Tiny member ProvisionCompressed implementation.
     17 /*! \file */
     18 
     19 #define EXPORT_EPID_APIS
     20 #include <epid/member/api.h>
     21 
     22 EpidStatus EPID_API
     23 EpidProvisionCompressed(MemberCtx* ctx, GroupPubKey const* pub_key,
     24                         CompressedPrivKey const* compressed_privkey,
     25                         MemberPrecomp const* precomp_str) {
     26   (void)ctx;
     27   (void)pub_key;
     28   (void)compressed_privkey;
     29   (void)precomp_str;
     30   return kEpidNotImpl;
     31 }
     32