Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.js 320B

1234567891011121314151617181920
  1. // Copyright 2011 Mark Cavage <mcavage@gmail.com> All rights reserved.
  2. // If you have no idea what ASN.1 or BER is, see this:
  3. // ftp://ftp.rsa.com/pub/pkcs/ascii/layman.asc
  4. var Ber = require('./ber/index');
  5. ///--- Exported API
  6. module.exports = {
  7. Ber: Ber,
  8. BerReader: Ber.Reader,
  9. BerWriter: Ber.Writer
  10. };