Eine aufbereitete Darstellung der Quelle

 
     
 
 
Anforderungen  |   Konzepte  |   Entwurf  |   Entwicklung  |   Qualitätssicherung  |   Lebenszyklus  |   Steuerung
 
 
 
 

Benutzer

Quelle  SinfParser.h

  Sprache: C
 

/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */


#ifndef SINF_PARSER_H_
#define SINF_PARSER_H_

#include "Atom.h"
#include "AtomType.h"
#include "nsTArray.h"

namespace mozilla {

class Box;

class Sinf : public Atom {
 public:
  Sinf()
      : mDefaultIVSize(0),

        mDefaultCryptByteBlock(0),
        mDefaultSkipByteBlock(0) {}
  explicit Sinf(const Box& aBox);

  bool IsValid() const override {
    return !!mDefaultEncryptionType &&  // Should have an encryption scheme
           (mDefaultIVSize > 0 ||       // and either a default IV size
            mDefaultConstantIV.Length() > 0);  // or a constant IV.
  }

  uint8_t mDefaultIVSize;
  AtomType mDefaultEncryptionType;
  uint8_t mDefaultKeyID[16] = {};
  uint8_t mDefaultCryptByteBlock;
  uint8_t mDefaultSkipByteBlock;
  CopyableTArray<uint8_t> mDefaultConstantIV;
};

class SinfParser {
 public:
  explicit SinfParser(const Box& aBox);

  Sinf& GetSinf() { return mSinf; }

 private:
  Result<Ok, nsresult> ParseSchm(const Box& aBox);
  Result<Ok, nsresult> ParseSchi(const Box& aBox);
  Result<Ok, nsresult> ParseTenc(const Box& aBox);

  Sinf mSinf;
};

}  // namespace mozilla

#endif  // SINF_PARSER_H_

Messung V0.5 in Prozent
C=90 H=100 G=95

¤ Dauer der Verarbeitung: 0.11 Sekunden  (vorverarbeitet am  2026-08-22) ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.






                                                                                                                                                                                                                                                                                                                                                                                                     


Neuigkeiten

     Aktuelles
     Motto des Tages

Open Source Software

     Quellcodebibliothek
     Eigene Quellcodes
     Fremde Quellcodes
     Suchen

Jenseits des Üblichen ....

Besucherstatistik

Besucherstatistik

Statistik
#Sources=277311
#Domains=752002