Bump version to 6.0-36
[LibreOffice.git] / xmlsecurity / source / xmlsec / certificateextension_certextn.cxx
blobb7b5f1e9df1c8742f448986cfb281e0f23ed578f
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #include "certificateextension_certextn.hxx"
22 CertificateExtension_CertExtn::CertificateExtension_CertExtn()
23 : m_critical(false)
27 void CertificateExtension_CertExtn::setCertExtn(const unsigned char* value, unsigned int vlen,
28 const unsigned char* id, unsigned int idlen, bool critical)
30 unsigned int i ;
31 if( value != nullptr && vlen != 0 ) {
32 css::uno::Sequence< sal_Int8 > extnv( vlen ) ;
33 for( i = 0; i < vlen ; i ++ )
34 extnv[i] = *( value + i ) ;
36 m_xExtnValue = extnv ;
37 } else {
38 m_xExtnValue = css::uno::Sequence<sal_Int8>();
41 if( id != nullptr && idlen != 0 ) {
42 css::uno::Sequence< sal_Int8 > extnId( idlen ) ;
43 for( i = 0; i < idlen ; i ++ )
44 extnId[i] = *( id + i ) ;
46 m_xExtnId = extnId ;
47 } else {
48 m_xExtnId = css::uno::Sequence<sal_Int8>();
51 m_critical = critical ;
54 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */