Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

new oid added #240

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
98 changes: 98 additions & 0 deletions lib/asn1/object_identifiers_database.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,104 @@
/// A list of object identifiers, holding the identifier and a readable name.
///
const oi = [
{
'identifierString': '1.2.860.3.15.1.1.1.1.4',
'readableName':
'UZDST 1092:2009 I digital signature parameters, UNICON.UZ paramset B',
'identifier': [1, 2, 860, 3, 15, 1, 1, 1, 1, 4]
},
{
'identifierString': '1.2.860.3.15.1.3.2.1.0',
'readableName': 'UZDST 1106:2009 II test digest parameters',
'identifier': [1, 2, 860, 3, 15, 1, 3, 2, 1, 0]
},
{
'identifierString': '1.2.860.3.15.1.1.2.1.1',
'readableName':
'UZDST 1092:2009 II signature parameters, UNICON.UZ paramset A',
'identifier': [1, 2, 860, 3, 15, 1, 1, 2, 1, 1]
},
{
'identifierString': '1.2.860.3.15.1.1.2.1.2',
'readableName':
'UZDST 1092:2009 II signature parameters, UNICON.UZ paramset B',
'identifier': [1, 2, 860, 3, 15, 1, 1, 2, 1, 2]
},
{
'identifierString': '1.2.860.3.16.1.1',
'readableName': 'Identifikatsionniy Nomer Nalogoplatelshika',
'identifier': [1, 2, 860, 3, 16, 1, 1]
},
{
'identifierString': '1.2.860.3.16.1.2',
'readableName': 'Personalniy Identifikatsionniy Nomer Fizicheskogo Litsa',
'identifier': [1, 2, 860, 3, 16, 1, 2]
},
{
'identifierString': '1.2.860.3.15.1.1.1.1',
'readableName': 'UZDST 1092:2009 I digital signature public key',
'identifier': [1, 2, 860, 3, 15, 1, 1, 1, 1]
},
{
'identifierString': '1.2.860.3.15.1.1.2.1',
'readableName': 'UZDST 1092:2009 II digital signature public key',
'identifier': [1, 2, 860, 3, 15, 1, 1, 2, 1]
},
{
'identifierString': '1.2.860.3.15.1.1.1.2.2.2',
'readableName':
'UZDST 1092:2009 I/1106:2009 digital signature algorithm with message digest',
'identifier': [1, 2, 860, 3, 15, 1, 1, 1, 2, 2, 2]
},
{
'identifierString': '1.2.860.3.15.1.1.2.2.2.2',
'readableName':
'UZDST 1092:2009 II/1106:2009 digital signature algorithm with message digest',
'identifier': [1, 2, 860, 3, 15, 1, 1, 2, 2, 2, 2]
},
{
'identifierString': '1.2.860.3.15.1.1.1.1.1',
'readableName':
'UZDST 1092:2009 I digital signature parameters, SICNT paramset A',
'identifier': [1, 2, 860, 3, 15, 1, 1, 1, 1, 1]
},
{
'identifierString': '1.2.860.3.15.1.1.1.1.2',
'readableName':
'UZDST 1092:2009 I digital signature parameters, SICNT paramset B',
'identifier': [1, 2, 860, 3, 15, 1, 1, 1, 1, 1]
},
{
'identifierString': '1.2.860.3.15.1.1.1.1.3',
'readableName':
'UZDST 1092:2009 I digital signature parameters, UNICON.UZ paramset A',
'identifier': [1, 2, 860, 3, 15, 1, 1, 1, 1, 3]
},
{
'identifierString': '1.2.860.3.15.1.3.2.1.1',
'readableName': 'UZDST 1106:2009 II default digest parameters',
'identifier': [1, 2, 860, 3, 15, 1, 3, 2, 1, 1]
},
{
'identifierString': '1.2.860.3.15.1.2.1',
'readableName': 'UZDST 1105:2009 symmetric cipher',
'identifier': [1, 2, 860, 3, 15, 1, 2, 1]
},
{
'identifierString': '1.2.860.3.15.1.3.2',
'readableName': 'UZDST 1106:2009 II digest',
'identifier': [1, 2, 860, 3, 15, 1, 3, 2]
},
{
'identifierString': '1.2.860.3.15.1.4.2',
'readableName': 'UZDST 1106:2009 II digest based HMAC',
'identifier': [1, 2, 860, 3, 15, 1, 4, 2]
},
{
'identifierString': '1.2.860.3.15.1.12.2.1',
'readableName': 'PBE with UZDST 1106:2009 II and UZDST 1105:2009',
'identifier': [1, 2, 860, 3, 15, 1, 12, 2, 1]
},
{
'identifierString': '1.2.840.113549.1.9.22.1',
'readableName': 'x509Certificate',
Expand Down