-
-
Notifications
You must be signed in to change notification settings - Fork 553
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adding support for Eiffel programming language
- Loading branch information
Showing
2 changed files
with
23 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,25 @@ | ||
-- 34 lines 16 code 11 comments 7 blanks | ||
PKCS-12 { | ||
iso(1) member-body(2) us(840) rsadsi(113549) pkcs(1) pkcs-12(12) | ||
modules(0) pkcs-12(1) } | ||
-- 25 lines 16 code 3 comments 6 blanks | ||
note | ||
description: "eiffel_tokei application root class" | ||
date: "$Date$" | ||
revision: "$Revision$" | ||
|
||
-- PKCS #12 v1.1 ASN.1 Module | ||
-- Revised October 27, 2012 | ||
class | ||
APPLICATION | ||
|
||
-- This module has been checked for conformance with the ASN.1 standard | ||
-- by the OSS ASN.1 Tools | ||
inherit | ||
ARGUMENTS_32 | ||
|
||
DEFINITIONS IMPLICIT TAGS ::= | ||
create | ||
make | ||
|
||
BEGIN | ||
feature {NONE} -- Initialization | ||
|
||
PFX ::= SEQUENCE { | ||
version INTEGER {v3(3)}(v3,...), | ||
authSafe OCTET STRING, | ||
macData MacData /* " " */ OPTIONAL | ||
} | ||
make | ||
-- Run application. | ||
do | ||
--| Add your code here | ||
print ("Hello Eiffel World!%N") | ||
end | ||
|
||
/* | ||
* Multi line | ||
* | ||
*/ | ||
|
||
MacData ::= SEQUENCE { | ||
mac OBJECT IDENTIFIER, | ||
macSalt OCTET STRING, | ||
iterations INTEGER DEFAULT 1 | ||
-- Note: The default is for historical reasons and its use is | ||
-- deprecated. | ||
} | ||
END | ||
end |