Son CV dans un terminal web en Javascript!
https://terminal-cv.gregandev.fr
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.
21 lines
320 B
21 lines
320 B
1 year ago
|
// Copyright 2011 Mark Cavage <mcavage@gmail.com> All rights reserved.
|
||
|
|
||
|
// If you have no idea what ASN.1 or BER is, see this:
|
||
|
// ftp://ftp.rsa.com/pub/pkcs/ascii/layman.asc
|
||
|
|
||
|
var Ber = require('./ber/index');
|
||
|
|
||
|
|
||
|
|
||
|
// --- Exported API
|
||
|
|
||
|
module.exports = {
|
||
|
|
||
|
Ber: Ber,
|
||
|
|
||
|
BerReader: Ber.Reader,
|
||
|
|
||
|
BerWriter: Ber.Writer
|
||
|
|
||
|
};
|