sapling/eden/fs/model/TARGETS
Yedidya Feldblum d950fdeaed Wrappers for some of OpenSSL's crypto hash functions
Summary:
[Folly] Wrappers for some of OpenSSL's crypto hash functions.

Wraps some of the OpenSSL crypto hash functions with variants that take `ByteRange` for input and `MutableByteRange` for output, and also variants that take `const IOBuf&` for input as well.

These are a bit nicer to use than passing pointers and lengths separately.

Reviewed By: ivmaykov

Differential Revision: D3434562

fbshipit-source-id: 3688ef11680a029b7664ac417a7781e70f9c6926
2016-06-16 18:30:50 -07:00

15 lines
258 B
Plaintext

cpp_library(
name = 'model',
srcs = glob(['*.cpp']),
headers = glob(['*.h']),
deps = [
'@/folly:folly',
'@/folly/ssl:openssl_hash',
'@/eden/utils:utils',
],
external_deps = [
('boost', 'any'),
('openssl', None, 'ssl'),
],
)