File: PEMDocument.swift

package info (click to toggle)
swiftlang 6.0.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,519,992 kB
  • sloc: cpp: 9,107,863; ansic: 2,040,022; asm: 1,135,751; python: 296,500; objc: 82,456; f90: 60,502; lisp: 34,951; pascal: 19,946; sh: 18,133; perl: 7,482; ml: 4,937; javascript: 4,117; makefile: 3,840; awk: 3,535; xml: 914; fortran: 619; cs: 573; ruby: 573
file content (114 lines) | stat: -rw-r--r-- 4,274 bytes parent folder | download
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
//===----------------------------------------------------------------------===//
//
// This source file is part of the SwiftCrypto open source project
//
// Copyright (c) 2019-2021 Apple Inc. and the SwiftCrypto project authors
// Licensed under Apache License v2.0
//
// See LICENSE.txt for license information
// See CONTRIBUTORS.md for the list of SwiftCrypto project authors
//
// SPDX-License-Identifier: Apache-2.0
//
//===----------------------------------------------------------------------===//
import Foundation
import Crypto

enum ASN1 {
    /// A PEM document is some data, and a discriminator type that is used to advertise the content.
    struct PEMDocument {
        private static let lineLength = 64

        var type: String

        var derBytes: Data

        init(pemString: String) throws {
            // A PEM document looks like this:
            //
            // -----BEGIN <SOME DISCRIMINATOR>-----
            // <base64 encoded bytes, 64 characters per line>
            // -----END <SOME DISCRIMINATOR>-----
            //
            // This function attempts to parse this string as a PEM document, and returns the discriminator type
            // and the base64 decoded bytes.
            var lines = pemString.split { $0.isNewline }[...]
            guard let first = lines.first, let last = lines.last else {
                throw _CryptoRSAError.invalidPEMDocument
            }

            guard let discriminator = first.pemStartDiscriminator, discriminator == last.pemEndDiscriminator else {
                throw _CryptoRSAError.invalidPEMDocument
            }

            // All but the last line must be 64 bytes. The force unwrap is safe because we require the lines to be
            // greater than zero.
            lines = lines.dropFirst().dropLast()
            guard lines.count > 0,
                lines.dropLast().allSatisfy({ $0.utf8.count == PEMDocument.lineLength }),
                lines.last!.utf8.count <= PEMDocument.lineLength else {
                throw _CryptoRSAError.invalidPEMDocument
            }

            guard let derBytes = Data(base64Encoded: lines.joined()) else {
                throw _CryptoRSAError.invalidPEMDocument
            }

            self.type = discriminator
            self.derBytes = derBytes
        }

        init(type: String, derBytes: Data) {
            self.type = type
            self.derBytes = derBytes
        }

        var pemString: String {
            var encoded = self.derBytes.base64EncodedString()[...]
            let pemLineCount = (encoded.utf8.count + PEMDocument.lineLength) / PEMDocument.lineLength
            var pemLines = [Substring]()
            pemLines.reserveCapacity(pemLineCount + 2)

            pemLines.append("-----BEGIN \(self.type)-----")

            while encoded.count > 0 {
                let prefixIndex = encoded.index(encoded.startIndex, offsetBy: PEMDocument.lineLength, limitedBy: encoded.endIndex) ?? encoded.endIndex
                pemLines.append(encoded[..<prefixIndex])
                encoded = encoded[prefixIndex...]
            }

            pemLines.append("-----END \(self.type)-----")

            return pemLines.joined(separator: "\n")
        }
    }
}

extension Substring {
    fileprivate var pemStartDiscriminator: String? {
        return self.pemDiscriminator(expectedPrefix: "-----BEGIN ", expectedSuffix: "-----")
    }

    fileprivate var pemEndDiscriminator: String? {
        return self.pemDiscriminator(expectedPrefix: "-----END ", expectedSuffix: "-----")
    }

    private func pemDiscriminator(expectedPrefix: String, expectedSuffix: String) -> String? {
        var utf8Bytes = self.utf8[...]

        // We want to split this sequence into three parts: the prefix, the middle, and the end
        let prefixSize = expectedPrefix.utf8.count
        let suffixSize = expectedSuffix.utf8.count

        let prefix = utf8Bytes.prefix(prefixSize)
        utf8Bytes = utf8Bytes.dropFirst(prefixSize)
        let suffix = utf8Bytes.suffix(suffixSize)
        utf8Bytes = utf8Bytes.dropLast(suffixSize)

        guard prefix.elementsEqual(expectedPrefix.utf8), suffix.elementsEqual(expectedSuffix.utf8) else {
            return nil
        }

        return String(utf8Bytes)
    }
}