This module provides common interface to HMAC functionality. HMAC is a kind of "Message Authentication Code" (MAC) algorithm whose standard is documented in RFC2104. Namely, a MAC provides a way to check the integrity of information transmitted over or stored in an unreliable medium, based on a secret key. ok aja@
19 lines
328 B
Makefile
19 lines
328 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2013/07/01 16:46:45 jasper Exp $
|
|
|
|
COMMENT = common interface to HMAC functionality
|
|
|
|
DISTNAME = ruby-hmac-0.4.0
|
|
PKGNAME = ${DISTNAME:S/ruby-//}
|
|
CATEGORIES = security
|
|
|
|
# MIT
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
|
|
MODULES = lang/ruby
|
|
|
|
CONFIGURE_STYLE = ruby gem
|
|
|
|
MODRUBY_TEST= rake
|
|
|
|
.include <bsd.port.mk>
|