1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641
|
//===----------------------------------------------------------------------===//
//
// This source file is part of the SwiftCertificates open source project
//
// Copyright (c) 2022 Apple Inc. and the SwiftCertificates project authors
// Licensed under Apache License v2.0
//
// See LICENSE.txt for license information
// See CONTRIBUTORS.txt for the list of SwiftCertificates project authors
//
// SPDX-License-Identifier: Apache-2.0
//
//===----------------------------------------------------------------------===//
import XCTest
import Crypto
import _CryptoExtras
import SwiftASN1
@testable import X509
final class CertificateTests: XCTestCase {
func testPrintingSerial() {
let serial = Certificate.SerialNumber(bytes: [10, 20, 30, 40])
let s = String(describing: serial)
XCTAssertEqual(s, "a:14:1e:28")
}
#if swift(>=5.8)
@available(macOS 13.3, iOS 16.4, watchOS 9.4, tvOS 16.4, *)
func testSerialNumberStaticBigInt() {
XCTAssertEqual(
(0b0000_0001__0000_0010__0000_0011__0000_0100__0000_0101__0000_0110__0000_0111__0000_1000__0000_1001__0000_1010__0000_1011__0000_1100__0000_1101__0000_1110
as Certificate.SerialNumber).bytes,
[1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14]
)
XCTAssertEqual(
(0x00_01_02_03_04_05_06_07_08_09_0A_0B_0C_0D_0E_0F_10_11_12_13_14 as Certificate.SerialNumber).bytes,
[1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20]
)
XCTAssertEqual(Certificate.SerialNumber(123_456_789), 123_456_789)
}
#endif
func testSerialNumberInits() {
XCTAssertEqual(Certificate.SerialNumber(bytes: [0, 1, 2, 3, 4, 5, 6, 7, 8]).bytes, [1, 2, 3, 4, 5, 6, 7, 8])
XCTAssertEqual(
Certificate.SerialNumber(bytes: [0, 1, 2, 3, 4, 5, 6, 7, 8][...]).bytes,
[1, 2, 3, 4, 5, 6, 7, 8]
)
XCTAssertEqual(
Certificate.SerialNumber(bytes: AnyCollection([0, 1, 2, 3, 4, 5, 6, 7, 8])).bytes,
[1, 2, 3, 4, 5, 6, 7, 8]
)
}
func testPrintingVersions() {
XCTAssertEqual(String(describing: Certificate.Version.v1), "X509v1")
XCTAssertEqual(String(describing: Certificate.Version.v3), "X509v3")
XCTAssertEqual(String(describing: Certificate.Version(rawValue: 5)), "X509v6")
}
func testPrintingGeneralName() throws {
let testDN = try DistinguishedName([
RelativeDistinguishedName.Attribute(type: .RDNAttributeType.countryName, utf8String: "US"),
RelativeDistinguishedName.Attribute(type: .RDNAttributeType.organizationName, utf8String: "DigiCert Inc"),
RelativeDistinguishedName.Attribute(
type: .RDNAttributeType.organizationalUnitName,
utf8String: "www.digicert.com"
),
RelativeDistinguishedName.Attribute(
type: .RDNAttributeType.commonName,
utf8String: "DigiCert Global Root G3"
),
])
XCTAssertEqual(
String(describing: GeneralName.dnsName("www.apple.com")),
"DNSName(\"www.apple.com\")"
)
XCTAssertEqual(
String(describing: GeneralName.directoryName(testDN)),
#"DirectoryName("CN=DigiCert Global Root G3,OU=www.digicert.com,O=DigiCert Inc,C=US")"#
)
XCTAssertEqual(
try String(describing: GeneralName.ediPartyName(ASN1Any(erasing: ASN1Null()))),
"EDIPartyName(ASN1Any([5, 0]))"
)
XCTAssertEqual(
String(describing: GeneralName.ipAddress(ASN1OctetString(contentBytes: [127, 0, 0, 1]))),
"IPAddress([127, 0, 0, 1])"
)
XCTAssertEqual(
String(describing: GeneralName.registeredID([1, 2, 3, 4, 5])),
"RegisteredID(1.2.3.4.5)"
)
XCTAssertEqual(
String(describing: GeneralName.rfc822Name("mail@example.com")),
"RFC822Name(\"mail@example.com\")"
)
XCTAssertEqual(
try String(describing: GeneralName.x400Address(ASN1Any(erasing: ASN1Null()))),
"X400Address(ASN1Any([5, 0]))"
)
XCTAssertEqual(
String(describing: GeneralName.uniformResourceIdentifier("http://www.apple.com/")),
"URI(\"http://www.apple.com/\")"
)
}
func testPrintingAIAExtension() throws {
let ext = AuthorityInformationAccess([
.init(method: .issuingCA, location: .uniformResourceIdentifier("https://example.com/ca")),
.init(method: .ocspServer, location: .uniformResourceIdentifier("http://example.com/ocsp")),
.init(method: .init(.unknownType([1, 2, 3, 4])), location: .rfc822Name("mail@example.com")),
])
let s = String(describing: ext)
XCTAssertEqual(
s,
"(Issuer: URI(\"https://example.com/ca\")), (OCSP Server: URI(\"http://example.com/ocsp\")), (1.2.3.4: RFC822Name(\"mail@example.com\"))"
)
}
func testRangeReplaceableCollectionConformance() throws {
var ext = AuthorityInformationAccess([
.init(method: .issuingCA, location: .uniformResourceIdentifier("https://example.com/ca")),
.init(method: .ocspServer, location: .uniformResourceIdentifier("http://example.com/ocsp")),
.init(method: .init(.unknownType([1, 2, 3, 4])), location: .rfc822Name("mail@example.com")),
])
ext.replaceSubrange(
1..<2,
with: [
.init(method: .ocspServer, location: .uniformResourceIdentifier("http://example.com/ocsp/a")),
.init(method: .ocspServer, location: .uniformResourceIdentifier("http://example.com/ocsp/b")),
]
)
XCTAssertEqual(
Array(ext),
[
.init(method: .issuingCA, location: .uniformResourceIdentifier("https://example.com/ca")),
.init(method: .ocspServer, location: .uniformResourceIdentifier("http://example.com/ocsp/a")),
.init(method: .ocspServer, location: .uniformResourceIdentifier("http://example.com/ocsp/b")),
.init(method: .init(.unknownType([1, 2, 3, 4])), location: .rfc822Name("mail@example.com")),
]
)
func conformsToRangeReplaceableCollection(_ value: some Any) -> Bool {
value is any RangeReplaceableCollection
}
// writing out `ext is any RangeReplaceableCollection` will produce a warning that this is always true
// therefore we go through this indirection to silence this warning
XCTAssertTrue(conformsToRangeReplaceableCollection(ext))
}
func testPrintingAKIExtension() throws {
var ext = AuthorityKeyIdentifier(
keyIdentifier: [10, 20, 30, 40],
authorityCertIssuer: [.uniformResourceIdentifier("https://example.com/ca")],
authorityCertSerialNumber: .init(bytes: [50, 60, 70, 80])
)
var s = String(describing: ext)
XCTAssertEqual(
s,
"keyID: a:14:1e:28, issuer: [URI(\"https://example.com/ca\")], issuerSerial: 32:3c:46:50"
)
ext.keyIdentifier = nil
s = String(describing: ext)
XCTAssertEqual(
s,
"issuer: [URI(\"https://example.com/ca\")], issuerSerial: 32:3c:46:50"
)
ext.authorityCertSerialNumber = nil
s = String(describing: ext)
XCTAssertEqual(
s,
"issuer: [URI(\"https://example.com/ca\")]"
)
ext.authorityCertIssuer = nil
s = String(describing: ext)
XCTAssertEqual(
s,
""
)
}
func testPrintingSKIExtension() throws {
let ext = SubjectKeyIdentifier(keyIdentifier: [10, 20, 30, 40])
let s = String(describing: ext)
XCTAssertEqual(s, "a:14:1e:28")
}
func testPrintingKeyUsageExtension() {
var ext = KeyUsage()
var s = String(describing: ext)
XCTAssertEqual(s, "")
ext.decipherOnly = true
s = String(describing: ext)
XCTAssertEqual(s, "decipherOnly")
ext.encipherOnly = true
s = String(describing: ext)
XCTAssertEqual(s, "encipherOnly, decipherOnly")
ext.digitalSignature = true
s = String(describing: ext)
XCTAssertEqual(s, "digitalSignature, encipherOnly, decipherOnly")
ext.keyEncipherment = true
s = String(describing: ext)
XCTAssertEqual(s, "digitalSignature, keyEncipherment, encipherOnly, decipherOnly")
ext.dataEncipherment = true
s = String(describing: ext)
XCTAssertEqual(
s,
"digitalSignature, keyEncipherment, dataEncipherment, encipherOnly, decipherOnly"
)
ext.nonRepudiation = true
s = String(describing: ext)
XCTAssertEqual(
s,
"digitalSignature, nonRepudiation, keyEncipherment, dataEncipherment, encipherOnly, decipherOnly"
)
ext.cRLSign = true
s = String(describing: ext)
XCTAssertEqual(
s,
"digitalSignature, nonRepudiation, keyEncipherment, dataEncipherment, cRLSign, encipherOnly, decipherOnly"
)
ext.keyAgreement = true
s = String(describing: ext)
XCTAssertEqual(
s,
"digitalSignature, nonRepudiation, keyEncipherment, dataEncipherment, keyAgreement, cRLSign, encipherOnly, decipherOnly"
)
ext.keyCertSign = true
s = String(describing: ext)
XCTAssertEqual(
s,
"digitalSignature, nonRepudiation, keyEncipherment, dataEncipherment, keyAgreement, keyCertSign, cRLSign, encipherOnly, decipherOnly"
)
}
func testPrintingSANFields() throws {
// This is mostly redundant with general name, so we're only checking formatting.
let san = SubjectAlternativeNames([
.dnsName("example.com"),
.dnsName("example.org"),
.ipAddress(ASN1OctetString(contentBytes: [127, 0, 0, 1])),
])
let s = String(describing: san)
XCTAssertEqual(
s,
"DNSName(\"example.com\"), DNSName(\"example.org\"), IPAddress([127, 0, 0, 1])"
)
}
func testPrintingBasicConstraints() throws {
var ext = BasicConstraints.notCertificateAuthority
XCTAssertEqual(
String(describing: ext),
"CA=FALSE"
)
ext = .isCertificateAuthority(maxPathLength: nil)
XCTAssertEqual(
String(describing: ext),
"CA=TRUE"
)
ext = .isCertificateAuthority(maxPathLength: 5)
XCTAssertEqual(
String(describing: ext),
"CA=TRUE, maxPathLength=5"
)
}
func testPrintingNameConstraints() throws {
// This test is again mostly redundant with general name, so we're just testing the composition
var ext = NameConstraints(
permittedSubtrees: [.dnsName("example.com"), .uniformResourceIdentifier("http://example.com")],
excludedSubtrees: [.dnsName("example.org"), .rfc822Name("mail@example.com")]
)
XCTAssertEqual(
String(describing: ext),
"permittedSubtrees: [DNSName(\"example.com\"), URI(\"http://example.com\")], excludedSubtrees: [DNSName(\"example.org\"), RFC822Name(\"mail@example.com\")]"
)
ext.permittedSubtrees = []
XCTAssertEqual(
String(describing: ext),
"excludedSubtrees: [DNSName(\"example.org\"), RFC822Name(\"mail@example.com\")]"
)
swap(&ext.permittedSubtrees, &ext.excludedSubtrees)
XCTAssertEqual(
String(describing: ext),
"permittedSubtrees: [DNSName(\"example.org\"), RFC822Name(\"mail@example.com\")]"
)
}
func testPrintingEKU() throws {
let eku = try ExtendedKeyUsage([
.any,
.certificateTransparency,
.timeStamping,
.ocspSigning,
.init(oid: [1, 2, 3, 4]),
.clientAuth,
.serverAuth,
.codeSigning,
.emailProtection,
])
XCTAssertEqual(
String(describing: eku),
"anyKeyUsage, certificateTransparency, timeStamping, ocspSigning, 1.2.3.4, clientAuth, serverAuth, codeSigning, emailProtection"
)
}
func testSerialNumberRandomNumberGenerator() {
struct StaticNumberGenerator: RandomNumberGenerator {
var numbers: [UInt8]
var nextIndex: Int = 0
mutating func next() -> UInt64 {
defer { nextIndex += 1 }
let startOffset = nextIndex * MemoryLayout<UInt64>.size
precondition(numbers.indices.contains(startOffset), "static number generator is out of numbers")
// assemble UInt64 from eight UInt8s
var uint64 = UInt64()
for byte in 0..<(MemoryLayout<UInt64>.size) {
let offset = startOffset + byte
guard numbers.indices.contains(offset) else {
continue
}
let number = UInt64(numbers[startOffset + byte])
let shifted = number << (byte * 8)
uint64 |= shifted
}
return uint64
}
}
var rngWithLeadingZero = StaticNumberGenerator(numbers: [
0, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
])
XCTAssertEqual(
Certificate.SerialNumber(generator: &rngWithLeadingZero).bytes,
[1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20]
)
var rngWithZeroAtTheSecondPosition = StaticNumberGenerator(numbers: [
1, 0, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
])
XCTAssertEqual(
Certificate.SerialNumber(generator: &rngWithZeroAtTheSecondPosition).bytes,
[1, 0, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20]
)
var rngWithoutLeadingZero = StaticNumberGenerator(numbers: [
1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21,
])
XCTAssertEqual(
Certificate.SerialNumber(generator: &rngWithoutLeadingZero).bytes,
[1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21]
)
var rngWithTrailingZero = StaticNumberGenerator(numbers: [
1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 0,
])
XCTAssertEqual(
Certificate.SerialNumber(generator: &rngWithTrailingZero).bytes,
[1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 0]
)
}
func testRoundTrippingKeys() throws {
let p256 = P256.Signing.PrivateKey()
let p384 = P384.Signing.PrivateKey()
let p521 = P521.Signing.PrivateKey()
let rsa = try _RSA.Signing.PrivateKey(keySize: .bits2048)
XCTAssertEqual(
p256.publicKey.rawRepresentation,
P256.Signing.PublicKey(Certificate.PublicKey(p256.publicKey))?.rawRepresentation
)
XCTAssertEqual(
p384.publicKey.rawRepresentation,
P384.Signing.PublicKey(Certificate.PublicKey(p384.publicKey))?.rawRepresentation
)
XCTAssertEqual(
p521.publicKey.rawRepresentation,
P521.Signing.PublicKey(Certificate.PublicKey(p521.publicKey))?.rawRepresentation
)
XCTAssertEqual(
rsa.publicKey.derRepresentation,
_RSA.Signing.PublicKey(Certificate.PublicKey(rsa.publicKey))?.derRepresentation
)
// Don't project to other things
XCTAssertNil(
P256.Signing.PublicKey(Certificate.PublicKey(p384.publicKey))
)
XCTAssertNil(
P256.Signing.PublicKey(Certificate.PublicKey(p521.publicKey))
)
XCTAssertNil(
P256.Signing.PublicKey(Certificate.PublicKey(rsa.publicKey))
)
XCTAssertNil(
P384.Signing.PublicKey(Certificate.PublicKey(p256.publicKey))
)
XCTAssertNil(
P384.Signing.PublicKey(Certificate.PublicKey(p521.publicKey))
)
XCTAssertNil(
P384.Signing.PublicKey(Certificate.PublicKey(rsa.publicKey))
)
XCTAssertNil(
P521.Signing.PublicKey(Certificate.PublicKey(p256.publicKey))
)
XCTAssertNil(
P521.Signing.PublicKey(Certificate.PublicKey(p384.publicKey))
)
XCTAssertNil(
P521.Signing.PublicKey(Certificate.PublicKey(rsa.publicKey))
)
XCTAssertNil(
_RSA.Signing.PublicKey(Certificate.PublicKey(p256.publicKey))
)
XCTAssertNil(
_RSA.Signing.PublicKey(Certificate.PublicKey(p384.publicKey))
)
XCTAssertNil(
_RSA.Signing.PublicKey(Certificate.PublicKey(p521.publicKey))
)
}
func testPublicKeysExposeSubjectPublicKeyInfoBytes() throws {
let p256 = P256.Signing.PrivateKey()
let p384 = P384.Signing.PrivateKey()
let p521 = P521.Signing.PrivateKey()
let rsa = try _RSA.Signing.PrivateKey(keySize: .bits2048)
XCTAssertEqual(
p256.publicKey.x963Representation,
Data(Certificate.PublicKey(p256.publicKey).subjectPublicKeyInfoBytes)
)
XCTAssertEqual(
p384.publicKey.x963Representation,
Data(Certificate.PublicKey(p384.publicKey).subjectPublicKeyInfoBytes)
)
XCTAssertEqual(
p521.publicKey.x963Representation,
Data(Certificate.PublicKey(p521.publicKey).subjectPublicKeyInfoBytes)
)
XCTAssertEqual(
rsa.publicKey.pkcs1DERRepresentation,
Data(Certificate.PublicKey(rsa.publicKey).subjectPublicKeyInfoBytes)
)
}
private static let referenceTime = Date(timeIntervalSince1970: 1_691_504_774)
func testCertificateDescription() throws {
let caPrivateKey = P384.Signing.PrivateKey()
let certificateName1 = try! DistinguishedName {
CountryName("US")
OrganizationName("Apple")
CommonName("Swift Certificate Test CA 1")
}
let ca = try Certificate(
version: .v3,
serialNumber: .init(bytes: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]),
publicKey: .init(caPrivateKey.publicKey),
notValidBefore: Self.referenceTime - .days(365),
notValidAfter: Self.referenceTime + .days(3650),
issuer: certificateName1,
subject: certificateName1,
signatureAlgorithm: .ecdsaWithSHA384,
extensions: Certificate.Extensions {
Critical(
BasicConstraints.isCertificateAuthority(maxPathLength: nil)
)
KeyUsage(keyCertSign: true)
SubjectKeyIdentifier(
keyIdentifier: ArraySlice(Insecure.SHA1.hash(data: caPrivateKey.publicKey.derRepresentation))
)
},
issuerPrivateKey: .init(caPrivateKey)
)
XCTAssertEqual(
String(describing: ca),
"""
Certificate(\
version: X509v3, \
serialNumber: 1:2:3:4:5:6:7:8:9:a, \
issuer: "CN=Swift Certificate Test CA 1,O=Apple,C=US", \
subject: "CN=Swift Certificate Test CA 1,O=Apple,C=US", \
notValidBefore: 2022-08-08 14:26:14 +0000, \
notValidAfter: 2033-08-05 14:26:14 +0000, \
publicKey: P384.PublicKey, \
signature: ECDSA, \
extensions: [\
BasicConstraints(CA=TRUE), \
KeyUsage(keyCertSign), \
SubjectKeyIdentifier(\(try ca.extensions.subjectKeyIdentifier!.keyIdentifier.map { String($0, radix: 16) }.joined(separator: ":")))\
]\
)
"""
)
let intermediatePrivateKey = P256.Signing.PrivateKey()
let intermediateName = try! DistinguishedName {
CountryName("US")
OrganizationName("Apple")
CommonName("Swift Certificate Test Intermediate CA 1")
}
let intermediate: Certificate = {
return try! Certificate(
version: .v3,
serialNumber: .init(bytes: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]),
publicKey: .init(intermediatePrivateKey.publicKey),
notValidBefore: Self.referenceTime - .days(365),
notValidAfter: Self.referenceTime + .days(5 * 365),
issuer: ca.subject,
subject: intermediateName,
signatureAlgorithm: .ecdsaWithSHA384,
extensions: Certificate.Extensions {
Critical(
BasicConstraints.isCertificateAuthority(maxPathLength: 1)
)
KeyUsage(keyCertSign: true)
AuthorityKeyIdentifier(keyIdentifier: try! ca.extensions.subjectKeyIdentifier!.keyIdentifier)
SubjectKeyIdentifier(
keyIdentifier: ArraySlice(
Insecure.SHA1.hash(data: intermediatePrivateKey.publicKey.derRepresentation)
)
)
NameConstraints(
permittedDNSDomains: ["apple.com."],
excludedDNSDomains: ["www.apple.com."],
permittedIPRanges: [.v4(subnet: "127.0.0.0", mask: "0.0.0.255")],
excludedIPRanges: [.v4("127.0.0.1")],
permittedEmailAddresses: ["foo@exmaple.com.", "bar@example.com."],
excludedEmailAddresses: ["bar@example.com."],
permittedURIDomains: [".example.com"],
forbiddenURIDomains: [".foo.example.com"]
)
},
issuerPrivateKey: .init(caPrivateKey)
)
}()
XCTAssertEqual(
String(describing: intermediate),
"""
Certificate(\
version: X509v3, \
serialNumber: 1:2:3:4:5:6:7:8:9:a:b, \
issuer: "CN=Swift Certificate Test CA 1,O=Apple,C=US", \
subject: "CN=Swift Certificate Test Intermediate CA 1,O=Apple,C=US", \
notValidBefore: 2022-08-08 14:26:14 +0000, \
notValidAfter: 2028-08-06 14:26:14 +0000, \
publicKey: P256.PublicKey, \
signature: ECDSA, \
extensions: [\
BasicConstraints(CA=TRUE, maxPathLength=1), \
KeyUsage(keyCertSign), \
AuthorityKeyIdentifier(keyID: \(try intermediate.extensions.authorityKeyIdentifier!.keyIdentifier!.map { String($0, radix: 16) }.joined(separator: ":"))), \
SubjectKeyIdentifier(\(try intermediate.extensions.subjectKeyIdentifier!.keyIdentifier.map { String($0, radix: 16) }.joined(separator: ":"))), \
NameConstraints(\
permittedSubtrees: [DNSName("apple.com."), IPAddress([127, 0, 0, 0, 0, 0, 0, 255]), RFC822Name("foo@exmaple.com."), RFC822Name("bar@example.com."), URI(".example.com")], \
excludedSubtrees: [DNSName("www.apple.com."), IPAddress([127, 0, 0, 1]), RFC822Name("bar@example.com."), URI(".foo.example.com")]\
)\
])
"""
)
let localhostPrivateKey = P256.Signing.PrivateKey()
let leaf = try Certificate(
version: .v3,
serialNumber: .init(bytes: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]),
publicKey: .init(localhostPrivateKey.publicKey),
notValidBefore: Self.referenceTime - .days(365),
notValidAfter: Self.referenceTime + .days(365),
issuer: intermediateName,
subject: try DistinguishedName {
CountryName("US")
OrganizationName("Apple")
CommonName("localhost")
StreetAddress("Infinite Loop")
},
signatureAlgorithm: .ecdsaWithSHA256,
extensions: Certificate.Extensions {
Critical(
BasicConstraints.notCertificateAuthority
)
KeyUsage(keyCertSign: true)
AuthorityKeyIdentifier(keyIdentifier: try! intermediate.extensions.subjectKeyIdentifier!.keyIdentifier)
},
issuerPrivateKey: .init(localhostPrivateKey)
)
XCTAssertEqual(
String(describing: leaf),
"""
Certificate(\
version: X509v3, \
serialNumber: 1:2:3:4:5:6:7:8:9:a:b:c, \
issuer: "CN=Swift Certificate Test Intermediate CA 1,O=Apple,C=US", \
subject: "STREET=Infinite Loop,CN=localhost,O=Apple,C=US", \
notValidBefore: 2022-08-08 14:26:14 +0000, \
notValidAfter: 2024-08-07 14:26:14 +0000, \
publicKey: P256.PublicKey, \
signature: ECDSA, \
extensions: [\
BasicConstraints(CA=FALSE), \
KeyUsage(keyCertSign), \
AuthorityKeyIdentifier(keyID: \(try leaf.extensions.authorityKeyIdentifier!.keyIdentifier!.map { String($0, radix: 16) }.joined(separator: ":")))\
]\
)
"""
)
print(intermediate)
}
}
|