From owner-svn-ports-head@freebsd.org Wed Dec 5 10:10:42 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C1B85130D709; Wed, 5 Dec 2018 10:10:42 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5A5368E075; Wed, 5 Dec 2018 10:10:42 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3B52E12E68; Wed, 5 Dec 2018 10:10:42 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id wB5AAgpV067188; Wed, 5 Dec 2018 10:10:42 GMT (envelope-from lwhsu@FreeBSD.org) Received: (from lwhsu@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id wB5AAfpx067183; Wed, 5 Dec 2018 10:10:41 GMT (envelope-from lwhsu@FreeBSD.org) Message-Id: <201812051010.wB5AAfpx067183@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lwhsu set sender to lwhsu@FreeBSD.org using -f From: Li-Wen Hsu Date: Wed, 5 Dec 2018 10:10:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r486664 - in head/security: . seal X-SVN-Group: ports-head X-SVN-Commit-Author: lwhsu X-SVN-Commit-Paths: in head/security: . seal X-SVN-Commit-Revision: 486664 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 5A5368E075 X-Spamd-Result: default: False [-0.05 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-0.52)[-0.521,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_SPAM_SHORT(0.50)[0.499,0]; NEURAL_HAM_LONG(-0.03)[-0.031,0] X-Rspamd-Server: mx1.freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 05 Dec 2018 10:10:43 -0000 Author: lwhsu Date: Wed Dec 5 10:10:40 2018 New Revision: 486664 URL: https://svnweb.freebsd.org/changeset/ports/486664 Log: Add seal, Microsoft Simple Encrypted Arithmetic Library Added: head/security/seal/ head/security/seal/Makefile (contents, props changed) head/security/seal/distinfo (contents, props changed) head/security/seal/pkg-descr (contents, props changed) head/security/seal/pkg-plist (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Wed Dec 5 10:07:28 2018 (r486663) +++ head/security/Makefile Wed Dec 5 10:10:40 2018 (r486664) @@ -1228,6 +1228,7 @@ SUBDIR += scanssh SUBDIR += scrypt SUBDIR += seahorse + SUBDIR += seal SUBDIR += seccure SUBDIR += secpanel SUBDIR += sectok Added: head/security/seal/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/seal/Makefile Wed Dec 5 10:10:40 2018 (r486664) @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= seal +PORTVERSION= 3.1.0 +CATEGORIES= security + +MAINTAINER= lwhsu@FreeBSD.org +COMMENT= Microsoft Simple Encrypted Arithmetic Library + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= cmake + +CMAKE_SOURCE_PATH= ${WRKSRC}/src + +USE_GITHUB= yes +GH_ACCOUNT= Microsoft +GH_PROJECT= SEAL + +.include Added: head/security/seal/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/seal/distinfo Wed Dec 5 10:10:40 2018 (r486664) @@ -0,0 +1,3 @@ +TIMESTAMP = 1543982381 +SHA256 (Microsoft-SEAL-3.1.0_GH0.tar.gz) = 5f8f846f8b715dec7d5ff1ae4d1256d86a88925f1b39179dc5ac3e0b7a2d39e3 +SIZE (Microsoft-SEAL-3.1.0_GH0.tar.gz) = 248141 Added: head/security/seal/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/seal/pkg-descr Wed Dec 5 10:10:40 2018 (r486664) @@ -0,0 +1,7 @@ +The Simple Encrypted Arithmetic Library (SEAL) is an easy-to-use but powerful +open-source homomorphic encryption library, developed by researchers in the +Cryptography Research Group at Microsoft Research. SEAL is written in standard +C++; it has no external dependencies, so it is easy to compile in many +different environments. SEAL is licensed under the MIT license. + +WWW: http://sealcrypto.org Added: head/security/seal/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/seal/pkg-plist Wed Dec 5 10:10:40 2018 (r486664) @@ -0,0 +1,53 @@ +include/seal/batchencoder.h +include/seal/biguint.h +include/seal/ciphertext.h +include/seal/ckks.h +include/seal/context.h +include/seal/decryptor.h +include/seal/defaultparams.h +include/seal/encoder.h +include/seal/encryptionparams.h +include/seal/encryptor.h +include/seal/evaluator.h +include/seal/galoiskeys.h +include/seal/intarray.h +include/seal/keygenerator.h +include/seal/memorymanager.h +include/seal/plaintext.h +include/seal/publickey.h +include/seal/randomgen.h +include/seal/relinkeys.h +include/seal/seal.h +include/seal/secretkey.h +include/seal/smallmodulus.h +include/seal/util/aes.h +include/seal/util/baseconverter.h +include/seal/util/clang.h +include/seal/util/clipnormal.h +include/seal/util/common.h +include/seal/util/config.h +include/seal/util/defines.h +include/seal/util/gcc.h +include/seal/util/globals.h +include/seal/util/hash.h +include/seal/util/hestdparms.h +include/seal/util/locks.h +include/seal/util/mempool.h +include/seal/util/msvc.h +include/seal/util/numth.h +include/seal/util/pointer.h +include/seal/util/polyarith.h +include/seal/util/polyarithmod.h +include/seal/util/polyarithsmallmod.h +include/seal/util/polycore.h +include/seal/util/randomtostd.h +include/seal/util/smallntt.h +include/seal/util/uintarith.h +include/seal/util/uintarithmod.h +include/seal/util/uintarithsmallmod.h +include/seal/util/uintcore.h +lib/cmake/SEAL/SEALConfig.cmake +lib/cmake/SEAL/SEALConfigVersion.cmake +lib/cmake/SEAL/SEALTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/SEAL/SEALTargets.cmake +lib/libseal.a