Skip to content

Commit 6a10f7c

Browse files
committedDec 28, 2021
Fix OID serialName to serialNumber.
- OID 2.5.4.5 should be `serialNumber`.
1 parent c0bb359 commit 6a10f7c

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed
 

‎CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,11 @@ Forge ChangeLog
1818
### Added
1919
- OIDs for `surname`, `title`, and `givenName`.
2020

21+
### Fixed
22+
- **BREAKING**: OID 2.5.4.5 name fixed from `serialName` to `serialNumber`.
23+
Depending on how applications used this id to name association it could cause
24+
compatibility issues.
25+
2126
## 0.10.0 - 2020-09-01
2227

2328
### Changed

‎lib/oids.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ _IN('2.16.840.1.101.3.4.1.42', 'aes256-CBC');
105105
// certificate issuer/subject OIDs
106106
_IN('2.5.4.3', 'commonName');
107107
_IN('2.5.4.4', 'surname');
108-
_IN('2.5.4.5', 'serialName');
108+
_IN('2.5.4.5', 'serialNumber');
109109
_IN('2.5.4.6', 'countryName');
110110
_IN('2.5.4.7', 'localityName');
111111
_IN('2.5.4.8', 'stateOrProvinceName');

0 commit comments

Comments
 (0)
Please sign in to comment.