Sha256: ce9e3478a65313721fff2eb095b00f7a88494065b29fe8c8cf8efba375d315e5
Contents?: true
Size: 454 Bytes
Versions: 2
Compression:
Stored size: 454 Bytes
Contents
# frozen_string_literal: true # (c) 2017 Ribose Inc. module Botan module X509 module Constraints DECIPHER_ONLY = 1 << 7 ENCIPHER_ONLY = 1 << 8 CRL_SIGN = 1 << 9 KEY_CERT_SIGN = 1 << 10 KEY_AGREEMENT = 1 << 11 DATA_ENCIPHERMENT = 1 << 12 KEY_ENCIPHERMENT = 1 << 13 NON_REPUDIATION = 1 << 14 DIGITAL_SIGNATURE = 1 << 15 end end # module end # module
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
botan-0.1.2 | lib/botan/x509/constraints.rb |
botan-0.1.0 | lib/botan/x509/constraints.rb |