~ubuntu-branches/debian/squeeze/erlang/squeeze

« back to all changes in this revision

Viewing changes to lib/ssh/src/DSS.asn1

  • Committer: Bazaar Package Importer
  • Author(s): Erlang Packagers, Sergei Golovan
  • Date: 2006-12-03 17:07:44 UTC
  • mfrom: (2.1.11 feisty)
  • Revision ID: james.westby@ubuntu.com-20061203170744-rghjwupacqlzs6kv
Tags: 1:11.b.2-4
[ Sergei Golovan ]
Fixed erlang-base and erlang-base-hipe prerm scripts.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
DSS DEFINITIONS EXPLICIT TAGS ::=
 
2
 
 
3
BEGIN
 
4
 
 
5
-- EXPORTS ALL
 
6
-- All types and values defined in this module are exported for use
 
7
-- in other ASN.1 modules.
 
8
 
 
9
DSAPrivateKey ::= SEQUENCE {
 
10
    version           INTEGER,
 
11
    p                 INTEGER,  -- p
 
12
    q                 INTEGER,  -- q
 
13
    g                 INTEGER,  -- q
 
14
    y                 INTEGER,  -- y
 
15
    x                 INTEGER   -- x
 
16
}
 
17
 
 
18
END
 
19
 
 
20